[Libreoffice-commits] core.git: configure.ac

2013-05-29 Thread Tor Lillqvist
 configure.ac |6 ++
 1 file changed, 6 insertions(+)

New commits:
commit 9edaf808c567cb54477b522c51416921c4811d2e
Author: Tor Lillqvist tlillqv...@suse.com
Date:   Wed May 29 10:27:25 2013 +0300

Reinstate settting of vsarch which is used a few lines below

Change-Id: I1214498e57fcbb2b7208c213a2b98dc7dc3bf3ae

diff --git a/configure.ac b/configure.ac
index 7ce517b..13f84e9 100644
--- a/configure.ac
+++ b/configure.ac
@@ -4897,6 +4897,12 @@ find_msms()
 find_msvc_x64_dlls()
 {
 if test $VCVER != 90; then
+if test $CPUNAME = INTEL; then
+vsarch=x86
+else
+vsarch=x64
+fi
+
 msvcdllpath=$VC_PRODUCT_DIR/redist/x64/Microsoft.VC${VCVER}.CRT
 
MSVC_DEBUG_DLL_PATH=$VC_PRODUCT_DIR/redist/Debug_NonRedist/$vsarch/Microsoft.VC${VCVER}.DebugCRT
 msvcdlls=msvcp${VCVER}.dll msvcr${VCVER}.dll
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: Updates about Enhanced Database Ranges.

2013-05-29 Thread Tor Lillqvist

 I got both the books over torrent (hmmm yeah I know).


Please steal physical copies of the book instead, of even buy ones. How can
we expect anybody to respect the license we use for our work if we don't
respect the license others use for their work?

--tml
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


On which platforms is graphite not supported ?

2013-05-29 Thread Francois Tigeot
Hi,

Trying to get rid of a local patch here.

configure.ac contains this line to check if graphite can be enabled or not:

if test $_os = WINNT -o $_os = Linux  test $enable_graphite = 
-o $enable_graphite != no; then

Now I could try adding DragonFly, FreeBSD, NetBSD and OpenBSD to the test
line but this would make it more difficult to read and would already
represent the majority of operating systems LibreOffice runs on.

The best way is surely to change the check to set $enable_graphite to no if a
particular platform is not supported.

On which platform(s) can't we use graphite ? Mac OS X ?
Is that all ?

-- 
Francois Tigeot
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: [comment] fdo#65014 Fix backwards/forwards search change of direction.

2013-05-29 Thread Andrzej J. R. Hunt
Hi,

Thanks for the input -- I think I made a mess of that and still don't
entirely understand all the implications of what I'm doing yet.

I now have a much simpler 2 line fix where the cursor is normalised
based on search direction (which however only works for a single
selected region: for some reason the cursor Ring retrieved always points
to a single point rather than a region when multiple regions are
selected -- and there always seem to be two cursors in the ring no
matter how many regions are selected -- I'm still looking into how to
determine all the selected regions), however for the moment I'll abandon
the change and come back to it in 1.5 weeks when I've got time to fully
test it again.

(I'll probably add a check to make sure this is only used for normal
back/forward searching and is ignored for any special searches e.g.
within the selection, which should hopefully deal with any side-effects,
but I'll need to do some further testing to make sure.)

I'm not even certain it's worth doing anything for multiple selected
regions -- the main issue I wanted to fix was the bug when changing
direction of search (fdo#65014) in which case there is only a single
selected region -- with multiple selected regions it's arguably unclear
where the search should start from. Funnily enough I've just noticed
Search in Selection (in the search dialog) seems to be disabled when
there are multiple regions selected -- could possibly be related to the
cursor pointing to a single point in that case (on the other hand I've
seen that the method that counts the number of characters selected --
SwEditShell::CountWords, also uses the cursor ring and works correctly
-- still looking at how all that works).

On that topic: if I abandon a change on gerrit can I reactivate it using
logerrit submit again?

Cheers,

Andrzej

On 28/05/13 12:50, Michael Stahl (via Code Review) wrote:
 Michael Stahl has posted comments on this change.

 Change subject: fdo#65014 Fix backwards/forwards search change of direction.
 ..


 Patch Set 2: This need some tweaks before it is merged

 (6 inline comments)

 haven't actually tried it out but i have a few complaints :)

 
 File sw/source/ui/uiview/viewsrch.cxx
 Line 452: SwPosition* pStart =( *pCrsr-GetPoint()  *pCrsr-GetMark() ) ?
 there is SwPaM::Start() method already for this


 Line 454: SwPosition* pEnd = ( *pCrsr-GetPoint()  *pCrsr-GetMark() ) ?
 there is SwPaM::End() method already for this


 Line 456: while ( ( pCrsr = ( SwPaM* ) pCrsr-GetNext() ) != pStartCrsr );
 please use C++ casts (static_cast/const_cast) instead of C casts


 Line 461: pEnd = ( *pCrsr-GetMark()  *pEnd ) ? pCrsr-GetMark() : 
 pEnd;
 what does this do?
 on the first iteration it will set pStart to pStart...
 on subsequent iterations it will set pStart to the earliest point/mark on any 
 cursor in the ring it's not obvous to me what good this does?


 ah wait /me reads commit message... it's intentional... but iirc there is an 
 option to search in the selected text, and i guess in that case changing 
 the position in this way will give wrong results.


 Line 463: *pStartCrsr-GetPoint() = m_pSrchItem-GetBackward() ? *pStart 
 : *pEnd;
 depending on whether GetMark() is pEnd or not this will result in having a 
 selection or not... is the problem the selection as such or would it be 
 sufficient to re-order point and mark?
 there is a SwPaM::Normalize(bool) that will re-order and put either point or 
 mark first depending on parameter - perhaps that's sufficient to fix the 
 problem?


 Line 464: 
 also i'm not entirely sure if it's a good idea to modify the shell cursor 
 directly from outside - there also is a SwCrsrShell::NormalizePam method, i 
 wonder if calling that would be sufficient here?  it wraps some weird 
 SwCallLink around it, not sure what that does...



___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: On which platforms is graphite not supported ?

2013-05-29 Thread Rene Engelhard
On Wed, May 29, 2013 at 09:43:29AM +0200, Francois Tigeot wrote:
 On which platform(s) can't we use graphite ? Mac OS X ?

Linux/arm and Linux/sparc for the time being (graphite2 builds but
fails its tests miserably, those of course are not ran in LOs build.
See https://buildd.debian.org/status/package.php?p=graphite2.)

Regards,

Rene
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[ABANDONED] fdo#65014 Fix backwards/forwards search change of direction.

2013-05-29 Thread Andrzej J.R. Hunt (via Code Review)
Andrzej J.R. Hunt has abandoned this change.

Change subject: fdo#65014 Fix backwards/forwards search change of direction.
..


Patch Set 2: Abandoned

Abandoning for now -- I'll get back to this in 1.5 weeks time.

-- 
To view, visit https://gerrit.libreoffice.org/4061
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: abandon
Gerrit-Change-Id: I65a5d94b898dd4b7467889b1932f42c9b6b523fe
Gerrit-PatchSet: 2
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Andrzej J.R. Hunt andr...@ahunt.org
Gerrit-Reviewer: Andrzej J.R. Hunt andr...@ahunt.org
Gerrit-Reviewer: Michael Stahl mst...@redhat.com

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[PATCH] fdo#64926 use icu's breakiterator for Tibetan and Dzongkha

2013-05-29 Thread Andras Timar (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/4082

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/82/4082/1

fdo#64926 use icu's breakiterator for Tibetan and Dzongkha

Change-Id: I78010e216eb1582fa5074666f36c95f5b0eceee5
---
M i18npool/source/breakiterator/breakiterator_unicode.cxx
1 file changed, 2 insertions(+), 1 deletion(-)



diff --git a/i18npool/source/breakiterator/breakiterator_unicode.cxx 
b/i18npool/source/breakiterator/breakiterator_unicode.cxx
index 620bba1..549abd1 100644
--- a/i18npool/source/breakiterator/breakiterator_unicode.cxx
+++ b/i18npool/source/breakiterator/breakiterator_unicode.cxx
@@ -120,7 +120,8 @@
 rbi = new OOoRuleBasedBreakIterator(udata_open(OpenOffice, 
brk,
 OUStringToOString(breakRules[breakType], 
RTL_TEXTENCODING_ASCII_US).getStr(), status), status);
 }
-else if (rLocale.Language != th  rLocale.Language != km) 
//use icu's breakiterator for Thai and Khmer
+//use icu's breakiterator for Thai, Khmer, Tibetan and Dzongkha
+else if (rLocale.Language != th  rLocale.Language != km  
rLocale.Language != bo  rLocale.Language != dz)
 {
 status = U_ZERO_ERROR;
 OStringBuffer aUDName(64);

-- 
To view, visit https://gerrit.libreoffice.org/4082
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I78010e216eb1582fa5074666f36c95f5b0eceee5
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Andras Timar ati...@suse.com

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: On which platforms is graphite not supported ?

2013-05-29 Thread Khaled Hosny
On Wed, May 29, 2013 at 09:43:29AM +0200, Francois Tigeot wrote:
 On which platform(s) can't we use graphite ? Mac OS X ?

Yes, AFAICT, that is the only platform where VCL does not has a
Graphite-enabled layout.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: [GSoC] Character border

2013-05-29 Thread Cedric Bosdonnat
Hello Tamás,

On Tue, 2013-05-28 at 18:16 +0200, Zolnai Tamás wrote:
 As some of list members know I am not a beginner with LO. I have
 already done some work mostly with localization (kill sdf and refactor
 \clean l10ntools). Additionally I have added a little feature which is
 visible from the side of the users too (limitbox in Base).

It will be great to have you working on the characters borders!

 On the summer, I will wrok with Writer, making possible using
 character borders. It sounds simple, but it has more sides. The first
 thing that comes to mind about character border is a simple four-sided
 border with the given color, width and style.

[...]

Well that is only the use case and it isn't that complex: if we can draw
the 4 borders, then any other case is pretty simple ;)

You should better see your task as the following steps:
  * Change the Character properties UI to add the existing Borders
page.
  * Write the borders definition into the SwFmt.
  * Change the layout to paint the borders. Borders will influence the
line height and spacing between characters. This part will probably be
the trickiest one. The code to paint borders is already implemented, but
changing the layout requires you to understand it first ;)
  * Persist the borders to the various filters. There is no
specification to do here as even ODF specifies these borders.

I added a bit detailed description of this feature, just to see
 what territories it touch. So if anybody has ideas\advices about
 painting lines\borders, adding new character attributes, extending
 filters or anything linked with them, than - as the phrase goes - feel
 free to write me.

I think Miklos planned to have a kick-starting session with you: we'll
be able to discuss the details there. I once had a patch for the first
step, you'll find it attached, although I'm not sure it's still useful.

--
Cedric

commit 932ff3d1703b2b21d1c544815867bc803b5b92b2
Merge: 4a111ea a36dd99
Author: Cédric Bosdonnat cedric.bosdonnat@free.fr
Date:   Thu Aug 11 09:33:35 2011 +0200

On master: WIP Character borders

diff --cc cui/source/tabpages/border.cxx
index 98aeae8,98aeae8..457b671
--- a/cui/source/tabpages/border.cxx
+++ b/cui/source/tabpages/border.cxx
@@@ -1134,7 -1134,7 +1134,7 @@@ IMPL_LINK( SvxBorderTabPage, LinesChang
  sal_uInt16 nValid = VALID_TOP|VALID_BOTTOM|VALID_LEFT|VALID_RIGHT;
  
  //fuer Rahmen und  Absatz wird das Edit disabled, wenn keine Border gesetzt ist
--if(nSWMode  (SW_BORDER_MODE_FRAME|SW_BORDER_MODE_PARA))
++if(nSWMode  (SW_BORDER_MODE_FRAME|SW_BORDER_MODE_PARA|SW_BORDER_MODE_CHAR))
  {
  if(bLineSet)
  {
diff --cc svx/inc/svx/flagsdef.hxx
index 2b1b30d,2b1b30d..2692e08
--- a/svx/inc/svx/flagsdef.hxx
+++ b/svx/inc/svx/flagsdef.hxx
@@@ -35,6 -35,6 +35,7 @@@
  #define SW_BORDER_MODE_PARA 0x01
  #define SW_BORDER_MODE_TABLE0x02
  #define SW_BORDER_MODE_FRAME0x04
++#define SW_BORDER_MODE_CHAR 0x08
  
  // flags for SvxBackgroundTabPage
  #define SVX_SHOW_SELECTOR   0x01
diff --cc sw/inc/hintids.hxx
index afd57f3,afd57f3..1eac3d1
--- a/sw/inc/hintids.hxx
+++ b/sw/inc/hintids.hxx
@@@ -96,8 -96,8 +96,9 @@@ RES_CHRATR_BEGIN = HINT_BEGIN
  RES_CHRATR_RELIEF,  // 36
  RES_CHRATR_HIDDEN,  // 37
  RES_CHRATR_OVERLINE,// 38
--RES_CHRATR_DUMMY1,  // 39
--RES_CHRATR_DUMMY2,  // 40
++RES_CHRATR_BORDER,  // 39
++RES_CHRATR_DUMMY1,  // 40
++RES_CHRATR_DUMMY2,  // 41
  RES_CHRATR_END
  };
  
@@@ -123,27 -123,27 +124,27 @@@ RES_TXTATR_BEGIN = RES_CHRATR_END
 - META and METAFIELD must precede CJK_RUBY and INETFMT
   */
  RES_TXTATR_WITHEND_BEGIN = RES_TXTATR_BEGIN ,
--RES_TXTATR_REFMARK = RES_TXTATR_WITHEND_BEGIN,  // 41
--RES_TXTATR_TOXMARK, // 42
--RES_TXTATR_META,// 43
--RES_TXTATR_METAFIELD,   // 44
--RES_TXTATR_AUTOFMT, // 45
--RES_TXTATR_INETFMT, // 46
--RES_TXTATR_CHARFMT, // 47
--RES_TXTATR_CJK_RUBY,// 48
--RES_TXTATR_UNKNOWN_CONTAINER,   // 49
--RES_TXTATR_DUMMY5,  // 50
++RES_TXTATR_REFMARK = RES_TXTATR_WITHEND_BEGIN,  // 42
++RES_TXTATR_TOXMARK, // 43
++RES_TXTATR_META,// 44
++RES_TXTATR_METAFIELD,   // 45
++RES_TXTATR_AUTOFMT, // 46
++RES_TXTATR_INETFMT, // 47
++RES_TXTATR_CHARFMT, // 48
++RES_TXTATR_CJK_RUBY,// 49
++RES_TXTATR_UNKNOWN_CONTAINER, 

[Libreoffice-commits] core.git: sw/qa writerfilter/source

2013-05-29 Thread Miklos Vajna
 sw/qa/extras/rtfimport/data/page-background.rtf |   30 
 sw/qa/extras/rtfimport/rtfimport.cxx|9 +++
 writerfilter/source/rtftok/rtfdocumentimpl.cxx  |7 -
 writerfilter/source/rtftok/rtfdocumentimpl.hxx  |4 +++
 writerfilter/source/rtftok/rtfsdrimport.cxx |   13 ++
 5 files changed, 62 insertions(+), 1 deletion(-)

New commits:
commit 14e163b0caf97addf340aefc5760a9031ec98390
Author: Miklos Vajna vmik...@suse.cz
Date:   Tue May 28 21:34:37 2013 +0200

import RTF_BACKGROUND

That destination contains a whole shape, but the only interesing detail
of it is the fill color, which is the page background color.

Change-Id: I9527db8954c48c980f8734c9bbeaa6ccd3c48fbc

diff --git a/sw/qa/extras/rtfimport/data/page-background.rtf 
b/sw/qa/extras/rtfimport/data/page-background.rtf
new file mode 100644
index 000..e19d2d4
--- /dev/null
+++ b/sw/qa/extras/rtfimport/data/page-background.rtf
@@ -0,0 +1,30 @@
+{\rtf1\adeflang1025\ansi\ansicpg1252\uc1\adeff31507\deff0\stshfdbch31506\stshfloch31506\stshfhich31506\stshfbi31507\deflang1033\deflangfe1033\themelang1033\themelangfe0\themelangcs0
+\viewbksp1
+{\*\background 
+{\shp
+{\*\shpinst\shpleft0\shptop0\shpright0\shpbottom0\shpfhdr0\shpbxmargin\shpbxignore\shpbymargin\shpbyignore\shpwr0\shpwrk0\shpfblwtxt1
+{\sp
+{\sn shapeType}
+{\sv 1}
+}
+{\sp
+{\sn fillColor}
+{\sv 5296274}
+}
+{\sp
+{\sn fFilled}
+{\sv 1}
+}
+{\sp
+{\sn bWMode}
+{\sv 9}
+}
+{\sp
+{\sn fBackground}
+{\sv 1}
+}
+}
+}
+}
+\par
+}
diff --git a/sw/qa/extras/rtfimport/rtfimport.cxx 
b/sw/qa/extras/rtfimport/rtfimport.cxx
index 5aadfa6..bb0b014 100644
--- a/sw/qa/extras/rtfimport/rtfimport.cxx
+++ b/sw/qa/extras/rtfimport/rtfimport.cxx
@@ -137,6 +137,7 @@ public:
 void testFdo62977();
 void testN818997();
 void testFdo64671();
+void testPageBackground();
 
 CPPUNIT_TEST_SUITE(Test);
 #if !defined(MACOSX)  !defined(WNT)
@@ -263,6 +264,7 @@ void Test::run()
 {fdo62977.rtf, Test::testFdo62977},
 {n818997.rtf, Test::testN818997},
 {fdo64671.rtf, Test::testFdo64671},
+{page-background.rtf, Test::testPageBackground},
 };
 header();
 for (unsigned int i = 0; i  SAL_N_ELEMENTS(aMethods); ++i)
@@ -1248,6 +1250,13 @@ void Test::testFdo64671()
 getRun(getParagraph(1), 1, OUString(\xC5\xBD, 2, RTL_TEXTENCODING_UTF8));
 }
 
+void Test::testPageBackground()
+{
+// The problem was that \background was ignored.
+uno::Referencebeans::XPropertySet 
xPageStyle(getStyles(PageStyles)-getByName(DEFAULT_STYLE), uno::UNO_QUERY);
+CPPUNIT_ASSERT_EQUAL(sal_Int32(0x92D050), 
getPropertysal_Int32(xPageStyle, BackColor));
+}
+
 CPPUNIT_TEST_SUITE_REGISTRATION(Test);
 
 CPPUNIT_PLUGIN_IMPLEMENT();
diff --git a/writerfilter/source/rtftok/rtfdocumentimpl.cxx 
b/writerfilter/source/rtftok/rtfdocumentimpl.cxx
index fcd0ef5..921f30e 100644
--- a/writerfilter/source/rtftok/rtfdocumentimpl.cxx
+++ b/writerfilter/source/rtftok/rtfdocumentimpl.cxx
@@ -1672,6 +1672,10 @@ int RTFDocumentImpl::dispatchDestination(RTFKeyword 
nKeyword)
 // Anything inside \ud is just normal Unicode content.
 m_aStates.top().nDestinationState = DESTINATION_NORMAL;
 break;
+case RTF_BACKGROUND:
+m_aStates.top().nDestinationState = DESTINATION_BACKGROUND;
+m_aStates.top().bInBackground = true;
+break;
 default:
 SAL_INFO(writerfilter, TODO handle destination '  
lcl_RtfToString(nKeyword)  ');
 // Make sure we skip destinations (even without \*) till we don't 
handle them
@@ -4707,7 +4711,8 @@ RTFParserState::RTFParserState(RTFDocumentImpl 
*pDocumentImpl)
 nCurrentStyleIndex(-1),
 pCurrentBuffer(0),
 bHasTableStyle(false),
-bInListpicture(false)
+bInListpicture(false),
+bInBackground(false)
 {
 }
 
diff --git a/writerfilter/source/rtftok/rtfdocumentimpl.hxx 
b/writerfilter/source/rtftok/rtfdocumentimpl.hxx
index d6216f4..76752d7 100644
--- a/writerfilter/source/rtftok/rtfdocumentimpl.hxx
+++ b/writerfilter/source/rtftok/rtfdocumentimpl.hxx
@@ -163,6 +163,7 @@ namespace writerfilter {
 DESTINATION_MEQARR,
 DESTINATION_UPR,
 DESTINATION_LFOLEVEL,
+DESTINATION_BACKGROUND,
 };
 
 enum RTFBorderState
@@ -399,6 +400,9 @@ namespace writerfilter {
 
 /// If we're inside a \listpicture group.
 bool bInListpicture;
+
+/// If we're inside a \background group.
+bool bInBackground;
 };
 
 class RTFTokenizer;
diff --git a/writerfilter/source/rtftok/rtfsdrimport.cxx 
b/writerfilter/source/rtftok/rtfsdrimport.cxx
index d3bda9692..24d7ca1 100644
--- a/writerfilter/source/rtftok/rtfsdrimport.cxx
+++ b/writerfilter/source/rtftok/rtfsdrimport.cxx
@@ -29,6 +29,7 @@
 #include dmapper/DomainMapper.hxx
 #include ../dmapper/GraphicHelpers.hxx
 

[Libreoffice-commits] core.git: 2 commits - idlc/inc idlc/source idlc/test include/comphelper include/registry include/svtools odk/CustomTarget_doxygen.mk padmin/source qadevOOo/tests registry/source

2013-05-29 Thread Stephan Bergmann
 idlc/inc/idlc/astattribute.hxx |2 +-
 idlc/inc/idlc/idlctypes.hxx|2 +-
 idlc/source/astdump.cxx|2 +-
 idlc/source/errorhandler.cxx   |2 +-
 idlc/source/parser.y   |6 +++---
 idlc/source/scanner.l  |2 +-
 idlc/test/parser/attribute.tests   |2 +-
 include/comphelper/propertybag.hxx |2 +-
 include/registry/types.h   |4 ++--
 include/svtools/imagemgr.hrc   |2 +-
 odk/CustomTarget_doxygen.mk|5 +++--
 padmin/source/padialog.cxx |2 +-
 padmin/source/padialog.hrc |2 +-
 padmin/source/padialog.src |2 +-
 qadevOOo/tests/java/ifc/beans/_XPropertyContainer.java |2 +-
 registry/source/regimpl.cxx|2 +-
 registry/tools/regcompare.cxx  |2 +-
 sfx2/source/control/templateremoteview.cxx |2 +-
 stoc/source/registry_tdprovider/tdservice.cxx  |2 +-
 svtools/source/contnr/contentenumeration.cxx   |4 ++--
 svtools/source/misc/imagemgr.cxx   |4 ++--
 svtools/source/misc/imagemgr.src   |2 +-
 unoidl/source/legacyprovider.cxx   |2 +-
 23 files changed, 30 insertions(+), 29 deletions(-)

New commits:
commit 07b348f51d4af8b6cf78deaf80f5e05bc550e019
Author: Stephan Bergmann sberg...@redhat.com
Date:   Wed May 29 10:43:06 2013 +0200

Adapt Doxygen STRIP_FROM_PATH to moved headers

Change-Id: I949a5cf0cb2f4595db7d25103f7caf51b861e8ec

diff --git a/odk/CustomTarget_doxygen.mk b/odk/CustomTarget_doxygen.mk
index 6558193..eae8ba1b 100644
--- a/odk/CustomTarget_doxygen.mk
+++ b/odk/CustomTarget_doxygen.mk
@@ -25,13 +25,14 @@ odk_INCFILELIST := com/sun/star/uno/Any.h \
com/sun/star/uno/Type.hxx
 
 # Cygwin Doxygen needs unix paths
+DOXY_INCLUDEDIR := $(INSTDIR)/$(gb_Package_SDKDIRNAME)/include
 DOXY_INPUT := $(SRCDIR)/odk/pack/gendocu/main.dox 
$(SRCDIR)/include/sal/log-areas.dox \
-   $(addprefix 
$(INSTDIR)/$(gb_Package_SDKDIRNAME)/include/,$(odk_INCDIRLIST) 
$(odk_INCFILELIST))
+   $(addprefix $(DOXY_INCLUDEDIR)/,$(odk_INCDIRLIST) $(odk_INCFILELIST))
 DOXY_INPUT := $(if $(filter WNT,$(OS)),$(shell cygpath -u 
$(DOXY_INPUT)),$(DOXY_INPUT))
 DOXY_WORKDIR := $(if $(filter WNT,$(OS)),\
$(shell cygpath -u $(call 
gb_CustomTarget_get_workdir,odk/docs/cpp)/ref),\
$(call gb_CustomTarget_get_workdir,odk/docs/cpp)/ref)
-DOXY_STRIP_PATH := $(if $(filter WNT,$(OS)),$(shell cygpath -u 
$(OUTDIR)/inc),$(OUTDIR)/inc)
+DOXY_STRIP_PATH := $(if $(filter WNT,$(OS)),$(shell cygpath -u 
$(DOXY_INCLUDEDIR)),$(DOXY_INCLUDEDIR))
 
 
 $(eval $(call gb_CustomTarget_register_targets,odk/docs/cpp,\
commit 4b373ef7f5fecc9a90e0e3cb90f297bc1101afef
Author: Thomas Arnhold tho...@arnhold.org
Date:   Tue May 28 16:13:50 2013 +0200

fdo#60724 change spelling error REMOVEABLE - REMOVABLE II

Change-Id: I0057b9174af6a83f3fde0e27c3a91a4aeca95873
Signed-off-by: Stephan Bergmann sberg...@redhat.com

diff --git a/idlc/inc/idlc/astattribute.hxx b/idlc/inc/idlc/astattribute.hxx
index 7f88e49..7cc3a65 100644
--- a/idlc/inc/idlc/astattribute.hxx
+++ b/idlc/inc/idlc/astattribute.hxx
@@ -90,7 +90,7 @@ public:
 sal_Bool isMayBeDefault() const
 { return ((m_flags  AF_MAYBEDEFAULT) == AF_MAYBEDEFAULT); }
 sal_Bool isRemoveable() const
-{ return ((m_flags  AF_REMOVEABLE) == AF_REMOVEABLE); }
+{ return ((m_flags  AF_REMOVABLE) == AF_REMOVABLE); }
 
 sal_Bool dumpBlob(
 typereg::Writer  rBlob, sal_uInt16 index, sal_uInt16 * methodIndex);
diff --git a/idlc/inc/idlc/idlctypes.hxx b/idlc/inc/idlc/idlctypes.hxx
index 32214d6..842ef68 100644
--- a/idlc/inc/idlc/idlctypes.hxx
+++ b/idlc/inc/idlc/idlctypes.hxx
@@ -87,7 +87,7 @@ AstScope* SAL_CALL declAsScope(AstDeclaration* pDecl);
 #define AF_TRANSIENT0x0020
 #define AF_MAYBEAMBIGUOUS   0x0040
 #define AF_MAYBEDEFAULT 0x0080
-#define AF_REMOVEABLE   0x0100
+#define AF_REMOVABLE0x0100
 #define AF_ATTRIBUTE0x0200
 #define AF_PROPERTY 0x0400
 
diff --git a/idlc/source/astdump.cxx b/idlc/source/astdump.cxx
index fd5e2db..492714c 100644
--- a/idlc/source/astdump.cxx
+++ b/idlc/source/astdump.cxx
@@ -366,7 +366,7 @@ sal_Bool AstAttribute::dumpBlob(
 }
 if (isRemoveable())
 {
-accessMode |= RT_ACCESS_REMOVEABLE;
+accessMode |= RT_ACCESS_REMOVABLE;
 }
 
 OUString name(OStringToOUString(getLocalName(), RTL_TEXTENCODING_UTF8));
diff --git a/idlc/source/errorhandler.cxx b/idlc/source/errorhandler.cxx
index 390d76e..f591f0b 100644
--- a/idlc/source/errorhandler.cxx
+++ 

[PUSHED] fdo#60724 change spelling error REMOVEABLE - REMOVABLE II

2013-05-29 Thread Stephan Bergmann (via Code Review)
Hi,

Thank you for your patch!  It has been merged to LibreOffice.

If you are interested in details, please visit

https://gerrit.libreoffice.org/4078


-- 
To view, visit https://gerrit.libreoffice.org/4078
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: I0057b9174af6a83f3fde0e27c3a91a4aeca95873
Gerrit-PatchSet: 2
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Thomas Arnhold tho...@arnhold.org
Gerrit-Reviewer: Stephan Bergmann sberg...@redhat.com

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] core.git: 2 commits - bridges/source include/comphelper

2013-05-29 Thread Herbert Dürr
 bridges/source/cpp_uno/gcc3_linux_x86-64/callvirtualmethod.cxx |6 ++--
 include/comphelper/namedvaluecollection.hxx|   14 
+-
 2 files changed, 11 insertions(+), 9 deletions(-)

New commits:
commit c759d349f235d74508c2f8af4e85cc313897a361
Author: Herbert Dürr h...@apache.org
Date:   Tue Apr 30 11:57:36 2013 +

optimization fix to UNO bridge's callVirtualMethod() for generic x86_64

if the pCallStack variable is optimized out then any assumptions of the
method's inlined assembler about stack layout collapse. Adding a pseudo
dependency to the pCallStack variable solves that problem

(cherry picked from commit 254359b9ed96152091b8f7a74a3442cf6c553e04)

Conflicts:
bridges/source/cpp_uno/gcc3_freebsd_x86-64/uno2cpp.cxx
bridges/source/cpp_uno/gcc3_linux_x86-64/uno2cpp.cxx

Change-Id: I5ba7713c2630bb3ecc4343632e796c38541bcd0e

diff --git a/bridges/source/cpp_uno/gcc3_linux_x86-64/callvirtualmethod.cxx 
b/bridges/source/cpp_uno/gcc3_linux_x86-64/callvirtualmethod.cxx
index 3b6cd4a..47b8f13 100644
--- a/bridges/source/cpp_uno/gcc3_linux_x86-64/callvirtualmethod.cxx
+++ b/bridges/source/cpp_uno/gcc3_linux_x86-64/callvirtualmethod.cxx
@@ -63,11 +63,12 @@ void CPPU_CURRENT_NAMESPACE::callVirtualMethod(
 pMethod = *((sal_uInt64 *)pMethod);
 
 // Load parameters to stack, if necessary
+sal_uInt64* pCallStack = NULL;
 if ( nStack )
 {
 // 16-bytes aligned
 sal_uInt32 nStackBytes = ( ( nStack + 1 )  1 ) * 16;
-sal_uInt64 *pCallStack = (sal_uInt64 *) __builtin_alloca( nStackBytes 
);
+pCallStack = (sal_uInt64 *) __builtin_alloca( nStackBytes );
 std::memcpy( pCallStack, pStack, nStackBytes );
 }
 
@@ -112,7 +113,8 @@ void CPPU_CURRENT_NAMESPACE::callVirtualMethod(
 movsd %%xmm0, %2\n\t
 movsd %%xmm1, %3\n\t
 : =m ( rax ), =m ( rdx ), =m ( xmm0 ), =m ( xmm1 )
-: m ( pMethod ), m ( pGPR ), m ( pFPR ), m ( nFPR )
+: m ( pMethod ), m ( pGPR ), m ( pFPR ), m ( nFPR ),
+  m ( pCallStack ) // dummy input to prevent the compiler from 
optimizing the alloca out
 : rax, rdi, rsi, rdx, rcx, r8, r9, r10, r11,
   xmm0, xmm1, xmm2, xmm3, xmm4, xmm5, xmm6, xmm7,
   xmm8, xmm9, xmm10, xmm11, xmm12, xmm13, xmm14, xmm15
commit 6526fda99f9133736906f326dde5cf48f967fcee
Author: Herbert Dürr h...@apache.org
Date:   Tue May 28 09:52:00 2013 +

Related: #i122378# avoid non-iterator bound std::transform()

in some build environments the use of std::transform() with plain pointers 
as
input iterators results in many warnings about how unsafe such a construct 
is.
The warnings could be suppressed e.g. on MSVC with the 
SCL_SECURE_NO_WARNINGS
define. Open coding the construct makes it cleaner and more debugable 
though.
(cherry picked from commit a599e5242751057537c3de6eb58ceff2a173580e)

Conflicts:
comphelper/inc/comphelper/namedvaluecollection.hxx

Change-Id: I3233116bfb862f6cda038541ffecac492623611c

diff --git a/include/comphelper/namedvaluecollection.hxx 
b/include/comphelper/namedvaluecollection.hxx
index 93b53dd..26b2760 100644
--- a/include/comphelper/namedvaluecollection.hxx
+++ b/include/comphelper/namedvaluecollection.hxx
@@ -356,13 +356,13 @@ namespace comphelper
 ::com::sun::star::uno::Sequence VALUE_TYPE  aValues;
 *this = aValues;
 ::com::sun::star::uno::Sequence ::com::sun::star::uno::Any  
aWrappedValues( aValues.getLength() );
-::com::sun::star::uno::Any (* const makeAny)(const VALUE_TYPE) = 
::com::sun::star::uno::makeAny VALUE_TYPE ;
-::std::transform(
-aValues.getConstArray(),
-aValues.getConstArray() + aValues.getLength(),
-aWrappedValues.getArray(),
-makeAny
-);
+
+::com::sun::star::uno::Any* pO = aWrappedValues.getArray();
+const VALUE_TYPE* pV = aValues.getConstArray();
+const sal_Int32 nLen = aValues.getLength();
+for( sal_Int32 i = 0; i  nLen; ++i )
+*(pO++) = ::com::sun::star::uno::makeAnyVALUE_TYPE( *(pV++) 
);
+
 return aWrappedValues;
 }
 };
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'refs/notes/commits' - 25/4359b9ed96152091b8f7a74a3442cf6c553e04

2013-05-29 Thread Caolán McNamara
 25/4359b9ed96152091b8f7a74a3442cf6c553e04 |1 +
 1 file changed, 1 insertion(+)

New commits:
commit c1fc3c30ae47cd92231b35e776ed652eb9100208
Author: Caolán McNamara caol...@redhat.com
Date:   Wed May 29 10:03:48 2013 +0100

Notes added by 'git notes add'

diff --git a/25/4359b9ed96152091b8f7a74a3442cf6c553e04 
b/25/4359b9ed96152091b8f7a74a3442cf6c553e04
new file mode 100644
index 000..8704cb9
--- /dev/null
+++ b/25/4359b9ed96152091b8f7a74a3442cf6c553e04
@@ -0,0 +1 @@
+merged as: c759d349f235d74508c2f8af4e85cc313897a361
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'refs/notes/commits' - a5/99e5242751057537c3de6eb58ceff2a173580e

2013-05-29 Thread Caolán McNamara
 a5/99e5242751057537c3de6eb58ceff2a173580e |1 +
 1 file changed, 1 insertion(+)

New commits:
commit 3fc5cc65a187d5a31e0e42993244a07317040748
Author: Caolán McNamara caol...@redhat.com
Date:   Wed May 29 10:04:11 2013 +0100

Notes added by 'git notes add'

diff --git a/a5/99e5242751057537c3de6eb58ceff2a173580e 
b/a5/99e5242751057537c3de6eb58ceff2a173580e
new file mode 100644
index 000..3450cb7
--- /dev/null
+++ b/a5/99e5242751057537c3de6eb58ceff2a173580e
@@ -0,0 +1 @@
+merged as: 6526fda99f9133736906f326dde5cf48f967fcee
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'refs/notes/commits' - d1/203ef9c6b8804b6279920e29dfa7a30ad278c4

2013-05-29 Thread Caolán McNamara
 d1/203ef9c6b8804b6279920e29dfa7a30ad278c4 |1 +
 1 file changed, 1 insertion(+)

New commits:
commit 357120fad95bc116acb59fb475d63b31a93e1c3d
Author: Caolán McNamara caol...@redhat.com
Date:   Wed May 29 10:17:22 2013 +0100

Notes added by 'git notes add'

diff --git a/d1/203ef9c6b8804b6279920e29dfa7a30ad278c4 
b/d1/203ef9c6b8804b6279920e29dfa7a30ad278c4
new file mode 100644
index 000..df78ac0
--- /dev/null
+++ b/d1/203ef9c6b8804b6279920e29dfa7a30ad278c4
@@ -0,0 +1 @@
+prefer: 3d2253fb7ae4a9f8276160fac7b6596da4899316
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'refs/notes/commits' - 66/03c1e8fb14f555efc6d13f0741a2a1eb77d1ff

2013-05-29 Thread Caolán McNamara
 66/03c1e8fb14f555efc6d13f0741a2a1eb77d1ff |1 +
 1 file changed, 1 insertion(+)

New commits:
commit 52dbac09e422d45469606ffcc9bf2a59819c767f
Author: Caolán McNamara caol...@redhat.com
Date:   Wed May 29 10:19:15 2013 +0100

Notes added by 'git notes add'

diff --git a/66/03c1e8fb14f555efc6d13f0741a2a1eb77d1ff 
b/66/03c1e8fb14f555efc6d13f0741a2a1eb77d1ff
new file mode 100644
index 000..8ebbe55
--- /dev/null
+++ b/66/03c1e8fb14f555efc6d13f0741a2a1eb77d1ff
@@ -0,0 +1 @@
+ignore: obsolete
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'refs/notes/commits' - 31/8c7064094f044ab79210dadd6ab168ca9d2ce1

2013-05-29 Thread Caolán McNamara
 31/8c7064094f044ab79210dadd6ab168ca9d2ce1 |1 +
 1 file changed, 1 insertion(+)

New commits:
commit a1a44c0115244ec1054caef7fc2a78a70db6399d
Author: Caolán McNamara caol...@redhat.com
Date:   Wed May 29 10:25:46 2013 +0100

Notes added by 'git notes add'

diff --git a/31/8c7064094f044ab79210dadd6ab168ca9d2ce1 
b/31/8c7064094f044ab79210dadd6ab168ca9d2ce1
new file mode 100644
index 000..d2fb6cc
--- /dev/null
+++ b/31/8c7064094f044ab79210dadd6ab168ca9d2ce1
@@ -0,0 +1 @@
+prefer: 05293cb04c707b12047ce2378894cf6b7bb67bbc
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'refs/notes/commits' - c0/38b8870eef3d9ce3017409034221e47d22e323

2013-05-29 Thread Caolán McNamara
 c0/38b8870eef3d9ce3017409034221e47d22e323 |1 +
 1 file changed, 1 insertion(+)

New commits:
commit a82868418121f770aeffecdb378c88a225d6f3e1
Author: Caolán McNamara caol...@redhat.com
Date:   Wed May 29 10:27:48 2013 +0100

Notes added by 'git notes add'

diff --git a/c0/38b8870eef3d9ce3017409034221e47d22e323 
b/c0/38b8870eef3d9ce3017409034221e47d22e323
new file mode 100644
index 000..547e983
--- /dev/null
+++ b/c0/38b8870eef3d9ce3017409034221e47d22e323
@@ -0,0 +1 @@
+prefer: 0701e1ab56dd185fd6fc39012c5a798ca4b77f3f
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[PATCH] fdo#39468 - translate German comments

2013-05-29 Thread Guillermo Molleda Jimena

And why is translated into English?
Why not Spanish or Chinese who have more native speakers?

Why does not the neutral language Esperanto fairest possible?
http://eo.wikipedia.org/wiki/Listo_de_lingvoj_la% C5% AD_parolantaro

Do not impose a national language to the world when there is a neutral, 
fair and more just for all: esperanto.


We complain about Windows and ended imposing English
Learning English = 3 euros or dollars
Learn Esperanto = 300 euros or dollars or even free.

Best regards.

El 29/05/13 10:00, libreoffice-requ...@lists.freedesktop.org escribió:

[PATCH] fdo#39468 - translate German comments
   


--
Usa el esperanto para acelerar el aprendizaje de idiomas, ganarás años como 
demuestran los estudios científicos realizados 
(http://es.wikipedia.org/wiki/Valor_proped%C3%A9utico_del_esperanto). Puede 
leer más sobre el idioma en http://personal.us.es/gmolleda/lingvoj.html, 
http://www.2-2.se/es/ y http://esperantofre.com/edu/iloj01h.htm#celo.

El inglés, francés, alemán o chino mandarín son muy ineficientes para su 
aprendizaje como segundo idioma (mejor tercero) y fuente de grandes movimientos 
de divisas de países pobres hacia los más ricos. Igual que aprendes a escribir 
primero trazos y no directamente las letras, es mejor para el cerebro aprender 
primero una lengua regular y planificada.

*
  Guillermo Molleda Jimena

Departamento de Economía Financiera y
  Dirección de Operaciones
   Facultad de Turismo y Finanzas
   Universidad de Sevilla

   Avda. San Francisco Javier s/n
   41018 Sevilla
Tfno: 954 55 16 55 Fax: 954 55 75 70
E-mail: gmoll...@us.es http://personal.us.es/gmolleda
*





smime.p7s
Description: S/MIME Cryptographic Signature
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] libexttextcat.git: ChangeLog src/Makefile.am

2013-05-29 Thread Caolán McNamara
 ChangeLog   |3 +++
 src/Makefile.am |1 -
 2 files changed, 3 insertions(+), 1 deletion(-)

New commits:
commit 5f86a1e1a87722b86ad5d4aab89d19d78f52403f
Author: Caolán McNamara caol...@redhat.com
Date:   Wed May 29 10:36:57 2013 +0100

fix missing Changelog entry and remove makefile.mk foo

diff --git a/ChangeLog b/ChangeLog
index 94bf0dc..f0411eb 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
+Mon Nov 05 2012 Caolán McNamara (caol...@redhat.com)
+   * fix up the Polish LM
+
 Wed May 30 2012 Caolán McNamara (caol...@redhat.com)
* add a pile of new fingerprints
* bump the .pc file
diff --git a/src/Makefile.am b/src/Makefile.am
index cbe8e3d..7b574c0 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -22,7 +22,6 @@ testtextcat_SOURCES = testtextcat.c
 testtextcat_LDADD =libexttextcat-2.0.la
 
 EXTRA_DIST = libexttextcat.map \
-   makefile.mk \
test-primary.sh.in \
test-secondary.sh.in \
exttextcat-version.h  \
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] libexttextcat.git: 4 commits - ChangeLog configure.ac libexttextcat.vapi src/exttextcat-version.h src/textcat.c src/textcat.h src/win32_config.h

2013-05-29 Thread Caolán McNamara
 ChangeLog|8 +++-
 configure.ac |2 +-
 libexttextcat.vapi   |   13 -
 src/exttextcat-version.h |4 ++--
 src/textcat.c|   16 +---
 src/textcat.h|2 +-
 src/win32_config.h   |4 ++--
 7 files changed, 34 insertions(+), 15 deletions(-)

New commits:
commit 4f52043f6ee67f899c5d83f0aa55a0d98d50697a
Author: Caolán McNamara caol...@redhat.com
Date:   Wed May 29 11:00:49 2013 +0100

bump release

diff --git a/ChangeLog b/ChangeLog
index f0411eb..14728a9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
+Wed May 29 2013 Caolán McNamara (caol...@redhat.com)
+   * merge in Giulio's work and bump release
+ + Updated libexttextcat.vapi.
+ + Enable changing mindocsize at runtime.
+ + Fixed spelling of TEXTCAT_RESULT_UNKOWN.
+
 Mon Nov 05 2012 Caolán McNamara (caol...@redhat.com)
-   * fix up the Polish LM
+   * fix up the Polish LM
 
 Wed May 30 2012 Caolán McNamara (caol...@redhat.com)
* add a pile of new fingerprints
diff --git a/configure.ac b/configure.ac
index 7e64e91..1625f6b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,6 +1,6 @@
 m4_define([exttextcat_version_major],[3])
 m4_define([exttextcat_version_minor],[4])
-m4_define([exttextcat_version_micro],[0])
+m4_define([exttextcat_version_micro],[1])
 
m4_define([exttextcat_version],[exttextcat_version_major.exttextcat_version_minor.exttextcat_version_micro])
 
 AC_PREREQ([2.68])
diff --git a/src/exttextcat-version.h b/src/exttextcat-version.h
index 5bc8b01..25ca683 100644
--- a/src/exttextcat-version.h
+++ b/src/exttextcat-version.h
@@ -1,9 +1,9 @@
 #ifndef EXTTEXTCAT_VERSION_H
 #define EXTTEXTCAT_VERSION_H
 
-#define EXTTEXTCAT_VERSION 3.4.0
+#define EXTTEXTCAT_VERSION 3.4.1
 #define EXTTEXTCAT_VERSION_MAJOR 3
 #define EXTTEXTCAT_VERSION_MINOR 4
-#define EXTTEXTCAT_VERSION_MICRO 0
+#define EXTTEXTCAT_VERSION_MICRO 1
 
 #endif
diff --git a/src/win32_config.h b/src/win32_config.h
index 65404fc..3129773 100644
--- a/src/win32_config.h
+++ b/src/win32_config.h
@@ -63,7 +63,7 @@
 #define PACKAGE_TARNAME libexttextcat
 
 /* Define to the version of this package. */
-#define PACKAGE_VERSION 3.0
+#define PACKAGE_VERSION 3.4
 
 /* Define to 1 if you have the ANSI C header files. */
 #define STDC_HEADERS 1
@@ -72,6 +72,6 @@
 #define TIME_WITH_SYS_TIME 1
 
 /* Version number of package */
-#define VERSION 3.0.1
+#define VERSION 3.4.1
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
commit 983edc373cc885b1901570b6b731439175e538a1
Author: Giulio Paci giuliop...@gmail.com
Date:   Wed May 29 04:55:07 2013 +0200

Updated libexttextcat.vapi.
(cherry picked from commit d7ac2c6d5b0b0cee16bf5cab04e88b1819a589ac)

diff --git a/libexttextcat.vapi b/libexttextcat.vapi
index 048f5d7..e699754 100644
--- a/libexttextcat.vapi
+++ b/libexttextcat.vapi
@@ -17,20 +17,23 @@ namespace TextCat {
public unowned candidate* get_classify_full_output ();
[CCode (cname = textcat_ReleaseClassifyFullOutput, 
cheader_filename = textcat.h)]
public void release_classify_full_output (candidate* 
candidates);
-   [CCode (cname = textcat_Init, cheader_filename = textcat.h)]
-   public Classifier (string conffile);
+   [CCode (cname = special_textcat_Init, cheader_filename = 
textcat.h)]
+   public Classifier (string conffile, string prefix = 
TEXTCAT_DEFAULT_FINGERPRINTS_PATH);
[CCode (cname = textcat_SetProperty, cheader_filename = 
textcat.h)]
-   public int set_property (Property property, int4 value);
+   public int set_property (Property property, int32 value);

}
[CCode (cname=textcat_Property,cheader_filename = textcat.h,cprefix 
= TCPROP_)]
public enum Property {
-   UTF8AWARE;
+   UTF8AWARE,
+   MINIMUM_DOCUMENT_SIZE;
}
+[CCode (cheader_filename = constants.h, cname = 
DEFAULT_FINGERPRINTS_PATH)]
+public const string TEXTCAT_DEFAULT_FINGERPRINTS_PATH;
[CCode (cheader_filename = textcat.h)]
public const int TEXTCAT_RESULT_SHORT;
[CCode (cheader_filename = textcat.h)]
-   public const int TEXTCAT_RESULT_UNKOWN;
+   public const int TEXTCAT_RESULT_UNKNOWN;
[CCode (cname = textcat_Version, cheader_filename = textcat.h)]
public static unowned string version ();
 }
commit 6f083ae232014be43064b026f43af3040e6cca63
Author: Giulio Paci giuliop...@gmail.com
Date:   Wed May 29 04:39:16 2013 +0200

Enable changing mindocsize at runtime.
(cherry picked from commit 34e34485d1528dc4aa3ceb5c7c2111096ea3a6d0)

diff --git a/src/textcat.c b/src/textcat.c
index 50d0e05..062f566 100644
--- a/src/textcat.c
+++ b/src/textcat.c
@@ -71,6 +71,7 @@ typedef struct
 unsigned char *fprint_disable;
 uint4 size;
 uint4 maxsize;
+uint4 mindocsize;
 
  

Re: [PATCH] fdo#39468 - translate German comments

2013-05-29 Thread Tor Lillqvist
Please do not feed the troll.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] core.git: Branch 'libreoffice-4-1' - translations

2013-05-29 Thread Andras Timar
 translations |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit f56f7899f73615ef1ad3cdd803ad8ab35a88db35
Author: Andras Timar ati...@suse.com
Date:   Wed May 29 12:03:39 2013 +0200

Updated core
Project: translations  6e9efbaac696e38f7f203130532124d4e2c6be89

diff --git a/translations b/translations
index e2d64c0..6e9efba 16
--- a/translations
+++ b/translations
@@ -1 +1 @@
-Subproject commit e2d64c03d16866ca9878c6aca49b1fa076c72451
+Subproject commit 6e9efbaac696e38f7f203130532124d4e2c6be89
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] libexttextcat.git: Changes to 'refs/tags/v3.4.1'

2013-05-29 Thread Caolán McNamara
Tag 'v3.4.1' created by Caolán McNamara caol...@redhat.com at 2013-05-29 
11:07 -0700

version 3.4.1

Changes since v3.4.0-6:
---
 0 files changed
---
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: [PATCH] fdo#39468 - translate German comments

2013-05-29 Thread Thomas Arnhold

Hi Guillermo,

because English is spoken and understood by more people than German.

You have to look which language is most-spoken:

http://en.wikipedia.org/wiki/List_of_languages_by_total_number_of_speakers

So the better choice above English would only be Standard Chinese...

Thomas

On 29.05.2013 11:35, Guillermo Molleda Jimena wrote:

And why is translated into English?
Why not Spanish or Chinese who have more native speakers?

Why does not the neutral language Esperanto fairest possible?
http://eo.wikipedia.org/wiki/Listo_de_lingvoj_la% C5% AD_parolantaro

Do not impose a national language to the world when there is a neutral,
fair and more just for all: esperanto.

We complain about Windows and ended imposing English
Learning English = 3 euros or dollars
Learn Esperanto = 300 euros or dollars or even free.

Best regards.

El 29/05/13 10:00, libreoffice-requ...@lists.freedesktop.org escribió:

[PATCH] fdo#39468 - translate German comments




___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice



___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] core.git: Branch 'refs/notes/commits' - 0e/116cc42be58358648612ece1b7c0a2d6f6112d

2013-05-29 Thread Caolán McNamara
 0e/116cc42be58358648612ece1b7c0a2d6f6112d |1 +
 1 file changed, 1 insertion(+)

New commits:
commit f6878b405c7db454edf1dad5398e943c748c4078
Author: Caolán McNamara caol...@redhat.com
Date:   Wed May 29 11:12:59 2013 +0100

Notes added by 'git notes add'

diff --git a/0e/116cc42be58358648612ece1b7c0a2d6f6112d 
b/0e/116cc42be58358648612ece1b7c0a2d6f6112d
new file mode 100644
index 000..c2f426b
--- /dev/null
+++ b/0e/116cc42be58358648612ece1b7c0a2d6f6112d
@@ -0,0 +1 @@
+reject: we didnt drop our lo suffix which avoids this
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: [GSOC Introduction] Implementation of an iOS remote control for LibreOffice

2013-05-29 Thread Tor Lillqvist
Congratulations and welcome! I am sure the project will be a success!

I think I would prefer to use the master branch for this work, but if you
insist, a specific branch can be used. Do you have any preference?

In any case, note that we prefer many small commits that don't have to
work as such (as long as they don't break the build) to few larger
commits. And even breaking the build (in some easily fixable way, typically
for some other platform than the one you use) is not *that* serious, it
happens all the time.

Please make sure that you get into the habit of building with
--enable-werror and --enable-dbgutil. Sure, whether to use those or not is
to some degree a personal preference (which is why they aren't hardcoded in
the configury), but hey, I am your mentor, and using them is my preference;)

--tml
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] core.git: sd/source

2013-05-29 Thread Tor Lillqvist
 sd/source/ui/slidesorter/shell/SlideSorterViewShell.cxx |3 ---
 1 file changed, 3 deletions(-)

New commits:
commit 4908bc63f4c125eff52e2b66d029ffaf31d3
Author: Tor Lillqvist tlillqv...@suse.com
Date:   Wed May 29 13:24:42 2013 +0300

WaE: unreachable code

Change-Id: I86080d7849b58f39623c22494992b2d84d9ed6de

diff --git a/sd/source/ui/slidesorter/shell/SlideSorterViewShell.cxx 
b/sd/source/ui/slidesorter/shell/SlideSorterViewShell.cxx
index e9c627f..a215952 100644
--- a/sd/source/ui/slidesorter/shell/SlideSorterViewShell.cxx
+++ b/sd/source/ui/slidesorter/shell/SlideSorterViewShell.cxx
@@ -576,9 +576,6 @@ void SlideSorterViewShell::Activate (sal_Bool 
bIsMDIActivate)
 }
 break;
 
-eContext = EnumContext::Context_SlidesorterPage;
-break;
-
 default:
 break;
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: 2 commits - sc/source

2013-05-29 Thread Noel Power
 sc/source/ui/vba/vbarange.cxx  |   22 ++
 sc/source/ui/vba/vbawindow.cxx |   83 +++--
 sc/source/ui/vba/vbawindow.hxx |2 
 3 files changed, 78 insertions(+), 29 deletions(-)

New commits:
commit 20d792d6379600df8b56a2735f9dd1cb63967e4d
Author: Noel Power noel.po...@suse.com
Date:   Tue May 28 17:33:33 2013 +0100

some Worksheet.Change support

Change-Id: I91203e74d54adba17a20ef7b7d835d9ac49855be

diff --git a/sc/source/ui/vba/vbarange.cxx b/sc/source/ui/vba/vbarange.cxx
index a2470f1..7c6af04 100644
--- a/sc/source/ui/vba/vbarange.cxx
+++ b/sc/source/ui/vba/vbarange.cxx
@@ -1831,6 +1831,7 @@ ScVbaRange::fillSeries( sheet::FillDirection 
nFillDirection, sheet::FillMode nFi
 
 uno::Reference sheet::XCellSeries  xCellSeries(mxRange, 
uno::UNO_QUERY_THROW );
 xCellSeries-fillSeries( nFillDirection, nFillMode, nFillDateMode, fStep, 
fEndValue );
+fireChangeEvent();
 }
 
 void
@@ -3095,7 +3096,28 @@ ScVbaRange::Replace( const OUString What, const 
OUString Replacement, const un
 // OOo.org afaik
 
 uno::Reference util::XSearchDescriptor  xSearch( xDescriptor, 
uno::UNO_QUERY );
+uno::Reference container::XIndexAccess  xIndexAccess = 
xReplace-findAll( xSearch );
 xReplace-replaceAll( xSearch );
+if ( xIndexAccess.is()  xIndexAccess-getCount()  0 )
+{
+for ( sal_Int32 i = 0; i  xIndexAccess-getCount(); ++i )
+{
+uno::Reference table::XCellRange  xCellRange( 
xIndexAccess-getByIndex( i ), uno::UNO_QUERY );
+if ( xCellRange.is() )
+{
+uno::Reference excel::XRange  xRange( new ScVbaRange( 
mxParent, mxContext, xCellRange ) );
+uno::Reference container::XEnumerationAccess  
xEnumAccess( xRange, uno::UNO_QUERY_THROW );
+uno::Reference container::XEnumeration  xEnum = 
xEnumAccess-createEnumeration();
+while ( xEnum-hasMoreElements() )
+{
+uno::Reference excel::XRange  xNextRange( 
xEnum-nextElement(), uno::UNO_QUERY_THROW );
+ScVbaRange* pRange = dynamic_cast ScVbaRange *  ( 
xNextRange.get() );
+if ( pRange )
+pRange-fireChangeEvent();
+}
+}
+}
+}
 }
 return sal_True; // always
 }
commit b1edc65b2ad18720fefb5ba769f2c6f8c46623d6
Author: Pedro Giffuni p...@apache.org
Date:   Mon Aug 13 17:05:00 2012 +

i106278 - Window.ActiveSheet,Window.FreezePanes,Window.Split, Window.View

not working correctly.

Patch by:   lihuiibm
Reviewed by:Chen Peng

diff --git a/sc/source/ui/vba/vbawindow.cxx b/sc/source/ui/vba/vbawindow.cxx
index caf68a0..99ec6eb 100644
--- a/sc/source/ui/vba/vbawindow.cxx
+++ b/sc/source/ui/vba/vbawindow.cxx
@@ -597,25 +597,33 @@ ScVbaWindow::getFreezePanes() throw 
(uno::RuntimeException)
 }
 
 void SAL_CALL
-ScVbaWindow::setFreezePanes( ::sal_Bool /*_bFreezePanes*/ ) throw 
(uno::RuntimeException)
+ScVbaWindow::setFreezePanes( ::sal_Bool _bFreezePanes ) throw 
(uno::RuntimeException)
 {
 uno::Reference sheet::XViewPane  xViewPane( getController(), 
uno::UNO_QUERY_THROW );
 uno::Reference sheet::XViewSplitable  xViewSplitable( xViewPane, 
uno::UNO_QUERY_THROW );
 uno::Reference sheet::XViewFreezable  xViewFreezable( xViewPane, 
uno::UNO_QUERY_THROW );
-if( xViewSplitable-getIsWindowSplit() )
+if( _bFreezePanes )
 {
-// if there is a split we freeze at the split
-sal_Int32 nColumn = getSplitColumn();
-sal_Int32 nRow = getSplitRow();
-xViewFreezable-freezeAtPosition( nColumn, nRow );
+if( xViewSplitable-getIsWindowSplit() )
+{
+// if there is a split we freeze at the split
+sal_Int32 nColumn = getSplitColumn();
+sal_Int32 nRow = getSplitRow();
+xViewFreezable-freezeAtPosition( nColumn, nRow );
+}
+else
+{
+// otherwise we freeze in the center of the visible sheet
+table::CellRangeAddress aCellRangeAddress = 
xViewPane-getVisibleRange();
+sal_Int32 nColumn = aCellRangeAddress.StartColumn + (( 
aCellRangeAddress.EndColumn - aCellRangeAddress.StartColumn )/2 );
+sal_Int32 nRow = aCellRangeAddress.StartRow + (( 
aCellRangeAddress.EndRow - aCellRangeAddress.StartRow )/2 );
+xViewFreezable-freezeAtPosition( nColumn, nRow );
+}
 }
 else
 {
-// otherwise we freeze in the center of the visible sheet
-table::CellRangeAddress aCellRangeAddress = 
xViewPane-getVisibleRange();
-sal_Int32 nColumn = aCellRangeAddress.StartColumn + (( 
aCellRangeAddress.EndColumn - aCellRangeAddress.StartColumn )/2 );
-sal_Int32 nRow = aCellRangeAddress.StartRow + (( 
aCellRangeAddress.EndRow - 

Re: Suggested Prioritization For Triaging

2013-05-29 Thread julien2412
Hi,

I agree with Joren. I know that the earlier you solve a bug (in master
instead of in 3.6 versions for example), the better/more simple it is (no
need to cherry-pick, etc.). But, for some people the highest priority may
be:
- unconfirmed regressions (because it's very frustrating to have been
advised to use a newer version, see a lot of improvements, bugs solved, etc.
in this new one and stumble on a regression bug)
- unconfirmed blockers (of course I talk about real blocker according to
https://wiki.documentfoundation.org/Release_Criteria#Blocker_Bug_Definition)
- unconfirmed for Base/Writer/... according what you use daily/prefer/know
better...
- very old unconfirmed (because the reporter may think nobody takes care of
his/her bug and probably won't submit others if he/she finds new ones)
- ...
In brief, it's a matter of personal opinion (which can change with the time)

I know that you just meant suggestions but it could be relevant to let
anyone triaging the bug he/she wants ; it's more incitative and you're more
efficient when you work on something you decided.
That's why I would remove this part.

For the rest, I didn't know this page and think it's is a good and useful
following to other pages like these:
https://wiki.documentfoundation.org/BugReport
https://wiki.documentfoundation.org/QA/BSA/BugReport_Details
to bring people go a step further in QA.

Julien



--
View this message in context: 
http://nabble.documentfoundation.org/Suggested-Prioritization-For-Triaging-tp4058346p4058416.html
Sent from the Dev mailing list archive at Nabble.com.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] core.git: Branch 'refs/notes/commits' - 37/b68025dd380447e9d80945ca6fe23e385646ba

2013-05-29 Thread Noel Power
 37/b68025dd380447e9d80945ca6fe23e385646ba |1 +
 1 file changed, 1 insertion(+)

New commits:
commit 55db9dc260756ab3f9110ed041431d2fca3d36d5
Author: Noel Power noel.po...@suse.com
Date:   Wed May 29 11:36:41 2013 +0100

Notes added by 'git notes add'

diff --git a/37/b68025dd380447e9d80945ca6fe23e385646ba 
b/37/b68025dd380447e9d80945ca6fe23e385646ba
new file mode 100644
index 000..9521a0c
--- /dev/null
+++ b/37/b68025dd380447e9d80945ca6fe23e385646ba
@@ -0,0 +1 @@
+prefer: 20d792d6379600df8b56a2735f9dd1cb63967e4d
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'refs/notes/commits' - da/cf002094e50faf89754026bd8f374450df8de1

2013-05-29 Thread Noel Power
 da/cf002094e50faf89754026bd8f374450df8de1 |1 +
 1 file changed, 1 insertion(+)

New commits:
commit b5d4eed612743b08b939e397542eae1526310cc9
Author: Noel Power noel.po...@suse.com
Date:   Wed May 29 11:38:07 2013 +0100

Notes added by 'git notes add'

diff --git a/da/cf002094e50faf89754026bd8f374450df8de1 
b/da/cf002094e50faf89754026bd8f374450df8de1
new file mode 100644
index 000..5b8fa41
--- /dev/null
+++ b/da/cf002094e50faf89754026bd8f374450df8de1
@@ -0,0 +1 @@
+merged as: b1edc65b2ad18720fefb5ba769f2c6f8c46623d6
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'refs/notes/commits' - c4/8e84dd084ab687fef8574a2c52b86d20fe724d

2013-05-29 Thread Noel Power
 c4/8e84dd084ab687fef8574a2c52b86d20fe724d |1 +
 1 file changed, 1 insertion(+)

New commits:
commit 3bc6b0317828d834a32c66f742a32b41786f4ae9
Author: Noel Power noel.po...@suse.com
Date:   Wed May 29 11:41:58 2013 +0100

Notes added by 'git notes add'

diff --git a/c4/8e84dd084ab687fef8574a2c52b86d20fe724d 
b/c4/8e84dd084ab687fef8574a2c52b86d20fe724d
new file mode 100644
index 000..2ac2bc9
--- /dev/null
+++ b/c4/8e84dd084ab687fef8574a2c52b86d20fe724d
@@ -0,0 +1 @@
+ignore: does not seem necessary
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Build /tmp output garbage

2013-05-29 Thread Tomáš Chvátal
Hello guys,

I have running tinderbox instance and i noticed that TMP is continuously
spammed with various tmp files provided while libreoffice build was run.

After a week of run it amounts to 150 mb of data.

Sample files:
-rw---  1 scarabeus scarabeus 3,9K 28. kvě 00.31 lu88dbjh.tmp
-rw---  1 scarabeus scarabeus 3,8K 28. kvě 00.31 lu88dbj1.tmp
-rw---  1 scarabeus scarabeus0 28. kvě 00.31 lu88dbkf.tmp
-rw---  1 scarabeus scarabeus0 28. kvě 00.31 lu88dblp.tmp
-rw---  1 scarabeus scarabeus 4,7K 28. kvě 00.31 lu88dbl9.tmp

Is there actually some plan to make libreoffice build cleanup after itself
(even with crashed build these should be gone).
It is not such problem for me as I reboot once every few months so this
gets wiped from tmpfs, but still it should not happen.

Cheers

Tom
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: Build /tmp output garbage

2013-05-29 Thread Michael Stahl
On 29/05/13 12:45, Tomáš Chvátal wrote:
 I have running tinderbox instance and i noticed that TMP is continuously
 spammed with various tmp files provided while libreoffice build was run.
 
 After a week of run it amounts to 150 mb of data.

 Is there actually some plan to make libreoffice build cleanup after
 itself (even with crashed build these should be gone).
 It is not such problem for me as I reboot once every few months so this
 gets wiped from tmpfs, but still it should not happen.

probably from unit tests, most likely some stuff is leaked so the
files are not removed... please track down which tests do that and send
patches :)


___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] core.git: Changes to 'feature/vlc'

2013-05-29 Thread Michael Meeks
New branch 'feature/vlc' available with the following commits:
commit 9251e48685e648bd2934b580d29f8d9e3985d018
Author: Michael Meeks michael.me...@suse.com
Date:   Wed May 29 12:08:31 2013 +0100

initial configure pieces for VLC detection.

Change-Id: I1001d7f87c3e3194c04ea9d1ef97a87898f891ea

___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'feature/sidebaropt' - 0 commits -

2013-05-29 Thread Unknown
Rebased ref, commits from common ancestor:
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'feature/sidebaroptr' - 0 commits -

2013-05-29 Thread Unknown
Rebased ref, commits from common ancestor:
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'feature/vlc' - avmedia/Library_avmediavlc.mk avmedia/Module_avmedia.mk avmedia/source postprocess/Rdb_services.mk Repository.mk scp2/InstallModule_ooo.mk scp2/s

2013-05-29 Thread Michael Meeks
 Repository.mk   |1 
 avmedia/Library_avmediavlc.mk   |   45 +
 avmedia/Module_avmedia.mk   |6 +++
 avmedia/source/vlc/avmediavlc.component |   14 
 avmedia/source/vlc/vlccommon.hxx|   46 ++
 avmedia/source/vlc/vlcuno.cxx   |   56 
 postprocess/Rdb_services.mk |3 +
 scp2/InstallModule_ooo.mk   |1 
 scp2/source/ooo/file_library_ooo.scp|3 +
 scp2/source/ooo/module_hidden_ooo.scp   |1 
 10 files changed, 176 insertions(+)

New commits:
commit b96de744c22c1aeaa2e2f67cdfea22bd5665fb8d
Author: Michael Meeks michael.me...@suse.com
Date:   Wed May 29 12:27:08 2013 +0100

initial vlc component build / conditionals and hookup.

Change-Id: I12e4a368e18a58099160ee65eebe837744e11378

diff --git a/Repository.mk b/Repository.mk
index 723d7a3..669a893 100644
--- a/Repository.mk
+++ b/Repository.mk
@@ -522,6 +522,7 @@ $(eval $(call 
gb_Helper_register_libraries_for_install,PLAINLIBS_OOO,OOO, \
 $(eval $(call gb_Helper_register_libraries,PLAINLIBS_OOO, \
 avmediagst \
 avmediagst_0_10 \
+avmediavlc \
 avmediawin \
 bluez_bluetooth \
 cached1 \
diff --git a/avmedia/Library_avmediavlc.mk b/avmedia/Library_avmediavlc.mk
new file mode 100644
index 000..f4b1b24
--- /dev/null
+++ b/avmedia/Library_avmediavlc.mk
@@ -0,0 +1,45 @@
+# -*- Mode: makefile; tab-width: 4; indent-tabs-mode: t -*-
+#
+# This file is part of the LibreOffice project.
+#
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#
+
+$(eval $(call gb_Library_Library,avmediavlc))
+
+$(eval $(call 
gb_Library_set_componentfile,avmediavlc,avmedia/source/vlc/avmediavlc))
+
+$(eval $(call gb_Library_set_include,avmediavlc,\
+   $$(INCLUDE) \
+   -I$(SRCDIR)/avmedia/source/inc \
+   $(VLC_CFLAGS) \
+))
+$(eval $(call gb_Library_add_libs,avmediavlc,$(VLC_LIBS)))
+
+$(eval $(call gb_Library_use_external,avmediavlc,boost_headers))
+
+$(eval $(call gb_Library_use_sdk_api,avmediavlc))
+
+ifeq ($(OS),WNT)
+$(eval $(call gb_Library_add_defs,avmediavlc,\
+   -DWINNT
+))
+endif
+
+$(eval $(call gb_Library_use_libraries,avmediavlc,\
+   comphelper \
+   cppu \
+   cppuhelper \
+   sal \
+   tl \
+   vcl \
+   $(gb_UWINAPI) \
+))
+
+$(eval $(call gb_Library_add_exception_objects,avmediavlc,\
+   avmedia/source/vlc/vlcuno \
+))
+
+# vim: set noet sw=4 ts=4:
diff --git a/avmedia/Module_avmedia.mk b/avmedia/Module_avmedia.mk
index 3579081..68d2e74 100644
--- a/avmedia/Module_avmedia.mk
+++ b/avmedia/Module_avmedia.mk
@@ -26,6 +26,12 @@ $(eval $(call gb_Module_add_targets,avmedia,\
 ))
 endif
 
+ifeq ($(ENABLE_VLC),TRUE)
+$(eval $(call gb_Module_add_targets,avmedia,\
+   Library_avmediavlc \
+))
+endif
+
 ifeq ($(OS),MACOSX)
 ifneq ($(CPUNAME),X86_64)
 $(eval $(call gb_Module_add_targets,avmedia,\
diff --git a/avmedia/source/vlc/avmediavlc.component 
b/avmedia/source/vlc/avmediavlc.component
new file mode 100644
index 000..95e99a9
--- /dev/null
+++ b/avmedia/source/vlc/avmediavlc.component
@@ -0,0 +1,14 @@
+?xml version=1.0 encoding=UTF-8?
+!--
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+--
+component loader=com.sun.star.loader.SharedLibrary prefix=avmediavlc 
xmlns=http://openoffice.org/2010/uno-components;
+  implementation name=com.sun.star.comp.media.Manager_VLC
+service name=com.sun.star.comp.avmedia.Manager_VLC/
+  /implementation
+/component
diff --git a/avmedia/source/vlc/vlccommon.hxx b/avmedia/source/vlc/vlccommon.hxx
new file mode 100644
index 000..e9cc864
--- /dev/null
+++ b/avmedia/source/vlc/vlccommon.hxx
@@ -0,0 +1,46 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/*
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ * This file incorporates work covered by the following license notice:
+ *
+ *   Licensed to the Apache Software Foundation (ASF) under one or more
+ *   contributor license agreements. See the NOTICE file distributed
+ *   with this work for additional information regarding copyright
+ *   ownership. The ASF licenses this file to you under the Apache
+ *   License, Version 2.0 (the License); you may not use this file
+ *   except in compliance with the License. You may obtain a copy of
+ *   the License at http://www.apache.org/licenses/LICENSE-2.0 

[Libreoffice-commits] core.git: svx/source

2013-05-29 Thread Andras Timar
 svx/source/dialog/ucsubset.src |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit d34c759cd2352754037f74e0e6302c64c6af66da
Author: Andras Timar ati...@suse.com
Date:   Wed May 29 13:26:59 2013 +0200

typo: Ssymbols - Symbols

Change-Id: Ifc518e65ccdce4e853fc419b87547b00d0e437a4

diff --git a/svx/source/dialog/ucsubset.src b/svx/source/dialog/ucsubset.src
index 4ce3283..15b283d 100644
--- a/svx/source/dialog/ucsubset.src
+++ b/svx/source/dialog/ucsubset.src
@@ -393,7 +393,7 @@ Resource RID_SUBSETMAP
 };
 String RID_SUBSETSTR_YIJING_HEXAGRAM_SYMBOLS
 {
-Text [ en-US ] = Yijing Hexagram Ssymbols;
+Text [ en-US ] = Yijing Hexagram Symbols;
 };
 String RID_SUBSETSTR_LINEAR_B_SYLLABARY
 {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-4-1' - svx/source

2013-05-29 Thread Andras Timar
 svx/source/dialog/ucsubset.src |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 96836c1710e72812366b800b9f53d5181aadcd61
Author: Andras Timar ati...@suse.com
Date:   Wed May 29 13:26:59 2013 +0200

typo: Ssymbols - Symbols

Change-Id: Ifc518e65ccdce4e853fc419b87547b00d0e437a4

diff --git a/svx/source/dialog/ucsubset.src b/svx/source/dialog/ucsubset.src
index 4ce3283..15b283d 100644
--- a/svx/source/dialog/ucsubset.src
+++ b/svx/source/dialog/ucsubset.src
@@ -393,7 +393,7 @@ Resource RID_SUBSETMAP
 };
 String RID_SUBSETSTR_YIJING_HEXAGRAM_SYMBOLS
 {
-Text [ en-US ] = Yijing Hexagram Ssymbols;
+Text [ en-US ] = Yijing Hexagram Symbols;
 };
 String RID_SUBSETSTR_LINEAR_B_SYLLABARY
 {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'feature/vlc' - postprocess/Rdb_services.mk

2013-05-29 Thread Michael Meeks
 postprocess/Rdb_services.mk |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit fa7672235410e5ba83c4956bf634e8bec623b3bb
Author: Michael Meeks michael.me...@suse.com
Date:   Wed May 29 12:31:22 2013 +0100

trivial build fix.

Change-Id: I6c5254e2087fed0664255619f080741f8ffb2a6e

diff --git a/postprocess/Rdb_services.mk b/postprocess/Rdb_services.mk
index 91e280e..00c6423 100644
--- a/postprocess/Rdb_services.mk
+++ b/postprocess/Rdb_services.mk
@@ -205,7 +205,7 @@ $(eval $(call gb_Rdb_add_components,services,\
avmedia/source/gstreamer/avmediagstreamer_0_10 \
) \
$(if $(ENABLE_VLC), \
-   avmedia/source/gstreamer/avmediavlc \
+   avmedia/source/vlc/avmediavlc \
) \
$(if $(ENABLE_KAB), \
connectivity/source/drivers/kab/kab1 \
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: Updates about Enhanced Database Ranges.

2013-05-29 Thread Akash Shetye
Sorry about that, I will follow your advice sorry about that. Please take
my earlier statement as a joke gone wrong.


On Wed, May 29, 2013 at 1:10 PM, Tor Lillqvist t...@iki.fi wrote:

 I got both the books over torrent (hmmm yeah I know).


 Please steal physical copies of the book instead, of even buy ones. How
 can we expect anybody to respect the license we use for our work if we
 don't respect the license others use for their work?

 --tml

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] core.git: Branch 'libreoffice-4-1' - sysui/productlist.mk

2013-05-29 Thread Petr Mladek
 sysui/productlist.mk |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 12932acd59faafa0abdffd4871977c22e8aa1ebd
Author: Petr Mladek pmla...@suse.cz
Date:   Tue May 28 17:30:30 2013 +0200

fix UNIXFILENAME variable for the Linux desktop integreation (fdo#64707)

There was a mistage when merging the clean up.

Note that $(UNIXFILENAME.$*) is not correctly substituted if the variables 
are define
by another VAR.bla variables. This is why we need to hardcode the lowercase 
names here.

Change-Id: I9110083122175cdbd09baa0533d890a7ef6d8213

diff --git a/sysui/productlist.mk b/sysui/productlist.mk
index 00d471e..b4a712e 100644
--- a/sysui/productlist.mk
+++ b/sysui/productlist.mk
@@ -13,8 +13,8 @@ PKGVERSIONSHORT := $(LIBO_VERSION_MAJOR).$(LIBO_VERSION_MINOR)
 PRODUCTNAME.libreoffice := LibreOffice
 PRODUCTNAME.libreofficeodev := LibreOfficeDev
 PRODUCTNAME.oxygenoffice := OxygenOffice
-UNIXFILENAME.libreoffice := $(PRODUCTNAMELC.libreoffice)$(PKGVERSIONSHORT)
-UNIXFILENAME.libreofficedev := 
$(PRODUCTNAMELC.libreofficedev)$(PKGVERSIONSHORT)
-UNIXFILENAME.oxygenoffice := $(PRODUCTNAMELC.oxygenoffice)$(PKGVERSIONSHORT)
+UNIXFILENAME.libreoffice := libreoffice$(PKGVERSIONSHORT)
+UNIXFILENAME.libreofficedev := libreofficedev$(PKGVERSIONSHORT)
+UNIXFILENAME.oxygenoffice := oxygenoffice$(PKGVERSIONSHORT)
 
 # vim: set noet sw=4 ts=4:
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[ABANDONED] code enhancement remove dublicate code

2013-05-29 Thread Abdulaziz A Alayed (via Code Review)
Abdulaziz A Alayed has abandoned this change.

Change subject: code enhancement remove dublicate code
..


Patch Set 2: Abandoned

-- 
To view, visit https://gerrit.libreoffice.org/3279
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: abandon
Gerrit-Change-Id: Ic58e4cc4f9adb40553488d5975111219d8e3d7e8
Gerrit-PatchSet: 2
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Abdulaziz A Alayed aala...@kacst.edu.sa
Gerrit-Reviewer: Noel Grandin noelgran...@gmail.com

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] core.git: sysui/productlist.mk

2013-05-29 Thread Petr Mladek
 sysui/productlist.mk |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 5281a6c101d3a2b6ee54fbba7924510325ca37a6
Author: Petr Mladek pmla...@suse.cz
Date:   Tue May 28 17:30:30 2013 +0200

fix UNIXFILENAME variable for the Linux desktop integreation (fdo#64707)

There was a mistage when merging the clean up.

Note that $(UNIXFILENAME.$*) is not correctly substituted if the variables 
are define
by another VAR.bla variables. This is why we need to hardcode the lowercase 
names here.

Change-Id: I9110083122175cdbd09baa0533d890a7ef6d8213

diff --git a/sysui/productlist.mk b/sysui/productlist.mk
index 00d471e..b4a712e 100644
--- a/sysui/productlist.mk
+++ b/sysui/productlist.mk
@@ -13,8 +13,8 @@ PKGVERSIONSHORT := $(LIBO_VERSION_MAJOR).$(LIBO_VERSION_MINOR)
 PRODUCTNAME.libreoffice := LibreOffice
 PRODUCTNAME.libreofficeodev := LibreOfficeDev
 PRODUCTNAME.oxygenoffice := OxygenOffice
-UNIXFILENAME.libreoffice := $(PRODUCTNAMELC.libreoffice)$(PKGVERSIONSHORT)
-UNIXFILENAME.libreofficedev := 
$(PRODUCTNAMELC.libreofficedev)$(PKGVERSIONSHORT)
-UNIXFILENAME.oxygenoffice := $(PRODUCTNAMELC.oxygenoffice)$(PKGVERSIONSHORT)
+UNIXFILENAME.libreoffice := libreoffice$(PKGVERSIONSHORT)
+UNIXFILENAME.libreofficedev := libreofficedev$(PKGVERSIONSHORT)
+UNIXFILENAME.oxygenoffice := oxygenoffice$(PKGVERSIONSHORT)
 
 # vim: set noet sw=4 ts=4:
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Bug 60270] LibreOffice 4.1 most annoying bugs

2013-05-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=60270

Bug 60270 depends on bug 64707, which changed state.

Bug 64707 Summary: Unable to start application using desktop menu on Linux
https://bugs.freedesktop.org/show_bug.cgi?id=64707

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution|--- |FIXED

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: Updates about Enhanced Database Ranges.

2013-05-29 Thread Akash Shetye
Hey,

I have built the feature branch successfully, no problems in doing so.
Thanks
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] core.git: 8 commits - basic/source bridges/Library_cpp_uno.mk connectivity/source jvmfwk/plugins sw/source sysui/desktop

2013-05-29 Thread Caolán McNamara
 basic/source/runtime/methods.cxx |   10 +-
 bridges/Library_cpp_uno.mk   |   24 +-
 connectivity/source/drivers/mysql/YDriver.cxx|   19 
 connectivity/source/manager/mdrivermanager.cxx   |8 +-
 connectivity/source/manager/mdrivermanager.hxx   |7 +
 jvmfwk/plugins/sunmajor/pluginlib/vendorbase.cxx |   22 +
 sw/source/filter/ww8/WW8TableInfo.hxx|   89 +++
 sw/source/ui/fldui/fldref.src|   26 +++---
 sysui/desktop/macosx/gen_strings.pl  |1 
 9 files changed, 133 insertions(+), 73 deletions(-)

New commits:
commit 54054514403a3e9bc45a71b20eb5e58befbb5508
Author: Caolán McNamara caol...@redhat.com
Date:   Wed May 29 12:40:06 2013 +0100

bogus TRUE/FALSE - sal_False/sal_True

Change-Id: I72e0b6b3261422bd5fc47445d38cc64241d62362

diff --git a/basic/source/runtime/methods.cxx b/basic/source/runtime/methods.cxx
index 2fd3eb5..118c80a 100644
--- a/basic/source/runtime/methods.cxx
+++ b/basic/source/runtime/methods.cxx
@@ -4381,11 +4381,11 @@ RTLFUNC(MsgBox)
 };
 static const sal_Int16 nButtonMap[] =
 {
-2, // #define RET_CANCEL sal_False
-1, // #define RET_OK sal_True
-6, // #define RET_YES2
-7, // #define RET_NO 3
-4  // #define RET_RETRY  4
+2, // RET_CANCEL is 0
+1, // RET_OK is 1
+6, // RET_YESis 2
+7, // RET_NO is 3
+4  // RET_RETRY  is 4
 };
 
 
commit ac66cb60b09b16b3a280e7cea5f2f01e852dfc85
Author: Ariel Constenla-Haile arie...@apache.org
Date:   Thu Sep 27 03:20:34 2012 +

Ensure socket or pipe are passed to the native driver

(cherry picked from commit ad1186563ea12ce63dfdf738c332bf712084f633)

Change-Id: Ib556732abb42dd3371331368c2b2eb717d505461

diff --git a/connectivity/source/drivers/mysql/YDriver.cxx 
b/connectivity/source/drivers/mysql/YDriver.cxx
index bd826e0..dd8c36d 100644
--- a/connectivity/source/drivers/mysql/YDriver.cxx
+++ b/connectivity/source/drivers/mysql/YDriver.cxx
@@ -354,6 +354,25 @@ namespace connectivity
 ,Sequence OUString ())
 );
 }
+else if ( eType == D_NATIVE )
+{
+aDriverInfo.push_back(DriverPropertyInfo(
+OUString(RTL_CONSTASCII_USTRINGPARAM(LocalSocket))
+,OUString(RTL_CONSTASCII_USTRINGPARAM(
+The file path of a socket to connect to a local MySQL 
server.))
+,sal_False
+,OUString()
+,Sequence OUString ())
+);
+aDriverInfo.push_back(DriverPropertyInfo(
+OUString(RTL_CONSTASCII_USTRINGPARAM(NamedPipe))
+,OUString(RTL_CONSTASCII_USTRINGPARAM(
+The name of a pipe to connect to a local MySQL 
server.))
+,sal_False
+,OUString()
+,Sequence OUString ())
+);
+}
 
 return Sequence DriverPropertyInfo 
(aDriverInfo[0],aDriverInfo.size());
 }
commit 37ca14359b8c4027f1d9f9569ddfa2740cd2731e
Author: Ariel Constenla-Haile arie...@apache.org
Date:   Fri Sep 21 17:08:44 2012 +

Related: #i119525# List only JREs whose jvm library can be loaded

(cherry picked from commit 0b31fa19e50d8259d3cbe695723ea02e2c5ff711)

Change-Id: I1f96c6239d7278c4eb0c17b69f9d35e08eb8260b

diff --git a/jvmfwk/plugins/sunmajor/pluginlib/vendorbase.cxx 
b/jvmfwk/plugins/sunmajor/pluginlib/vendorbase.cxx
index 6fa931d..b1cd722 100644
--- a/jvmfwk/plugins/sunmajor/pluginlib/vendorbase.cxx
+++ b/jvmfwk/plugins/sunmajor/pluginlib/vendorbase.cxx
@@ -19,6 +19,9 @@
 
 
 #include osl/file.hxx
+#include osl/diagnose.h
+#include osl/module.hxx
+#include osl/thread.hxx
 
 #include vendorbase.hxx
 #include util.hxx
@@ -158,6 +161,25 @@ bool VendorBase::initialize(vectorpairOUString, 
OUString  props)
 if (!bRt)
 return false;
 
+#if defined(WNT)
+oslModule moduleRt = 0;
+rtl::OUString sRuntimeLib;
+if( File::getSystemPathFromFileURL( m_sRuntimeLibrary, sRuntimeLib ) == 
File::E_None )
+{
+if ( ( moduleRt = osl_loadModule( sRuntimeLib.pData, 
SAL_LOADMODULE_DEFAULT ) ) == 0 )
+{
+OSL_TRACE( jfw_plugin::VendorBase::initialize - cannot load 
library %s,
+   rtl::OUStringToOString( sRuntimeLib, 
osl_getThreadTextEncoding() ).getStr() );
+return false;
+}
+else
+{
+// do not leave the module loaded!
+osl_unloadModule( moduleRt );
+}
+}
+#endif
+
 // init m_sLD_LIBRARY_PATH
 OSL_ASSERT(!m_sHome.isEmpty());
 size = 0;
commit 33c2427824ac893b15777527b818ec99c78c61dd
Author: Ariel Constenla-Haile arie...@apache.org
Date:   Wed Sep 19 18:22:46 2012 +

Ensure UNO context propagation 

[Libreoffice-commits] core.git: Branch 'refs/notes/commits' - 2 commits - 0b/31fa19e50d8259d3cbe695723ea02e2c5ff711 ad/1186563ea12ce63dfdf738c332bf712084f633

2013-05-29 Thread Caolán McNamara
 0b/31fa19e50d8259d3cbe695723ea02e2c5ff711 |1 +
 ad/1186563ea12ce63dfdf738c332bf712084f633 |1 +
 2 files changed, 2 insertions(+)

New commits:
commit 31587d9e6fda80d1a6c49b8138339271c0804b51
Author: Caolán McNamara caol...@redhat.com
Date:   Wed May 29 13:00:13 2013 +0100

Notes added by 'git notes add'

diff --git a/0b/31fa19e50d8259d3cbe695723ea02e2c5ff711 
b/0b/31fa19e50d8259d3cbe695723ea02e2c5ff711
new file mode 100644
index 000..b8c89a4
--- /dev/null
+++ b/0b/31fa19e50d8259d3cbe695723ea02e2c5ff711
@@ -0,0 +1 @@
+merged as: 37ca14359b8c4027f1d9f9569ddfa2740cd2731e
commit cae1b7d6e791842ada829c835dc5a0c8ad7ae3ce
Author: Caolán McNamara caol...@redhat.com
Date:   Wed May 29 13:00:00 2013 +0100

Notes added by 'git notes add'

diff --git a/ad/1186563ea12ce63dfdf738c332bf712084f633 
b/ad/1186563ea12ce63dfdf738c332bf712084f633
new file mode 100644
index 000..fbe0545
--- /dev/null
+++ b/ad/1186563ea12ce63dfdf738c332bf712084f633
@@ -0,0 +1 @@
+merged as: ac66cb60b09b16b3a280e7cea5f2f01e852dfc85
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'refs/notes/commits' - 2 commits - 61/3c8044fd9af3d1820c293bd95d12b700177405 78/b2bf15963704fafb823e80bbccb287847fe1db

2013-05-29 Thread Caolán McNamara
 61/3c8044fd9af3d1820c293bd95d12b700177405 |1 +
 78/b2bf15963704fafb823e80bbccb287847fe1db |1 +
 2 files changed, 2 insertions(+)

New commits:
commit 38d1e3e75814b9dccf7b49905cab71d860d9c56f
Author: Caolán McNamara caol...@redhat.com
Date:   Wed May 29 13:00:38 2013 +0100

Notes added by 'git notes add'

diff --git a/61/3c8044fd9af3d1820c293bd95d12b700177405 
b/61/3c8044fd9af3d1820c293bd95d12b700177405
new file mode 100644
index 000..700b179
--- /dev/null
+++ b/61/3c8044fd9af3d1820c293bd95d12b700177405
@@ -0,0 +1 @@
+merged as: 1c21f83d723df1ced2582c2c3f2411e803a197bf
commit 8fa9feeedcec59318076d8c4afe24cdd5521b447
Author: Caolán McNamara caol...@redhat.com
Date:   Wed May 29 13:00:25 2013 +0100

Notes added by 'git notes add'

diff --git a/78/b2bf15963704fafb823e80bbccb287847fe1db 
b/78/b2bf15963704fafb823e80bbccb287847fe1db
new file mode 100644
index 000..9151dbe
--- /dev/null
+++ b/78/b2bf15963704fafb823e80bbccb287847fe1db
@@ -0,0 +1 @@
+merged as: 33c2427824ac893b15777527b818ec99c78c61dd
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'refs/notes/commits' - 2 commits - 5e/59a33a330ec1bbc7ebea0c43d59eadc7460b9b 68/7d6ed3e4ecb836634bfda71bb5596e18bbc2e1

2013-05-29 Thread Caolán McNamara
 5e/59a33a330ec1bbc7ebea0c43d59eadc7460b9b |1 +
 68/7d6ed3e4ecb836634bfda71bb5596e18bbc2e1 |1 +
 2 files changed, 2 insertions(+)

New commits:
commit 3f52fe3f228af6539b1dad2855047d64094b3e96
Author: Caolán McNamara caol...@redhat.com
Date:   Wed May 29 13:01:03 2013 +0100

Notes added by 'git notes add'

diff --git a/68/7d6ed3e4ecb836634bfda71bb5596e18bbc2e1 
b/68/7d6ed3e4ecb836634bfda71bb5596e18bbc2e1
new file mode 100644
index 000..1e6465b
--- /dev/null
+++ b/68/7d6ed3e4ecb836634bfda71bb5596e18bbc2e1
@@ -0,0 +1 @@
+merged as: b45876bf0f2eeafba0a4f9f8f30cd4279eb2aa3e
commit 5f06ba9bf459cb49cc879f162730a400a64c2b94
Author: Caolán McNamara caol...@redhat.com
Date:   Wed May 29 13:00:50 2013 +0100

Notes added by 'git notes add'

diff --git a/5e/59a33a330ec1bbc7ebea0c43d59eadc7460b9b 
b/5e/59a33a330ec1bbc7ebea0c43d59eadc7460b9b
new file mode 100644
index 000..803f716
--- /dev/null
+++ b/5e/59a33a330ec1bbc7ebea0c43d59eadc7460b9b
@@ -0,0 +1 @@
+merged as: 988c2ed9391107c3807abcdf81cae2f8872395d3
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'refs/notes/commits' - a3/e7b7635385f096be693c63f0868fcd97c46a9a

2013-05-29 Thread Caolán McNamara
 a3/e7b7635385f096be693c63f0868fcd97c46a9a |1 +
 1 file changed, 1 insertion(+)

New commits:
commit 3805858489873a71468659273a3ba601296686f9
Author: Caolán McNamara caol...@redhat.com
Date:   Wed May 29 13:01:45 2013 +0100

Notes added by 'git notes add'

diff --git a/a3/e7b7635385f096be693c63f0868fcd97c46a9a 
b/a3/e7b7635385f096be693c63f0868fcd97c46a9a
new file mode 100644
index 000..5f6eda0
--- /dev/null
+++ b/a3/e7b7635385f096be693c63f0868fcd97c46a9a
@@ -0,0 +1 @@
+prefer: e1823ea132c41b16fb165a641ce8388585764124
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'refs/notes/commits' - b3/f8a9ea7eeee58bcabedd3c296d0758d1ef5a8b

2013-05-29 Thread Caolán McNamara
 b3/f8a9ea758bcabedd3c296d0758d1ef5a8b |1 +
 1 file changed, 1 insertion(+)

New commits:
commit a01a78bd29b7ad83fed5d2c6b9b378a9198a718e
Author: Caolán McNamara caol...@redhat.com
Date:   Wed May 29 13:04:16 2013 +0100

Notes added by 'git notes add'

diff --git a/b3/f8a9ea758bcabedd3c296d0758d1ef5a8b 
b/b3/f8a9ea758bcabedd3c296d0758d1ef5a8b
new file mode 100644
index 000..38671be
--- /dev/null
+++ b/b3/f8a9ea758bcabedd3c296d0758d1ef5a8b
@@ -0,0 +1 @@
+prefer: 8a6c5b2fcbf2b6d87529e91f58aa41c02d0fc990
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] dictionaries.git: Changes to 'refs/tags/libreoffice-4.1.0.0.beta1-buildfix1'

2013-05-29 Thread Petr Mladek
Tag 'libreoffice-4.1.0.0.beta1-buildfix1' created by Petr Mladek 
pmla...@suse.cz at 2013-05-29 13:27 -0700

Tag libreoffice-4.1.0.0.beta1-buildfix1
-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.9 (GNU/Linux)

iQIcBAABAgAGBQJRpfQhAAoJEPQ0oe+v7q6jdRYQALB/3uQUohyyMXcP57EB2oF0
87wTo+sPhUYiduUVtNz9fCDDshQwehpkbrJBAyWu62c9kq3liD43ags4PwvyK3s0
mC/S7IbJX7kQ/Ut9WVAGPdV1dI0brfqMuOWHYurQuwraPcnLZve8B3O+aZWekGez
GZEumqoaGbttbO4Qleqnb3jLWBvmEJ7/NvnzkCc6Ty2NOh/PtCH7xRYQYJDqQ8p4
2kz3EeRJC+dE9HwcMY9GriKrU2AlxnKKOgf+hX7YwerLOdlu76jC1Lt5FAjN3Ta/
viY7zY6lXZ3/8x05ML5Z4Kgy3WH99XrI2BxcrbGqGgUOSnxqsni6tO/AmAjHHnJ8
qYH0rrEyX62OVoSFhtvQo6KoDRWyjdiwldl9KjIGPp1f36OhT2FZKV28wueIzVWN
N/jVbobYlbVEXD50r5Tg7deHBa+z3jlVKJA0EwxOmTCnbcxsyRSuexHZOtwxr0on
RhV6CE83nSTMHT594oLM2BUkm3p/5Tpvf4UY4pBGvmkCln1g8VaOmdmxn73mKnmY
r/RwOuZPSmmMGf5cgeoLGlzhHyyZFNhWb8qtRL2Q+Ys12OOXs7UJ35xoAPL4l2nx
wTn6D012aie0hZDe1vC/xeE5OO3rwvIXUJtubAFDhTMFGYb9ZI2fmXb40jj4mVYY
bYERy14qAfxdlIyyij16
=QZnw
-END PGP SIGNATURE-

Changes since libreoffice-4.1.0.0.beta1:
Petr Mladek (1):
  Version 4.1.0.0.beta1, tag libreoffice-4.1.0.0.beta1-buildfix1

---
 0 files changed
---
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] help.git: Changes to 'refs/tags/libreoffice-4.1.0.0.beta1-buildfix1'

2013-05-29 Thread Petr Mladek
Tag 'libreoffice-4.1.0.0.beta1-buildfix1' created by Petr Mladek 
pmla...@suse.cz at 2013-05-29 13:27 -0700

Tag libreoffice-4.1.0.0.beta1-buildfix1
-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.9 (GNU/Linux)

iQIbBAABAgAGBQJRpfQhAAoJEPQ0oe+v7q6jndoP9RZJw0R4mNP+XPV6WZ4hWNIp
+bZwXGhcJ0pxZQ5Txei+CSYGpe9sFtLpwWflb85FGjspNKJlhjczwFEAVqBTbb2L
UZSskXr+aIYdW4WfM4Cp7T92Bc6EwfGB9mxZRcjQyoBszx9EaMufgWUOENDQY4WD
vRewOlYcaOn859Ez2/nYbOBp7RkAx1PpwnTqhLKf1CLZSLJRGX7GFCn/hwB35TlG
jEhvHdja7sUNS5hhoLyCB0MQQl2NrXPF9kFFcpG+4BcHbcOqJA+4RI6jgpXacREc
aH8el1ZJgCakfboN/4Oqzd/GOb2EF+MQhm910WsXevxKANuVqBd07xGp1ZuB0jhQ
60PN2Mw/Hp59kktAuMTcJNHswU7KOmVeEN67WVuRVn28O//l+5CXBfTYkSXAWAXK
Ys3YrLdNqGxtq+tFInNIVgAIuy6KuQ6OoCqwS3ad1rU18t8gWFKz9/N5bamlKit1
W+kQnzuPM67u1hus7D3nWPlec7CaaowaH2O7Yd3Ln5miGi8eZI1DAIRDLbRdKL/v
UAMkHRBKAOPXvGKLXSaMWhMenfn7A8IqeM39Bj3OZI18WXWSkstEt9+ofredbKA0
Nk8K4t07WGI33vnu8rrCxE9KU+1WYf5u5GRaXTFEoOuHbAI1YlqMAFZxsPY7wYAD
7I+IWn9aDIvtAPplU/c=
=YPCj
-END PGP SIGNATURE-

Changes since libreoffice-4.1.0.0.beta1:
Petr Mladek (1):
  Version 4.1.0.0.beta1, tag libreoffice-4.1.0.0.beta1-buildfix1

---
 0 files changed
---
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] translations.git: Changes to 'refs/tags/libreoffice-4.1.0.0.beta1-buildfix1'

2013-05-29 Thread Petr Mladek
Tag 'libreoffice-4.1.0.0.beta1-buildfix1' created by Petr Mladek 
pmla...@suse.cz at 2013-05-29 13:27 -0700

Tag libreoffice-4.1.0.0.beta1-buildfix1
-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.9 (GNU/Linux)

iQIcBAABAgAGBQJRpfQhAAoJEPQ0oe+v7q6jXYYP/0MgOBYvDM5oTbQQUGAz+VYY
WMqXx/vWSRv5s3Vxpsy94UZqeylzcMh5kcHDzSgtG99B47KRh1DwKUDY2Wpft+ly
mHzJIbIAMvtyYr3H6PsMjSVUujdyWHd0OSvFFUK/AU/ZR/jLdOkRVaqmgGVaXlER
e4rCJI0hLbrDUdBEKrMozJjtmWKyT41EVBQ0PUIwbXzQlBZdEGFKkvocJ2WR2RtS
PtN7N9zb0zlyu+HW1hGZtbdTgiP6GSkpvhXY2NibekdA8Ym1uhJsRJqjW64bUsd9
H1hW7AtrxkBfpFBR6Wevp35W4zeKbnaO/2t1vNyUuhEHNJaUl6ZZUuE6u9sBRRa5
NvKv/WOzIwitZrDkZDOjX7EtLh9GLfze+8RdyH6hbbgSXdcMA2HxrqImMruJ/95n
Y0vUQZZhSJ6TdjFvkKiU/yMelt65MIP8CDHBgf/0NnZsokVBBNdMbg3v6DmhWC66
QBoVZYoyYMAO2c9BPvmpUdL9i52Q5x0h+fz2egzC7RrwrGd4TbKY5Kyoir3Jm2/S
Kukpxo/VKPG53JVOw/AO10WEzLiLK0cFF6aJsNRRNAfQZkWBgC66XLHcmBkgVYD5
B58ZDneWSHuzAvZ2493U/bLd/2NdpVce5Kdg/2nThkQ4m+6wG6peSyA6U014Db5I
ro468tALTASCAD/KtGUK
=rqFG
-END PGP SIGNATURE-

Changes since libreoffice-4.1.0.0.beta1:
Petr Mladek (1):
  Version 4.1.0.0.beta1, tag libreoffice-4.1.0.0.beta1-buildfix1

---
 0 files changed
---
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Changes to 'refs/tags/libreoffice-4.1.0.0.beta1-buildfix1'

2013-05-29 Thread Petr Mladek
Tag 'libreoffice-4.1.0.0.beta1-buildfix1' created by Petr Mladek 
pmla...@suse.cz at 2013-05-29 13:27 -0700

Tag libreoffice-4.1.0.0.beta1-buildfix1
-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.9 (GNU/Linux)

iQIcBAABAgAGBQJRpfQhAAoJEPQ0oe+v7q6jWjYQANGKvrlQ2aG5MOEMvLOjW4kL
62NK3u/L0hIBafi6JicXLVTC/LBJIfRhCJrNLqP3hTG2p4jPSK1XcGESFeRdtBLz
i+CBJtHjiOmwfG9u458Edfbx4MpILcSewsI/OHEyirQk3VvlH1lYXuKuOiyFw5sa
9doIjuzYMUcWHgzTAgLj1Fj++rCIJM2cz3U6qrz/IxOJgHSGBoQjk3VKBtqEk6Hb
+KzLNAR9aZ7bFJ214AsQ6BSxmK6vahZ2hbLb+W4v8DKujMgdB1epzHX9gn310pNB
xBDl8hkTYbrcTZLpwJtYhZG4+PnnEhsH44ME6reFowd8ksDfUPt8aWCTPwF1lHib
NcwYg3eW2Jqsi9wfvpY+kGxbERgJ5gl5KMlEtrjHNXc1zmw8Ooj1ik1BJlLRzK25
NBNTjdjh8FZCYgXV/Z6VUs2t2JUWQefIyARNwt8d/UGi9kW9d7otfSWX2gsFjnod
v45Tkt7ibzeWe7QRwiSandRUB1GeHN+SsmdzBaTYSOGVJmrIC/Wt1syQ/SBzgIuA
/hJKnVwvEFpX9YclIjzY3IvCnoshGlxA5qQtnfscb/j+ZBeO7w4bTaIZ990kZTff
7by0oY3KUn3w/rpvLR4LIKcJldyDGhbDZkcxHCSJBrY4NURnfI5vqCuEPVZBcRMi
R+rVFS13XnA7dmMvBM22
=9iEc
-END PGP SIGNATURE-

Changes since libreoffice-4.1.0.0.beta1-1:
---
 0 files changed
---
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: [ANNOUNCE] libreoffice-4.1.0.0.beta1 tag created

2013-05-29 Thread Petr Mladek
Petr Mladek píše v St 22. 05. 2013 v 17:46 +0200:
 Hi,
 
 there have been created the libreoffice-4.1.0.0.beta1 tag. The
 corresponding official builds will be available within next few days.

Just for record. We needed one fix to finish the beta1 build on Windows:
http://cgit.freedesktop.org/libreoffice/core/commit/?id=3b0d032ade4d17c64a396ebe3040fb263d7bc927

I have created the tag libreoffice-4.1.0.0.beta1-buildfix1. It includes
this single extra fix on top of the original libreoffice-4.1.0.0.beta1
tag.

I will not upload new source tarballs. They are used by Linux
distributions and they do not need this fix. Note that the official
Linux and Mac builds were done without this extra fix as well.

Best Regards,
Petr

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: [GSOC Introduction]Slide Layout Extendibility

2013-05-29 Thread Vishv Brahmbhatt
Hi Thorsten,
Thanks for the code pointers.Currently,I am getting my LO build to the
latest version.I will stay connected on IRC for further queries.

Regards,
Vishv

On Tue, May 28, 2013 at 4:15 PM, Thorsten Behrens 
t...@documentfoundation.org wrote:

 Vishv Brahmbhatt wrote:
  I am very much exited to hear that I have been selected as one of
  the student to work on LibreOffice for GSOC-2013 summer!
 
 Hi Vishv,

 a very warm welcome also from our side - truly happy to have you
 hacking on Impress over the summer! :)

  I have gone through the guidelines of LibreOffice Community for
  GSOC. I am eager to dive into the code early.I am not habituate in
  writing Blogs,but I'll soon start blogging about my progress on the
  project and update the mailing-list with my weekly-report.
 
 Right, getting into the habit of regular public updates early would be
 good, and with a blog, you can build a readership at the same time. :)

 So the next steps are, making yourself comfortable with a recent
 master build, get sd with debug symbols, and start wrapping your head
 around how this is currently implemented. Code to read / place to
 stick a breakpoint into and single-stepping is:

  sd/source/core/sdpage.cxx:AsCalcAutoLayoutRectangles()

 Happy hacking,

 -- Thorsten

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] dictionaries.git: Changes to 'refs/tags/libreoffice-4.1.0.0.alpha1-buildfix2'

2013-05-29 Thread Petr Mladek
Tag 'libreoffice-4.1.0.0.alpha1-buildfix2' created by Petr Mladek 
pmla...@suse.cz at 2013-05-29 13:51 -0700

Tag libreoffice-4.1.0.0.alpha1-buildfix2
-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.9 (GNU/Linux)

iQIcBAABAgAGBQJRpfneAAoJEPQ0oe+v7q6jEN0P/AwrMF3T/P76mEO+nGSNnoXs
ww4lWzYy0K8T4UNnU2tWvx/UwM7uGJCtM/1hMDHxrKgVWbMZU5SeQGN8zzngyKVq
YO48VoTLvELTyX+iXnG5qIaz+l6sUBl3s4cO34YKcU8sm7Av8wg3uxge5kWipr+N
i6OYsf51qk5ZfAPK68h5RfC7XaUFutlMU+6C+Bi/JcGZmWVQ1j3s/xlF+yK6mDjy
SQ7J/96k6zSMy+MtFio8HxYz/E1DETOvHFk66q4Hl+2RAgc9Ws1uf1Pwwo9nE9MI
Mle4ngNfqIB9cf+oFP+LLZIWx06h11SVT58xDahkjDWzA+MX/C6f7I7T+LnpALKy
bRGOpkDAqtNFJQ76/9E//ZVgPRNdvRNbnBk5f4P1uE0d88ue2a56my27TlTf7OFi
5GtyMcUZ36MQOkrP8pzn7FQDOMGxSglrpPhBB3yaN6m0jG1EZ+iccGaCrHazVtTE
5qC+uHEdEO/SzEpNNccKrPOcShlg4CC0c10pMzgYa/C9pz5S5SY4z4Y+xqcTwn3I
Mk027aLXc3uC9N/icI2u91L24Pm+kRIIkITsJqYnnAULWZmmIsRCe3G48sL52pFn
0nJG3RSCWGQH4WyoV38WuPQZOplOxLGwjElzeiqRt85wseWxvdKI60VUPxugvEl5
PwwtaEOZea5FOHoLp06C
=1vyO
-END PGP SIGNATURE-

Changes since libreoffice-4.1.0.0.alpha1-buildfix1:
Petr Mladek (1):
  Version 4.1.0.0.alpha1, tag libreoffice-4.1.0.0.alpha1-buildfix2

---
 0 files changed
---
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] help.git: Changes to 'refs/tags/libreoffice-4.1.0.0.alpha1-buildfix2'

2013-05-29 Thread Petr Mladek
Tag 'libreoffice-4.1.0.0.alpha1-buildfix2' created by Petr Mladek 
pmla...@suse.cz at 2013-05-29 13:51 -0700

Tag libreoffice-4.1.0.0.alpha1-buildfix2
-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.9 (GNU/Linux)

iQIcBAABAgAGBQJRpfneAAoJEPQ0oe+v7q6jdrsP/ifa2nZpCKybujAovpve403o
w/9Hs+dfniO1g5HRCgMd/MQmDEcOK/fN7s75XrBdDS1PCtReF4Yi3260za+UVFsw
iPcylPA905tFgugOY5gIPMo94vpA+4UaKHKDujzd6N2HN58qn/1FvRDm13G+ovaI
eyqKtA6FpgXK8/9ZJvozY1Y6XdDIBSMI6UXV9hBcC2/cZkZ5g7PY9NtTaElsS6sG
UFSEge+Uaje1f/mqw9fCHPVCXGxhsKFUbcJtBE9jB4DNRX4QEwGcYftyWVwdJgAc
8PBqe9GATYswtMqQAqaEKWqAkeZnG3HIu5+JxUnhiwd3fBvkwWCalT8YetVj3IRk
YAczBHhcsuKqHUbwUzQ1d/F+G5pHMul8GQ5BagJq/x/ynso0ixDsXu+f3LKCpjvI
rTD6Y2JIVjgtU0anLe3IelWSeSUPwTM9WjspbCedso5+mhcQxHWSqbBvbLpd4QY5
38eh2dQGW4wSAxxmz/sf2nFfRuB1aOO9tVnJ+MWCZhC7qDkmPd/QY2XninosQGrV
ODBRGHmNwFgIFxu3BvAF+VX8L1QRWQj0na6ZClaLg2V+DCfr8rXoTi4WVbtQC9JA
rcWyBYY2/uI7eWm1s4eH3k2c3YyFf5z7MMmt3ORX26Mm0oVC0vNiAApx97JyAqOI
66MfHJQbO9REZrYdxqr+
=lEaB
-END PGP SIGNATURE-

Changes since libreoffice-4.1.0.0.alpha1-buildfix1:
Petr Mladek (1):
  Version 4.1.0.0.alpha1, tag libreoffice-4.1.0.0.alpha1-buildfix2

---
 0 files changed
---
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] translations.git: Changes to 'refs/tags/libreoffice-4.1.0.0.alpha1-buildfix2'

2013-05-29 Thread Petr Mladek
Tag 'libreoffice-4.1.0.0.alpha1-buildfix2' created by Petr Mladek 
pmla...@suse.cz at 2013-05-29 13:51 -0700

Tag libreoffice-4.1.0.0.alpha1-buildfix2
-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.9 (GNU/Linux)

iQIcBAABAgAGBQJRpfneAAoJEPQ0oe+v7q6jblwP/jkdW40d8J6JUgutyrZ84S7B
x/B2DSEEepA8QVbeCCkRTrxlCkHPzgJUtvhtY58dXainlnTQYYJrMeemknK/WV/P
ec0eYCR8c1Vq2yP8UeWjhWbXNrKRIV19wtRT46iy7ZTNcuDifb+o47B9GO7SgtzH
Wkcw+eJqQxdbbDa3apHOWjWdzrJSIBmBJqR6YvL1XPViGbwuAU7AZYShjtkKLdP+
Tv6vqiOAvxcDKUDA/HaWp4bWVVV3ZoddsAQLHLUTxJyUe0FZkZXfmAPTOmI8fjJj
v1T3D/LK18AOSXh3q2iU/YOfoupU321UPm+Dk67tcIeekKeAHHbcR0wLA3u1EYU2
q/qotzT7WoM6tHQM+TOKerpsFV2FqyFdxSIwyQQJ0pAXGgjR9apkjv00vEH0vbkQ
oEpydn7k11hD6b5D39eMB3+9t2/bwe2nmGk7SUk9+pZ97qQLsqLgspbvg2T+FxRh
NnXWGmXGfKk88Tqwd3Z7gBHutZoK0Lw78tdPg30mkbiZqdFgbf2lCXCocn6NuzgH
scV2kqXcIs+zuv18j7/Q/p3UyAFLBK26CDZbab1IAY+/xXAq4PzrUSWPng+qvHS3
wP/HLWvpX1/P7D40co0laxrBMN9wfe7FvYbmDj9N2WR5Z0VFpuWyXHC0B1UAY0S0
GQa56rMtXzVjHue86tjd
=M6ax
-END PGP SIGNATURE-

Changes since libreoffice-4.1.0.0.alpha1-buildfix1-1:
---
 0 files changed
---
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Changes to 'refs/tags/libreoffice-4.1.0.0.alpha1-buildfix2'

2013-05-29 Thread Petr Mladek
Tag 'libreoffice-4.1.0.0.alpha1-buildfix2' created by Petr Mladek 
pmla...@suse.cz at 2013-05-29 13:51 -0700

Tag libreoffice-4.1.0.0.alpha1-buildfix2
-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.9 (GNU/Linux)

iQIcBAABAgAGBQJRpfneAAoJEPQ0oe+v7q6jkhkP/2rGyRE61q1RLUpSZhB8cipe
xMynX+EjkhziVeypmI/+yKD550+uPozKTsT8ZJ1l3zOaMqqgAWKWj24EDNj8V5cN
skthMXSTTDs74h9VCptQdTAB1NSTRHqwOzURy9WuHPWLY3z92gpFZDAOe+fqokoW
dq9/Kn+eU5dRffvO148yQ+noPIqWUDUlcDhTepzEpqgYBP1xAT3BiTJzGB65Ls7u
5u4CHGisZpIXPlr/oDfabn5Hic2HaYfDb4M81PT2IOWK+aAdvxjqBnd8RklMbQV4
4NbH+ESteECU5y1gyTK8eICfCcMG/qdbZCDgmqIRJk4ZLvsYBLMN3mHLynNo3BAC
eVd4TlWVIq2K0sf9XZuZ5glfjs1CtGBzTwvwRB3AP7HY2llQso3fn6KBBTVm6Nye
pyC9hV9MAZfoZ11eQ/taWUVakccWkzEkRqxBhsBjg38rtv6fZfo00GqVdjXlT8s2
lWxs7vKqgXo9MgDcTBAoUS0ZYcJ7R3peDDRa1Qh000t8tsk0dJxBNgDu6f3E8ZuJ
aRKp1vsdNGFGWeFCkmYFLqq8PFPUFzd94zf5GwVfFj2wM4dY4pvOhaCH/sJ08x79
BU9QG5QkCaxMdLUtrfoaEqgJgyURWesYVq5fXFdTUYqyz8rQHGS6zu9Ezr5148Hu
G0Sesm+9iroyB6B239AD
=lbSZ
-END PGP SIGNATURE-

Changes since libreoffice-4.1.0.0.alpha1-buildfix1-8:
---
 0 files changed
---
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: include/com include/osl include/rtl odk/pack offapi/com

2013-05-29 Thread Stephan Bergmann
 include/com/sun/star/uno/Any.h |7 +++
 include/osl/socket_decl.hxx|3 ++-
 include/rtl/strbuf.hxx |2 ++
 include/rtl/string.hxx |   10 +++---
 include/rtl/ustring.hxx|4 +++-
 odk/pack/gendocu/Doxyfile  |4 ++--
 offapi/com/sun/star/awt/DialogProvider.idl |2 +-
 7 files changed, 20 insertions(+), 12 deletions(-)

New commits:
commit 8c3657658a70523005c0dbb19a691aa025da039a
Author: Stephan Bergmann sberg...@redhat.com
Date:   Wed May 29 15:01:18 2013 +0200

Tweak comments

(Preventing documentation of macros via @cond ... @endcond is apparently at
least broken in Doxygen 1.8.3 and working in Doxygen 1.8.4.)

Change-Id: I2ee582119dba2c3d27db5298786d3076921af46d

diff --git a/include/com/sun/star/uno/Any.h b/include/com/sun/star/uno/Any.h
index f1d03e8..b4ead89 100644
--- a/include/com/sun/star/uno/Any.h
+++ b/include/com/sun/star/uno/Any.h
@@ -163,12 +163,11 @@ public:
 sal_Int32 myVal = myAny.getsal_Int32();
 /pre
 Widening conversion without data loss is taken into account.
-Throws a
-type scope=com::sun::star::unoRuntimeException/type
-if the specified type cannot be provided.
+Throws a com::sun::star::uno::RuntimeException if the specified type
+cannot be provided.
 
 @return value of specified type
-@exception type scope=com::sun::star::unoRuntimeException/type
+@exception com::sun::star::uno::RuntimeException
in case the specified type cannot be provided
 */
 template typename T
diff --git a/include/osl/socket_decl.hxx b/include/osl/socket_decl.hxx
index f51cca1..2bcbd6c 100644
--- a/include/osl/socket_decl.hxx
+++ b/include/osl/socket_decl.hxx
@@ -48,9 +48,10 @@ namespace osl
 
 /** The SocketAddr takes over the responsibility of the handle ( which 
means,
 that the handle gets destructed by the destructor of this 
reference)
+@param Addr a handle
 @param nocopy use SAL_NO_COPY
  */
-inline SocketAddr(const oslSocketAddr , __osl_socket_NoCopy nocopy );
+inline SocketAddr(const oslSocketAddr Addr, __osl_socket_NoCopy nocopy 
);
 
 /** Copyconstructs the oslSocketAddr handle.
  */
diff --git a/include/rtl/strbuf.hxx b/include/rtl/strbuf.hxx
index 9ebd495..d04f828 100644
--- a/include/rtl/strbuf.hxx
+++ b/include/rtl/strbuf.hxx
@@ -47,6 +47,7 @@
 namespace rtl
 {
 
+/// @cond INTERNAL
 #ifdef RTL_STRING_UNITTEST
 #undef rtl
 // helper macro to make functions appear more readable
@@ -54,6 +55,7 @@ namespace rtl
 #else
 #define RTL_STRING_CONST_FUNCTION
 #endif
+/// @endcond
 
 /** A string buffer implements a mutable sequence of characters.
 p
diff --git a/include/rtl/string.hxx b/include/rtl/string.hxx
index 6cb69c647..9432b74 100644
--- a/include/rtl/string.hxx
+++ b/include/rtl/string.hxx
@@ -53,6 +53,7 @@
 namespace rtl
 {
 
+/// @cond INTERNAL
 #ifdef RTL_STRING_UNITTEST
 #undef rtl
 // helper macro to make functions appear more readable
@@ -60,6 +61,7 @@ namespace rtl
 #else
 #define RTL_STRING_CONST_FUNCTION
 #endif
+/// @endcond
 
 /* === */
 
@@ -1638,8 +1640,10 @@ inline std::basic_ostreamcharT, traits  operator (
 return stream  OString( concat );
 }
 #else
-// non-RTL_FAST_CODE needs this to compile
+// non-RTL_FAST_STRING needs this to compile
+/// @cond INTERNAL
 typedef OString OStringLiteral;
+/// @endcond
 #endif
 
 
@@ -1663,14 +1667,14 @@ struct OStringHash
 { return (size_t)rString.hashCode(); }
 };
 
-/** Equality functor for classic c-strings (i.e. null-terminated char* 
strings) */
+/** Equality functor for classic c-strings (i.e., null-terminated char* 
strings). */
 struct CStringEqual
 {
 bool operator()( const char* p1, const char* p2) const
 { return rtl_str_compare(p1, p2) == 0; }
 };
 
-/** Hashing functor for classic c-strings (i.e. null-terminated char* strings) 
*/
+/** Hashing functor for classic c-strings (i.e., null-terminated char* 
strings). */
 struct CStringHash
 {
 size_t operator()(const char* p) const
diff --git a/include/rtl/ustring.hxx b/include/rtl/ustring.hxx
index f776da3..112486d 100644
--- a/include/rtl/ustring.hxx
+++ b/include/rtl/ustring.hxx
@@ -2287,8 +2287,10 @@ inline std::basic_ostreamcharT, traits  operator (
 return stream  OUString( concat );
 }
 #else
-// non-RTL_FAST_CODE needs this to compile
+// non-RTL_FAST_STRING needs this to compile
+/// @cond INTERNAL
 typedef OUString OUStringLiteral;
+/// @endcond
 #endif
 
 /** A helper to use OUStrings with hash maps.
diff --git a/odk/pack/gendocu/Doxyfile b/odk/pack/gendocu/Doxyfile
index 75460486..26c8893 100644
--- a/odk/pack/gendocu/Doxyfile
+++ b/odk/pack/gendocu/Doxyfile
@@ -34,6 +34,6 @@ MACRO_EXPANSION = YES
 EXPAND_ONLY_PREDEF = YES
 

Re: [ANNOUNCE] libreoffice-4.1.0.0.alpha1 tag created

2013-05-29 Thread Petr Mladek
Petr Mladek píše v Po 06. 05. 2013 v 18:06 +0200:
 I have cherry-picked these two commits and crated the tag 
 
   libreoffice-4.1.0.0.alpha1-buildfix1.

Just for record. There were used more commits to finish the alpha1
builds:

+ Windows:
   + build fix in 'my' translation
http://cgit.freedesktop.org/libreoffice/translations/commit/?id=89f39670704a78fd1da6c8ebe43816b6628e2a14

+ MAC:
   + Abstract over PACKAGEDIRNAME as it is MacOS rather than program on
 Mac OS X, see
http://cgit.freedesktop.org/libreoffice/core/commit/?id=51a32bbd323bf513310fb4d82d53e52b8b247f57
   + fix the internal structure of MacOS X dmg
http://cgit.freedesktop.org/libreoffice/core/commit/?id=c8ce9f6d498ea0d9f09d96fac63a4a2a1c619edc
   + codesign --timestamp=none is not supported on 10.6
http://cgit.freedesktop.org/libreoffice/core/commit/?id=cca26b7772ab341605f85f06dd08b403db0ecfb0
   + use MD5SUM env variable adn not md5sum directly
http://cgit.freedesktop.org/libreoffice/core/commit/?id=6774d596c1efb69c091ccc93d3ad94abe33771d3


+ Linux:
+ LibreOfficeLinux.conf: use system zlib
http://cgit.freedesktop.org/libreoffice/core/commit/?id=0b17e96ba9cb8a39d87fc260a18a2303cfca9617
+ configure: substantially de-bong libpng handling
http://cgit.freedesktop.org/libreoffice/core/commit/?id=846581d031874d72ae33e4bcbaf95217745775db
+ configure: force ENABLE_QUICKSTART_LIBPNG to None with
  --enable-headless
http://cgit.freedesktop.org/libreoffice/core/commit/?id=8306162df74a472226b716cfcc43a0cd9e163b71
+ no FT_Face_GetCharVariantIndex on RHEL-5, dlsym it
http://cgit.freedesktop.org/libreoffice/core/commit/?id=2673f2fb28f4bd0484ff579bca4e06f1d86d4c62


I put them all into the libreoffice-4.1.0.0.alpha1-buildfix2 tag.

I do not plan to provide updated source tarballs. Each platform used its
own set of hotfixes. It was just a test build for the builders and small
group of testers. It did the job because beta1 builds was easier and
better. The alpha1 stuff is not longer important :-)

Best Regards,
Petr

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] core.git: sc/qa

2013-05-29 Thread Noel Power
 sc/qa/extras/testdocuments/Ranges-3.xls |binary
 1 file changed

New commits:
commit d4116a4f66ce20b492c143606b67d5eb9ee2fc09
Author: Noel Power noel.po...@suse.com
Date:   Wed May 29 14:29:45 2013 +0100

add some tests for worksheet_change ( when excited by various range changes 
)

Change-Id: I0399a9557170de7d45f0fffbcb2c00a8f084010b

diff --git a/sc/qa/extras/testdocuments/Ranges-3.xls 
b/sc/qa/extras/testdocuments/Ranges-3.xls
index c23b70a..f96620f 100644
Binary files a/sc/qa/extras/testdocuments/Ranges-3.xls and 
b/sc/qa/extras/testdocuments/Ranges-3.xls differ
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Dropping support for Visual Studio 2008 in master branch

2013-05-29 Thread Tor Lillqvist
Unless somebody can give a *really* good reason, I plan to explicitly drop
support for building the master branch with MSVS 2008 soon.

It might be that this support was already unintentionally broken earlier
today or yesterday, and it would be easiest to just follow up and do it
completely.

Note that already the TDF 4.0 build has been built with MSVS 2010.

--tml
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] core.git: include/svx include/vcl svx/AllLangResTarget_svx.mk svx/source svx/uiconfig svx/UIConfig_svx.mk sw/source vcl/source

2013-05-29 Thread Caolán McNamara
 include/svx/dialogs.hrc   |3 
 include/svx/hdft.hxx  |   24 ++-
 include/vcl/layout.hxx|   17 +
 include/vcl/vclenum.hxx   |4 +
 svx/AllLangResTarget_svx.mk   |1 
 svx/UIConfig_svx.mk   |2 
 svx/source/dialog/hdft.cxx|9 ++
 svx/source/dialog/hdft.src|   29 -
 svx/uiconfig/ui/deletefooterdialog.ui |   34 ++
 svx/uiconfig/ui/deleteheaderdialog.ui |   34 ++
 sw/source/ui/wrtsh/wrtsh1.cxx |   11 ++-
 vcl/source/window/layout.cxx  |  108 --
 12 files changed, 217 insertions(+), 59 deletions(-)

New commits:
commit b2d08d759ee755cb5722553e01fb6d007ac9ffbe
Author: Caolán McNamara caol...@redhat.com
Date:   Tue May 28 11:47:28 2013 +0100

convert more queryboxes to new message box replacement

Change-Id: Ice41a86e17d5cbee784e239224b640ea4378ac36

diff --git a/include/svx/dialogs.hrc b/include/svx/dialogs.hrc
index e714c39..24279aa 100644
--- a/include/svx/dialogs.hrc
+++ b/include/svx/dialogs.hrc
@@ -155,9 +155,6 @@
 
 //-
 
-// ResId fuer die PageDialog
-#define RID_SVXQBX_DELETE_HEADFOOT  (RID_SVX_START +  28)
-
 // ResId's fuer Dialoge aus StarDraw
 #define RID_SVXSW_FRAMEPOSITIONS(RID_SVX_START + 289)
 
diff --git a/include/svx/hdft.hxx b/include/svx/hdft.hxx
index 3af1316a..4a40479 100644
--- a/include/svx/hdft.hxx
+++ b/include/svx/hdft.hxx
@@ -22,10 +22,10 @@
 #include sfx2/tabdlg.hxx
 
 #include vcl/fixed.hxx
-
 #include vcl/field.hxx
-
 #include vcl/group.hxx
+#include vcl/layout.hxx
+
 #include svx/pagectrl.hxx
 #include svx/svxdllapi.h
 
@@ -120,6 +120,26 @@ private:
 SVX_DLLPRIVATE SvxFooterPage(   Window* pParent, const SfxItemSet rSet );
 };
 
+class SVX_DLLPUBLIC DeleteHeaderDialog : public MessageDialog
+{
+public:
+DeleteHeaderDialog(Window *pParent)
+: MessageDialog(pParent, DeleteHeaderDialog,
+svx/ui/deleteheaderdialog.ui)
+{
+}
+};
+
+class SVX_DLLPUBLIC DeleteFooterDialog : public MessageDialog
+{
+public:
+DeleteFooterDialog(Window *pParent)
+: MessageDialog(pParent, DeleteFooterDialog,
+svx/ui/deletefooterdialog.ui)
+{
+}
+};
+
 #endif
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/include/vcl/layout.hxx b/include/vcl/layout.hxx
index 5237c72..2b8fa8a 100644
--- a/include/vcl/layout.hxx
+++ b/include/vcl/layout.hxx
@@ -647,18 +647,33 @@ public:
 bool set_property(const OString rKey, const OString rValue);
 };
 
+enum VclButtonsType
+{
+VCL_BUTTONS_NONE,
+VCL_BUTTONS_OK,
+VCL_BUTTONS_CLOSE,
+VCL_BUTTONS_CANCEL,
+VCL_BUTTONS_YES_NO,
+VCL_BUTTONS_OK_CANCEL
+};
+
 class VCL_DLLPUBLIC MessageDialog : public Dialog
 {
 private:
+VclButtonsType m_eType;
 VclGrid* m_pGrid;
 FixedImage* m_pImage;
 VclMultiLineEdit* m_pPrimaryMessage;
 VclMultiLineEdit* m_pSecondaryMessage;
+std::vectorPushButton* m_aOwnedButtons;
+std::mapconst Window*, short m_aResponses;
 OUString m_sPrimaryString;
 OUString m_sSecondaryString;
 DECL_DLLPRIVATE_LINK(ButtonHdl, Button *);
-void setButtonHandlers();
+void setButtonHandlers(VclButtonBox *pButtonBox);
+short get_response(const Window *pWindow) const;
 public:
+
 MessageDialog(Window* pParent, WinBits nStyle);
 MessageDialog(Window* pParent, const OString rID, const OUString 
rUIXMLDescription);
 virtual bool set_property(const OString rKey, const OString rValue);
diff --git a/include/vcl/vclenum.hxx b/include/vcl/vclenum.hxx
index d37b11b..f0ea2fc 100644
--- a/include/vcl/vclenum.hxx
+++ b/include/vcl/vclenum.hxx
@@ -143,6 +143,10 @@ enum VclResponseType
 RET_NO  = 3,
 RET_RETRY   = 4,
 RET_IGNORE  = 5,
+RET_ACCEPT  = 6,
+RET_CLOSE   = 7,
+RET_APPLY   = 8,
+RET_NONE= 9,
 RET_HELP= 10
 };
 
diff --git a/svx/AllLangResTarget_svx.mk b/svx/AllLangResTarget_svx.mk
index 9bc8b0b..11f0418 100644
--- a/svx/AllLangResTarget_svx.mk
+++ b/svx/AllLangResTarget_svx.mk
@@ -45,7 +45,6 @@ $(eval $(call gb_SrsTarget_add_files,svx/res,\
 svx/source/dialog/docrecovery.src \
 svx/source/dialog/fontwork.src \
 svx/source/dialog/frmsel.src \
-svx/source/dialog/hdft.src \
 svx/source/dialog/imapdlg.src \
 svx/source/dialog/langbox.src \
 svx/source/dialog/language.src \
diff --git a/svx/UIConfig_svx.mk b/svx/UIConfig_svx.mk
index 5b1e63d..75d0e67 100644
--- a/svx/UIConfig_svx.mk
+++ b/svx/UIConfig_svx.mk
@@ -14,6 +14,8 @@ $(eval $(call gb_UIConfig_add_uifiles,svx,\
svx/uiconfig/ui/asianphoneticguidedialog \
svx/uiconfig/ui/chineseconversiondialog \
svx/uiconfig/ui/compressgraphicdialog \
+   svx/uiconfig/ui/deleteheaderdialog \
+   svx/uiconfig/ui/deletefooterdialog \
svx/uiconfig/ui/headfootformatpage 

[PATCH] Improved text in GUI for Macro recording: it is limited

2013-05-29 Thread Cor Nouws (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/4087

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/87/4087/1

Improved text in GUI for Macro recording: it is limited

Change-Id: Ib7243496a4fa0f563ae3bbba4c2c67b62e19f83c
---
M cui/uiconfig/ui/optadvancedpage.ui
1 file changed, 1 insertion(+), 1 deletion(-)



diff --git a/cui/uiconfig/ui/optadvancedpage.ui 
b/cui/uiconfig/ui/optadvancedpage.ui
index 1c54497..4b62aa7 100644
--- a/cui/uiconfig/ui/optadvancedpage.ui
+++ b/cui/uiconfig/ui/optadvancedpage.ui
@@ -358,7 +358,7 @@
 /child
 child
   object class=GtkCheckButton id=macrorecording
-property name=label translatable=yesEnable macro 
recording/property
+property name=label translatable=yesEnable macro 
recording (limited)/property
 property name=visibleTrue/property
 property name=can_focusTrue/property
 property name=receives_defaultFalse/property

-- 
To view, visit https://gerrit.libreoffice.org/4087
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ib7243496a4fa0f563ae3bbba4c2c67b62e19f83c
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Cor Nouws oo...@nouenoff.nl

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 54157] LibreOffice 4.0 most annoying bugs

2013-05-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54157

Regina Henschel rb.hensc...@t-online.de changed:

   What|Removed |Added

 Depends on||62938

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 54157] LibreOffice 4.0 most annoying bugs

2013-05-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54157

--- Comment #156 from Regina Henschel rb.hensc...@t-online.de ---
I nominate bug 62938. Rows to repeat are written correctly, but they are wrong
set, when open the document. You can see from the lots of duplicates, that many
users are affected by this bug.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 54157] LibreOffice 4.0 most annoying bugs

2013-05-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54157

Jorendc joren.libreoff...@telenet.be changed:

   What|Removed |Added

  Attachment #78547|0   |1
is obsolete||

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] core.git: 5 commits - include/oox oox/source sw/qa writerfilter/source

2013-05-29 Thread Miklos Vajna
 include/oox/vml/vmlformatting.hxx |   12 
 include/oox/vml/vmlshape.hxx  |1 
 oox/source/vml/vmlformatting.cxx  |   55 ++
 oox/source/vml/vmlshape.cxx   |   18 ++-
 oox/source/vml/vmlshapecontext.cxx|3 +
 sw/qa/extras/ooxmlimport/data/watermark.docx  |binary
 sw/qa/extras/ooxmlimport/ooxmlimport.cxx  |   26 ++
 writerfilter/source/dmapper/DomainMapper_Impl.cxx |5 +-
 8 files changed, 117 insertions(+), 3 deletions(-)

New commits:
commit 8931c8f3c58afe35b5b7c98e136825aff04291e3
Author: Miklos Vajna vmik...@suse.cz
Date:   Wed May 29 15:22:14 2013 +0200

bnc#817956 v:textpath VML import testcase

Change-Id: I4c4c3a84e8d9d048262e6570a8bed0106e8d184f

diff --git a/sw/qa/extras/ooxmlimport/data/watermark.docx 
b/sw/qa/extras/ooxmlimport/data/watermark.docx
new file mode 100755
index 000..8e279e3
Binary files /dev/null and b/sw/qa/extras/ooxmlimport/data/watermark.docx differ
diff --git a/sw/qa/extras/ooxmlimport/ooxmlimport.cxx 
b/sw/qa/extras/ooxmlimport/ooxmlimport.cxx
index 3a765b7..36fc883 100644
--- a/sw/qa/extras/ooxmlimport/ooxmlimport.cxx
+++ b/sw/qa/extras/ooxmlimport/ooxmlimport.cxx
@@ -114,6 +114,7 @@ public:
 void testN779630();
 void testIndentation();
 void testPageBackground();
+void testWatermark();
 
 CPPUNIT_TEST_SUITE(Test);
 #if !defined(MACOSX)  !defined(WNT)
@@ -196,6 +197,7 @@ void Test::run()
 {n779630.docx, Test::testN779630},
 {indentation.docx, Test::testIndentation},
 {page-background.docx, Test::testPageBackground},
+{watermark.docx, Test::testWatermark},
 };
 header();
 for (unsigned int i = 0; i  SAL_N_ELEMENTS(aMethods); ++i)
@@ -1392,6 +1394,30 @@ void Test::testPageBackground()
 CPPUNIT_ASSERT_EQUAL(sal_Int32(0x92D050), 
getPropertysal_Int32(xPageStyle, BackColor));
 }
 
+void Test::testWatermark()
+{
+uno::Referencedrawing::XDrawPageSupplier xDrawPageSupplier(mxComponent, 
uno::UNO_QUERY);
+uno::Referencecontainer::XIndexAccess 
xDraws(xDrawPageSupplier-getDrawPage(), uno::UNO_QUERY);
+uno::Referencetext::XTextRange xShape(xDraws-getByIndex(0), 
uno::UNO_QUERY);
+// 1st problem: last character was missing
+CPPUNIT_ASSERT_EQUAL(OUString(SAMPLE), xShape-getString());
+
+uno::Referencebeans::XPropertySet xPropertySet(xShape, uno::UNO_QUERY);
+uno::Sequencebeans::PropertyValue aProps = getProperty 
uno::Sequencebeans::PropertyValue (xShape, CustomShapeGeometry);
+bool bFound = false;
+for (int i = 0; i  aProps.getLength(); ++i)
+if (aProps[i].Name == TextPath)
+bFound = true;
+// 2nd problem: v:textpath wasn't imported
+CPPUNIT_ASSERT_EQUAL(true, bFound);
+
+// 3rd problem: rotation angle was 315, not 45.
+CPPUNIT_ASSERT_EQUAL(sal_Int32(45 * 100), getPropertysal_Int32(xShape, 
RotateAngle));
+
+// 4th problem: mso-position-vertical-relative:margin was ignored, 
VertOrientRelation was text::RelOrientation::FRAME.
+CPPUNIT_ASSERT_EQUAL(text::RelOrientation::PAGE_PRINT_AREA, 
getPropertysal_Int16(xShape, VertOrientRelation));
+}
+
 CPPUNIT_TEST_SUITE_REGISTRATION(Test);
 
 CPPUNIT_PLUGIN_IMPLEMENT();
commit f2720b87093968670e3fb47d24d4952f1631a654
Author: Miklos Vajna vmik...@suse.cz
Date:   Wed May 29 14:47:54 2013 +0200

bnc#817956 VML import of mso-position-vertical-relative:margin

Change-Id: I86464c44022ef8c8a8037d4228bb2a6409fc77af

diff --git a/oox/source/vml/vmlshape.cxx b/oox/source/vml/vmlshape.cxx
index b4b3e9e..1ec5c24 100644
--- a/oox/source/vml/vmlshape.cxx
+++ b/oox/source/vml/vmlshape.cxx
@@ -457,6 +457,10 @@ void lcl_SetAnchorType(PropertySet rPropSet, const 
ShapeTypeModel rTypeModel)
 {
 rPropSet.setProperty(PROP_VertOrientRelation, 
text::RelOrientation::PAGE_FRAME);
 }
+else if ( rTypeModel.maPositionVerticalRelative == margin )
+{
+rPropSet.setProperty(PROP_VertOrientRelation, 
text::RelOrientation::PAGE_PRINT_AREA);
+}
 else
 {
 // Vertical placement relative to margin, because parent style 
must not modify vertical position
commit b2c16f6c1b8bd3c96e0549eb3036c820094a795f
Author: Miklos Vajna vmik...@suse.cz
Date:   Wed May 29 11:17:44 2013 +0200

bnc#817956 fix VML import of rotation

In VML, positive rotation angles are clockwise, we have them as
counter-clockwise. This wasn't noticed earlier, as the n751117.docx
testcase also had flip:x. (For example, rotation with angle 90 + flip:x
is presented as 270 by the UI.)

Fix this, and also mirror the angle when flip:x is present.

Change-Id: I591ec3369a5bdca53f9684006a459d11e37fbc33

diff --git a/oox/source/vml/vmlshape.cxx b/oox/source/vml/vmlshape.cxx
index 8e5e2a9..b4b3e9e 100644
--- a/oox/source/vml/vmlshape.cxx
+++ b/oox/source/vml/vmlshape.cxx
@@ -43,6 +43,7 

[Libreoffice-commits] core.git: Branch 'aoo/trunk' - 5 commits - configure.in editeng/source sfx2/source svx/source xmloff/source

2013-05-29 Thread Armin Le Grand
 configure.in   |   13 +
 editeng/source/outliner/outlvw.cxx |2 +-
 sfx2/source/sidebar/Panel.cxx  |7 ---
 svx/source/engine3d/float3d.cxx|1 +
 xmloff/source/draw/ximpcustomshape.cxx |   21 ++---
 5 files changed, 21 insertions(+), 23 deletions(-)

New commits:
commit 924bd9b9227bcd1fb820fb922b3a2e84bcc73f20
Author: Armin Le Grand a...@apache.org
Date:   Wed May 29 13:35:49 2013 +

i122374 added initialisation for initial selection

diff --git a/svx/source/engine3d/float3d.cxx b/svx/source/engine3d/float3d.cxx
index 695317d..c1d7764 100644
--- a/svx/source/engine3d/float3d.cxx
+++ b/svx/source/engine3d/float3d.cxx
@@ -537,6 +537,7 @@ void Svx3DWin::Reset()
 
 // Nichts selektieren, um Fehler beim erstselektieren zu vermeiden
 aCtlLightPreview.GetSvx3DLightControl().SelectLight(0);
+aCtlLightPreview.CheckSelection();
 }
 
 bool Svx3DWin::GetUILightState( ImageButton aBtn ) const
commit 4cc8ffba79ad8cfdb5361dad8fd58f3ba94559b7
Author: Herbert Dürr h...@apache.org
Date:   Wed May 29 13:26:44 2013 +

#i122208# remove configure check for hash_map in system STL

a standard compliant STL does NOT have these obsoleted STL headers

diff --git a/configure.in b/configure.in
index 4f799fa..4365235 100644
--- a/configure.in
+++ b/configure.in
@@ -2916,20 +2916,9 @@ dnl 
===
 dnl system stl sanity tests
 dnl ===
 if test $USE_SYSTEM_STL = YES; then
-   AC_MSG_CHECKING([if hash_map will be in __gnu_cxx namespace])
+   AC_MSG_CHECKING([system stl sanity])
AC_LANG_PUSH([C++])
 
-   AC_TRY_COMPILE([#include ext/hash_map
-using namespace __gnu_cxx;
-],[hash_mapint, int t; return 0;],
-  ac_cv_cxx_have_ext_hash_map=yes, ac_cv_cxx_have_ext_hash_map=no)
-
-   if test $ac_cv_cxx_have_ext_hash_map = no; then
-  AC_MSG_ERROR([Can't find hash_map. Try with --with-stlport])
-   else
-  AC_MSG_RESULT([$ac_cv_cxx_have_ext_hash_map])
-   fi
-
if test $HAVE_GCC_VISIBILITY_FEATURE = TRUE; then
   AC_MSG_CHECKING([if STL headers are visibility safe])
   AC_EGREP_HEADER(visibility push, string, stlvisok=yes, stlvisok=no)
commit 3464c3499e708370359a9c0864bd4edc76d3a4c0
Author: Andre Fischer a...@apache.org
Date:   Wed May 29 13:19:17 2013 +

122405: Sidebar panels no longer dispose XUIElement's inner objects.

diff --git a/sfx2/source/sidebar/Panel.cxx b/sfx2/source/sidebar/Panel.cxx
index da30757..c0dd60f 100644
--- a/sfx2/source/sidebar/Panel.cxx
+++ b/sfx2/source/sidebar/Panel.cxx
@@ -91,13 +91,6 @@ void Panel::Dispose (void)
 {
 mxPanelComponent = NULL;
 
-if (mxElement.is())
-{
-Referencelang::XComponent xComponent (mxElement-getRealInterface(), 
UNO_QUERY);
-if (xComponent.is())
-xComponent-dispose();
-}
-
 {
 Referencelang::XComponent xComponent (mxElement, UNO_QUERY);
 mxElement = NULL;
commit c9e446d6f79908ed4af06e7940788e91b924b793
Author: Armin Le Grand a...@apache.org
Date:   Wed May 29 13:10:27 2013 +

i121507 Added commata to whitespace list

diff --git a/xmloff/source/draw/ximpcustomshape.cxx 
b/xmloff/source/draw/ximpcustomshape.cxx
index 7855efd..3c65884 100644
--- a/xmloff/source/draw/ximpcustomshape.cxx
+++ b/xmloff/source/draw/ximpcustomshape.cxx
@@ -410,9 +410,24 @@ sal_Bool GetNextParameter( 
com::sun::star::drawing::EnhancedCustomShapeParameter
 }
 }
 if ( bValid )
-{   // skipping white spaces
-while( ( nIndex  rParaString.getLength() )  rParaString[ nIndex ] 
== (sal_Unicode)' ' )
-nIndex++;
+{
+// skipping white spaces and commatas (#121507#)
+const sal_Unicode aSpace(sal_Unicode(' '));
+const sal_Unicode aCommata(sal_Unicode(','));
+
+while(nIndex  rParaString.getLength())
+{
+const sal_Unicode aCandidate(rParaString[nIndex]);
+
+if(aSpace == aCandidate || aCommata == aCandidate)
+{
+nIndex++;
+}
+else
+{
+break;
+}
+}
 }
 return bValid;
 }
commit bf4a58aa2185e1acb98e101625a96547417eba40
Author: Armin Le Grand a...@apache.org
Date:   Wed May 29 12:29:12 2013 +

added missing include

diff --git a/editeng/source/outliner/outlvw.cxx 
b/editeng/source/outliner/outlvw.cxx
index a64ae6f..5fbb2eb 100644
--- a/editeng/source/outliner/outlvw.cxx
+++ b/editeng/source/outliner/outlvw.cxx
@@ -52,7 +52,7 @@
 #include svl/itemset.hxx
 #include svl/eitem.hxx
 #include editeng/editstat.hxx
-
+#include svl/itempool.hxx
 
 // Breite der Randzonen innerhalb derer beim DD gescrollt wird
 #define OL_SCROLL_LRBORDERWIDTHPIX  10
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org

[GSOC 2013] Code completion in the Basic IDE

2013-05-29 Thread Gergő Mocsi
Hello Everyone,
I'm very excited to do this task in GSOC 2013. My name is Gergő Mocsi and
Iám a student ant Eötvös Loránd University in Budapest, Hungary. Here's
what I've alredy figured out:
the problem in BASIC language is that it can handle only Object type, and
other can be created with createUnoService(...) etc. First, I have to add
support to the other type. Here is an example how I wan to do this:

Dim filepicker As Object
filepicker = createUnoService(com.sun.star.ui.dialogs.FilePicker)

these two lines create a FilePicker that will show up. Later can be used
like this:

filepicker.setDisplayDirectory(.)
filepicker.Title = title
filepicker.execute()
files = filepicker.getFiles()

This code sets the display directory and title of the filepicker, and the
execute() method shows it. After that, we get back the selected file.
So, if we had a FilePicker type in BASIC, we could do the code completition
(beacuse the IDE doesn't know the type, ONLY when executed the code).
So, I'd like to implement these types to BASIC language and it would look
like this:
eg. Dim filepicker as com.sun.star.ui.dialogs.FilePicker
instead of the two lones mentioned above. This would give them a Java-like
object hierarchy (that Object type could be the ancestor of them). So the
first, I'd like to add language support (for recognizing), and then the
iplementation. This means a lot of work, beacuse there are a lot of
interfaces to do. Any better ideas?

Regards,
Gergő Mocsi
IRC:stalker08
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] core.git: svx/source

2013-05-29 Thread David Tardon
 svx/source/dialog/frmsel.cxx |6 ++
 1 file changed, 6 insertions(+)

New commits:
commit 38797f7f4129e1e09be9308a36311cf2f1afef79
Author: David Tardon dtar...@redhat.com
Date:   Mon May 27 13:18:07 2013 +0200

valgrind: init. member variables

Change-Id: I7e0d99f549841d466d5dfb69cde74b424ae98b0b

diff --git a/svx/source/dialog/frmsel.cxx b/svx/source/dialog/frmsel.cxx
index f680f43..b1cae51 100644
--- a/svx/source/dialog/frmsel.cxx
+++ b/svx/source/dialog/frmsel.cxx
@@ -223,6 +223,12 @@ FrameSelectorImpl::FrameSelectorImpl( FrameSelector 
rFrameSel ) :
 maTLBR( FRAMEBORDER_TLBR ),
 maBLTR( FRAMEBORDER_BLTR ),
 mnFlags( FRAMESEL_OUTER ),
+mnCtrlSize( 0 ),
+mnArrowSize( 0 ),
+mnLine1( 0 ),
+mnLine2( 0 ),
+mnLine3( 0 ),
+mnFocusOffs( 0 ),
 mbHor( false ),
 mbVer( false ),
 mbTLBR( false ),
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: Dropping support for Visual Studio 2008 in master branch

2013-05-29 Thread Regina Henschel

Hi Tor,

Tor Lillqvist schrieb:

Unless somebody can give a *really* good reason, I plan to explicitly
drop support for building the master branch with MSVS 2008 soon.

It might be that this support was already unintentionally broken earlier
today or yesterday, and it would be easiest to just follow up and do it
completely.

Note that already the TDF 4.0 build has been built with MSVS 2010.


Is a build possible with the Express version, on Windows 7, so that it 
includes ATL?


Kind regards
Regina


___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] core.git: cui/uiconfig

2013-05-29 Thread Cor Nouws
 cui/uiconfig/ui/optadvancedpage.ui |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 45abf356c24ef0ff716d1ad3a6652007f2292259
Author: Cor Nouws oo...@nouenoff.nl
Date:   Wed May 29 15:36:56 2013 +0200

Improved text in GUI for Macro recording: it is limited

Change-Id: Ib7243496a4fa0f563ae3bbba4c2c67b62e19f83c
Reviewed-on: https://gerrit.libreoffice.org/4087
Reviewed-by: Michael Meeks michael.me...@suse.com
Tested-by: Michael Meeks michael.me...@suse.com

diff --git a/cui/uiconfig/ui/optadvancedpage.ui 
b/cui/uiconfig/ui/optadvancedpage.ui
index 5d703d3..f89ff03 100644
--- a/cui/uiconfig/ui/optadvancedpage.ui
+++ b/cui/uiconfig/ui/optadvancedpage.ui
@@ -358,7 +358,7 @@
 /child
 child
   object class=GtkCheckButton id=macrorecording
-property name=label translatable=yesEnable macro 
recording/property
+property name=label translatable=yesEnable macro 
recording (limited)/property
 property name=visibleTrue/property
 property name=can_focusTrue/property
 property name=receives_defaultFalse/property
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-4-1' - cui/uiconfig

2013-05-29 Thread Cor Nouws
 cui/uiconfig/ui/optadvancedpage.ui |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 42dc4187600f5ed0174c110ee4406ea1eb2ef3a0
Author: Cor Nouws oo...@nouenoff.nl
Date:   Wed May 29 15:36:56 2013 +0200

Improved text in GUI for Macro recording: it is limited

Change-Id: Ib7243496a4fa0f563ae3bbba4c2c67b62e19f83c
Reviewed-on: https://gerrit.libreoffice.org/4087
Reviewed-by: Michael Meeks michael.me...@suse.com
Tested-by: Michael Meeks michael.me...@suse.com
Signed-off-by: Michael Meeks michael.me...@suse.com

diff --git a/cui/uiconfig/ui/optadvancedpage.ui 
b/cui/uiconfig/ui/optadvancedpage.ui
index cb23222..d104663 100644
--- a/cui/uiconfig/ui/optadvancedpage.ui
+++ b/cui/uiconfig/ui/optadvancedpage.ui
@@ -358,7 +358,7 @@
 /child
 child
   object class=GtkCheckButton id=macrorecording
-property name=label translatable=yesEnable macro 
recording/property
+property name=label translatable=yesEnable macro 
recording (limited)/property
 property name=visibleTrue/property
 property name=can_focusTrue/property
 property name=receives_defaultFalse/property
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: libreoffice-4.0.3 fails to build

2013-05-29 Thread Caolán McNamara
On Wed, 2013-05-29 at 06:04 +, John Frankish wrote:
  -Original Message-
  From: John Frankish
  Sent: Sunday, 26 May, 2013 09:35
  To: 'libreoffice@lists.freedesktop.org'
  Subject: libreoffice-4.0.3 fails to build
  
  On an x86_64 machine, using gcc-4.6.1 and binutils-2.21.1, libreoffice-4.0.3
  fails to build - please see details below.
  
  Any troubleshooting recommendations would be gratefully received.

Well, FWIW c++filt
_ZN19ScVbaCollectionBaseIN4cppu15WeakImplHelper1IN3ooo3vba11XCollection4ItemERKN3com3sun4star3uno3AnyESD_

gives

ScVbaCollectionBasecppu::WeakImplHelper1ooo::vba::XCollection
::Item(com::sun::star::uno::Any const, com::sun::star::uno::Any
const)

and those are from include/vbahelper/vbacollectionimpl.hxx (or
vbahelper/inc/vbahelper/vbacollectionimpl.hxx) for 4.0.X

I kind of suspect this is visibility related, so maybe adding various
VBAHELPER_DLLPUBLIC stuff to ScVbaCollectionBase might help and/or
turning off visiblility support totally with hacking config_host.mk and
removing the =TRUE after HAVE_GCC_VISIBILITY_FEATURE and doing a clean
make with that turned off.

C.

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[PUSHED] Improved text in GUI for Macro recording: it is limited

2013-05-29 Thread Michael Meeks (via Code Review)
Hi,

Thank you for your patch!  It has been merged to LibreOffice.

If you are interested in details, please visit

https://gerrit.libreoffice.org/4087

Approvals:
  Michael Meeks: Verified; Looks good to me, approved


-- 
To view, visit https://gerrit.libreoffice.org/4087
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: Ib7243496a4fa0f563ae3bbba4c2c67b62e19f83c
Gerrit-PatchSet: 2
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Cor Nouws oo...@nouenoff.nl
Gerrit-Reviewer: Michael Meeks michael.me...@suse.com

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: [GSOC 2013] Code completion in the Basic IDE

2013-05-29 Thread Noel Power

Hi Gergő
On 29/05/13 15:16, Gergő Mocsi wrote:

Hello Everyone,
I'm very excited to do this task in GSOC 2013. My name is Gergő Mocsi 
and Iám a student ant Eötvös Loránd University in Budapest, Hungary. 
Here's what I've alredy figured out:
Congratulations on being accepted, we are delighted that you are going 
to be working on this project, I am particularly excited and looking 
forward to working with you on this project 
the problem in BASIC language is that it can handle only Object type, 
and other can be created with createUnoService(...) etc. First, I have 
to add support to the other type. Here is an example how I wan to do this:


Dim filepicker As Object
filepicker = createUnoService(com.sun.star.ui.dialogs.FilePicker)

these two lines create a FilePicker that will show up. Later can be 
used like this:


filepicker.setDisplayDirectory(.)
filepicker.Title = title
filepicker.execute()
files = filepicker.getFiles()

This code sets the display directory and title of the filepicker, and 
the execute() method shows it. After that, we get back the selected file.
So, if we had a FilePicker type in BASIC, we could do the code 
completition (beacuse the IDE doesn't know the type, ONLY when 
executed the code).
So, I'd like to implement these types to BASIC language and it would 
look like this:

eg. Dim filepicker as com.sun.star.ui.dialogs.FilePicker
I think you are on the right track :-) However you are jumping forward a 
number of steps :-)) ( and I like small manageable steps that my puny 
brain can process )


Also I think we need to distinguish between defining an object as a 
certain type and additionally defining an 'instance' of that type


so... something like

a) Dim filepicker as new com.sun.star.ui.dialogs.FilePicker ' to declare 
a variable pointing to a new instance
b) Dim filepicker as com.sun.star.ui.dialogs.FilePicker ' for just 
declaring a variable


but... com.sun.star.ui.dialogs.FilePicker is a service and not a type 
( and currently there is no afaik way to get the primary interface 
associated with a service from a service name )
But I like your idea and when the bones of the support is in place I 
think we can think about some shortcuts and possibly getting some 
information in the registry that would allow what you suggest to be possible


Personally though I think we need to start with b) it is sort of the 
'base' usage, so..  something like


Dim filepicker as com.sun.star.ui.dialogs.XFilePicker3

and yes the above is quite a mouthful ( but.. for a further step we 
could introduce some namespace magic ) and get


Dim filepicker as ui.dialogs.XFilePicker3

or even

Dim filepicker as XFilePicker3

(and eventually with some help from a tweaked registry )

Dim filepicker as FilePicker '( which basic would understand and Dim 
filepicker as com.sun.star.ui.dialogs.XFilePicker3 )


But... lets talk about this maybe tomorrow, we should meet up in anycase 
to just even say hello. I will try to write some very rough ideas of 
where to start with this, we can then discuss that in some more detail


Once again, congratulations and welcome

Noel


ps. good choice of example
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] core.git: basic/source offapi/com

2013-05-29 Thread Stephan Bergmann
 basic/source/classes/eventatt.cxx  |   44 ++---
 offapi/com/sun/star/awt/DialogProvider.idl |5 +--
 2 files changed, 25 insertions(+), 24 deletions(-)

New commits:
commit 69e697deefc9bebefa2daac4ae4b8cde5ae742f1
Author: Stephan Bergmann sberg...@redhat.com
Date:   Wed May 29 17:35:06 2013 +0200

Improve DialogProvider service ctor

...recently introduced with c75a46fbd0ba4daf857fcd7d70badeed5aae8e28 
fdo#46808,
use DialogProvider service constructor.  The general theme of this 
additional
ctor appears to be more about Scripting than Listener, and the DialogLib
argument is actually expected to be of XNameContainer type.

Change-Id: Iea7d906d9b2ffc3b3ee5b2cbfaf7c58191037c9b

diff --git a/basic/source/classes/eventatt.cxx 
b/basic/source/classes/eventatt.cxx
index f74bb95..68ba831 100644
--- a/basic/source/classes/eventatt.cxx
+++ b/basic/source/classes/eventatt.cxx
@@ -330,9 +330,9 @@ void BasicScriptListener_Impl::firing_impl( const 
ScriptEvent aScriptEvent, Any
 }
 }
 
-Any implFindDialogLibForDialog( const Any rDlgAny, SbxObject* pBasic )
+css::uno::Reference css::container::XNameContainer  
implFindDialogLibForDialog( const Any rDlgAny, SbxObject* pBasic )
 {
-Any aRetDlgLibAny;
+css::uno::Reference css::container::XNameContainer  aRetDlgLib;
 
 SbxVariable* pDlgLibContVar = pBasic-Find(OUString(DialogLibraries), 
SbxCLASS_OBJECT);
 if( pDlgLibContVar  pDlgLibContVar-ISA(SbUnoObject) )
@@ -356,20 +356,20 @@ Any implFindDialogLibForDialog( const Any rDlgAny, 
SbxObject* pBasic )
 
 Any aDlgLibAny = xDlgLibContNameAccess-getByName( pLibNames[ 
iLib ] );
 
-Reference XNameAccess  xDlgLibNameAccess( aDlgLibAny, 
UNO_QUERY );
-OSL_ENSURE( xDlgLibNameAccess.is(), 
implFindDialogLibForDialog: invalid dialog lib! );
-if( xDlgLibNameAccess.is() )
+Reference XNameContainer  xDlgLibNameCont( aDlgLibAny, 
UNO_QUERY );
+OSL_ENSURE( xDlgLibNameCont.is(), implFindDialogLibForDialog: 
invalid dialog lib! );
+if( xDlgLibNameCont.is() )
 {
-Sequence OUString  aDlgNames = 
xDlgLibNameAccess-getElementNames();
+Sequence OUString  aDlgNames = 
xDlgLibNameCont-getElementNames();
 const OUString* pDlgNames = aDlgNames.getConstArray();
 sal_Int32 nDlgNameCount = aDlgNames.getLength();
 
 for( sal_Int32 iDlg = 0 ; iDlg  nDlgNameCount ; iDlg++ )
 {
-Any aDlgAny = xDlgLibNameAccess-getByName( pDlgNames[ 
iDlg ] );
+Any aDlgAny = xDlgLibNameCont-getByName( pDlgNames[ 
iDlg ] );
 if( aDlgAny == rDlgAny )
 {
-aRetDlgLibAny = aDlgLibAny;
+aRetDlgLib = xDlgLibNameCont;
 break;
 }
 }
@@ -378,12 +378,12 @@ Any implFindDialogLibForDialog( const Any rDlgAny, 
SbxObject* pBasic )
 }
 }
 
-return aRetDlgLibAny;
+return aRetDlgLib;
 }
 
-Any implFindDialogLibForDialogBasic( const Any aAnyISP, SbxObject* pBasic, 
StarBASIC* pFoundBasic )
+css::uno::Reference css::container::XNameContainer  
implFindDialogLibForDialogBasic( const Any aAnyISP, SbxObject* pBasic, 
StarBASIC* pFoundBasic )
 {
-Any aDlgLibAny;
+css::uno::Reference css::container::XNameContainer  aDlgLib;
 // Find dialog library for dialog, direct access is not possible here
 StarBASIC* pStartedBasic = (StarBASIC*)pBasic;
 SbxObject* pParentBasic = pStartedBasic ? pStartedBasic-GetParent() : 
NULL;
@@ -403,19 +403,19 @@ Any implFindDialogLibForDialogBasic( const Any aAnyISP, 
SbxObject* pBasic, Star
 }
 if( pSearchBasic1 )
 {
-aDlgLibAny = implFindDialogLibForDialog( aAnyISP, pSearchBasic1 );
+aDlgLib = implFindDialogLibForDialog( aAnyISP, pSearchBasic1 );
 
-if ( aDlgLibAny.hasValue() )
+if ( aDlgLib.is() )
 pFoundBasic = (StarBASIC*)pSearchBasic1;
 
 else if( pSearchBasic2 )
 {
-aDlgLibAny = implFindDialogLibForDialog( aAnyISP, pSearchBasic2 );
-if ( aDlgLibAny.hasValue() )
+aDlgLib = implFindDialogLibForDialog( aAnyISP, pSearchBasic2 );
+if ( aDlgLib.is() )
 pFoundBasic = (StarBASIC*)pSearchBasic2;
 }
 }
-return aDlgLibAny;
+return aDlgLib;
 }
 
 void RTL_Impl_CreateUnoDialog( StarBASIC* pBasic, SbxArray rPar, sal_Bool 
bWrite )
@@ -489,12 +489,12 @@ void RTL_Impl_CreateUnoDialog( StarBASIC* pBasic, 
SbxArray rPar, sal_Bool bWrit
 {}
 }
 
-Any aDlgLibAny;
+css::uno::Reference css::container::XNameContainer  aDlgLib;
 bool bDocDialog = false;
 StarBASIC* pFoundBasic = NULL;
 OSL_TRACE(About to try get a 

[Libreoffice-commits] core.git: Branch 'libreoffice-4-1' - 2 commits - basic/source odk/CustomTarget_doxygen.mk offapi/com

2013-05-29 Thread Stephan Bergmann
 basic/source/classes/eventatt.cxx  |   44 ++---
 odk/CustomTarget_doxygen.mk|5 +--
 offapi/com/sun/star/awt/DialogProvider.idl |5 +--
 3 files changed, 28 insertions(+), 26 deletions(-)

New commits:
commit d24df4c708b8eb8dc3689fa72cbfc4e02e97f6b1
Author: Stephan Bergmann sberg...@redhat.com
Date:   Wed May 29 17:35:06 2013 +0200

Improve DialogProvider service ctor

...recently introduced with c75a46fbd0ba4daf857fcd7d70badeed5aae8e28 
fdo#46808,
use DialogProvider service constructor.  The general theme of this 
additional
ctor appears to be more about Scripting than Listener, and the DialogLib
argument is actually expected to be of XNameContainer type.

Change-Id: Iea7d906d9b2ffc3b3ee5b2cbfaf7c58191037c9b
(cherry picked from commit 69e697deefc9bebefa2daac4ae4b8cde5ae742f1)

diff --git a/basic/source/classes/eventatt.cxx 
b/basic/source/classes/eventatt.cxx
index f74bb95..68ba831 100644
--- a/basic/source/classes/eventatt.cxx
+++ b/basic/source/classes/eventatt.cxx
@@ -330,9 +330,9 @@ void BasicScriptListener_Impl::firing_impl( const 
ScriptEvent aScriptEvent, Any
 }
 }
 
-Any implFindDialogLibForDialog( const Any rDlgAny, SbxObject* pBasic )
+css::uno::Reference css::container::XNameContainer  
implFindDialogLibForDialog( const Any rDlgAny, SbxObject* pBasic )
 {
-Any aRetDlgLibAny;
+css::uno::Reference css::container::XNameContainer  aRetDlgLib;
 
 SbxVariable* pDlgLibContVar = pBasic-Find(OUString(DialogLibraries), 
SbxCLASS_OBJECT);
 if( pDlgLibContVar  pDlgLibContVar-ISA(SbUnoObject) )
@@ -356,20 +356,20 @@ Any implFindDialogLibForDialog( const Any rDlgAny, 
SbxObject* pBasic )
 
 Any aDlgLibAny = xDlgLibContNameAccess-getByName( pLibNames[ 
iLib ] );
 
-Reference XNameAccess  xDlgLibNameAccess( aDlgLibAny, 
UNO_QUERY );
-OSL_ENSURE( xDlgLibNameAccess.is(), 
implFindDialogLibForDialog: invalid dialog lib! );
-if( xDlgLibNameAccess.is() )
+Reference XNameContainer  xDlgLibNameCont( aDlgLibAny, 
UNO_QUERY );
+OSL_ENSURE( xDlgLibNameCont.is(), implFindDialogLibForDialog: 
invalid dialog lib! );
+if( xDlgLibNameCont.is() )
 {
-Sequence OUString  aDlgNames = 
xDlgLibNameAccess-getElementNames();
+Sequence OUString  aDlgNames = 
xDlgLibNameCont-getElementNames();
 const OUString* pDlgNames = aDlgNames.getConstArray();
 sal_Int32 nDlgNameCount = aDlgNames.getLength();
 
 for( sal_Int32 iDlg = 0 ; iDlg  nDlgNameCount ; iDlg++ )
 {
-Any aDlgAny = xDlgLibNameAccess-getByName( pDlgNames[ 
iDlg ] );
+Any aDlgAny = xDlgLibNameCont-getByName( pDlgNames[ 
iDlg ] );
 if( aDlgAny == rDlgAny )
 {
-aRetDlgLibAny = aDlgLibAny;
+aRetDlgLib = xDlgLibNameCont;
 break;
 }
 }
@@ -378,12 +378,12 @@ Any implFindDialogLibForDialog( const Any rDlgAny, 
SbxObject* pBasic )
 }
 }
 
-return aRetDlgLibAny;
+return aRetDlgLib;
 }
 
-Any implFindDialogLibForDialogBasic( const Any aAnyISP, SbxObject* pBasic, 
StarBASIC* pFoundBasic )
+css::uno::Reference css::container::XNameContainer  
implFindDialogLibForDialogBasic( const Any aAnyISP, SbxObject* pBasic, 
StarBASIC* pFoundBasic )
 {
-Any aDlgLibAny;
+css::uno::Reference css::container::XNameContainer  aDlgLib;
 // Find dialog library for dialog, direct access is not possible here
 StarBASIC* pStartedBasic = (StarBASIC*)pBasic;
 SbxObject* pParentBasic = pStartedBasic ? pStartedBasic-GetParent() : 
NULL;
@@ -403,19 +403,19 @@ Any implFindDialogLibForDialogBasic( const Any aAnyISP, 
SbxObject* pBasic, Star
 }
 if( pSearchBasic1 )
 {
-aDlgLibAny = implFindDialogLibForDialog( aAnyISP, pSearchBasic1 );
+aDlgLib = implFindDialogLibForDialog( aAnyISP, pSearchBasic1 );
 
-if ( aDlgLibAny.hasValue() )
+if ( aDlgLib.is() )
 pFoundBasic = (StarBASIC*)pSearchBasic1;
 
 else if( pSearchBasic2 )
 {
-aDlgLibAny = implFindDialogLibForDialog( aAnyISP, pSearchBasic2 );
-if ( aDlgLibAny.hasValue() )
+aDlgLib = implFindDialogLibForDialog( aAnyISP, pSearchBasic2 );
+if ( aDlgLib.is() )
 pFoundBasic = (StarBASIC*)pSearchBasic2;
 }
 }
-return aDlgLibAny;
+return aDlgLib;
 }
 
 void RTL_Impl_CreateUnoDialog( StarBASIC* pBasic, SbxArray rPar, sal_Bool 
bWrite )
@@ -489,12 +489,12 @@ void RTL_Impl_CreateUnoDialog( StarBASIC* pBasic, 
SbxArray rPar, sal_Bool bWrit
 {}
 }
 
-Any aDlgLibAny;
+css::uno::Reference 

[Libreoffice-commits] core.git: Branch 'aoo/trunk' - sfx2/source

2013-05-29 Thread Andre Fischer
 sfx2/source/sidebar/SidebarController.cxx |   60 ++
 sfx2/source/sidebar/SidebarController.hxx |   16 ++--
 2 files changed, 42 insertions(+), 34 deletions(-)

New commits:
commit c726a12e1833af2f06858e5a797bcbd03bf9e996
Author: Andre Fischer a...@apache.org
Date:   Wed May 29 15:57:18 2013 +

122394: Force creation of new sidebar panels on DATACHANGED events.

diff --git a/sfx2/source/sidebar/SidebarController.cxx 
b/sfx2/source/sidebar/SidebarController.cxx
index e49ba24..067349a 100644
--- a/sfx2/source/sidebar/SidebarController.cxx
+++ b/sfx2/source/sidebar/SidebarController.cxx
@@ -114,6 +114,7 @@ SidebarController::SidebarController (
   mxFrame(rxFrame),
   maCurrentContext(OUString(), OUString()),
   maRequestedContext(),
+  mnRequestedForceFlags(SwitchFlag_NoForce),
   msCurrentDeckId(gsDefaultDeckId),
   msCurrentDeckTitle(),
   
maPropertyChangeForwarder(::boost::bind(SidebarController::BroadcastPropertyChange,
 this)),
@@ -268,7 +269,7 @@ void SAL_CALL SidebarController::statusChanged (const 
css::frame::FeatureStateEv
 // Force the current deck to update its panel list.
 if ( ! mbIsDocumentReadOnly)
 msCurrentDeckId = gsDefaultDeckId;
-maCurrentContext = Context();
+mnRequestedForceFlags |= SwitchFlag_ForceSwitch;
 maContextChangeUpdate.RequestCall();
 }
 }
@@ -389,7 +390,8 @@ void SidebarController::ProcessNewWidth (const sal_Int32 
nNewWidth)
 
 void SidebarController::UpdateConfigurations (void)
 {
-if (maCurrentContext != maRequestedContext)
+if (maCurrentContext != maRequestedContext
+|| mnRequestedForceFlags!=SwitchFlag_NoForce)
 {
 maCurrentContext = maRequestedContext;
 
@@ -469,7 +471,9 @@ void SidebarController::OpenThenSwitchToDeck (
 void SidebarController::SwitchToDeck (
 const ::rtl::OUString rsDeckId)
 {
-if ( ! msCurrentDeckId.equals(rsDeckId) || ! mbIsDeckOpen)
+if ( ! msCurrentDeckId.equals(rsDeckId)
+|| ! mbIsDeckOpen
+|| mnRequestedForceFlags!=SwitchFlag_NoForce)
 {
 const DeckDescriptor* pDeckDescriptor = 
ResourceManager::Instance().GetDeckDescriptor(rsDeckId);
 if (pDeckDescriptor != NULL)
@@ -486,7 +490,12 @@ void SidebarController::SwitchToDeck (
 {
 maFocusManager.Clear();
 
-if ( ! msCurrentDeckId.equals(rDeckDescriptor.msId))
+const bool bForceNewDeck 
((mnRequestedForceFlagsSwitchFlag_ForceNewDeck)!=0);
+const bool bForceNewPanels 
((mnRequestedForceFlagsSwitchFlag_ForceNewPanels)!=0);
+mnRequestedForceFlags = SwitchFlag_NoForce;
+
+if ( ! msCurrentDeckId.equals(rDeckDescriptor.msId)
+|| bForceNewDeck)
 {
 // When the deck changes then destroy the deck and all panels
 // and create everything new.
@@ -560,10 +569,20 @@ void SidebarController::SwitchToDeck (
 
 // Find the corresponding panel among the currently active
 // panels.
-SharedPanelContainer::const_iterator iPanel (::std::find_if(
+SharedPanelContainer::const_iterator iPanel;
+if (bForceNewPanels)
+{
+// All panels have to be created in any case.  There is no
+// point in searching already existing panels.
+iPanel = rCurrentPanels.end();
+}
+else
+{
+iPanel = ::std::find_if(
 rCurrentPanels.begin(),
 rCurrentPanels.end(),
-::boost::bind(Panel::HasIdPredicate, _1, 
::boost::cref(rPanelContexDescriptor.msId;
+::boost::bind(Panel::HasIdPredicate, _1, 
::boost::cref(rPanelContexDescriptor.msId)));
+}
 if (iPanel != rCurrentPanels.end())
 {
 // Panel already exists in current deck.  Reuse it.
@@ -572,7 +591,8 @@ void SidebarController::SwitchToDeck (
 }
 else
 {
-// Panel does not yet exist.  Create it.
+// Panel does not yet exist or creation of new panels is forced.
+// Create it.
 aNewPanels[nWriteIndex] = CreatePanel(
 rPanelContexDescriptor.msId,
 mpCurrentDeck-GetPanelParentWindow(),
@@ -623,30 +643,6 @@ void SidebarController::SwitchToDeck (
 
 
 
-bool SidebarController::ArePanelSetsEqual (
-const SharedPanelContainer rCurrentPanels,
-const ResourceManager::PanelContextDescriptorContainer rRequestedPanels)
-{
-if (rCurrentPanels.size() != rRequestedPanels.size())
-return false;
-for (sal_Int32 nIndex=0,nCount=rCurrentPanels.size(); nIndexnCount; 
++nIndex)
-{
-if (rCurrentPanels[nIndex] == NULL)
-return false;
-if ( ! 
rCurrentPanels[nIndex]-GetId().equals(rRequestedPanels[nIndex].msId))
-return false;
-
-// Check if the panels still can be displayed.  This may not be the 
case when
-// the document just become rea-only.
-if 

Re: Dropping support for Visual Studio 2008 in master branch

2013-05-29 Thread Thomas Arnhold

Hi Regina,

On 29.05.2013 16:28, Regina Henschel wrote:

Is a build possible with the Express version, on Windows 7, so that it
includes ATL?


No, the Express version doesn't include ATL.

The only legal way to do this is to purchase a retail version of Visual 
Studio C++ and install it on the same machine as Visual Studio C++ 
Express. You can then copy the appropriate ATL headers from the retail 
version to the express version.


http://social.msdn.microsoft.com/Forums/en-US/Vsexpressvc/thread/f1bd57fb-ef09-480d-b367-2e9fb2a1383d/


Thomas
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Master build failure on OSX 10.8 with 10.6 SDK in libwpftdrawlo

2013-05-29 Thread Alexander Thurgood
Hi all,

Since about May 24th/25th, I have been getting build failures with
master on OSX in libwpftdrawlo :


[build LNK] Library/libwpftdrawlo.dylib
[build CXX] scripting/source/basprov/baslibnode.cxx
[build CXX] scripting/source/basprov/basmethnode.cxx
[build CXX] scripting/source/basprov/basmodnode.cxx
ld: warning: direct access in
WPXSvInputStreamImpl::WPXSvInputStreamImpl(com::sun::star::uno::Referencecom::sun::star::io::XInputStream)to
global weak symbol vtable for WPXInputStreammeans the weak symbol cannot
be overridden at runtime. This was likely caused by different
translation units being compiled with different visibility settings.
ld: warning: direct access in
WPXSvInputStream::WPXSvInputStream(com::sun::star::uno::Referencecom::sun::star::io::XInputStream)to
global weak symbol vtable for WPXInputStreammeans the weak symbol cannot
be overridden at runtime. This was likely caused by different
translation units being compiled with different visibility settings.
ld: fatal warning(s) induced error (-fatal_warnings)
collect2: ld returned 1 exit status
make[1]: ***
[/Users/Shared/Repos/LO/core/workdir/unxmacxi.pro/LinkTarget/Library/libwpftdrawlo.dylib]
Error 1
make[1]: *** Waiting for unfinished jobs
make: *** [build] Error 2


A make clean, re-pull didn't solve the problem. Any ideas ?

Alex

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[GSoC 2013] Improved Android / Impress Remote Control

2013-05-29 Thread Artur Dryomov
Hi everyone!

It is great to know I’ll work this summer with you, LibreOffice community. It 
is a honor for me.

I’ll work on Android / Impress remote control improvements. I am still 
discussing details with my mentor, Michael Meeks, but there are some steps I’ll 
do as soon as possible: revising a communication protocol between desktop 
LibreOffice instances and remote clients; improve and describe mockups I’ve 
done for my proposal. When I’ll finish mockups description I’ll put a message 
to the LibreOffice designers mail list.

I sent necessary forms to Google yesterday so there shouldn’t be any problems 
with documents. I’ll send my contact information to Cedric Bosdonnat and 
Michael Meeks. My IRC nickname is “ming”. Feel free to send messages to this 
email address if you have any private questions. My timezone is FET (UTC +3).

Regards,
Artur.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Multicoreware Inc License Statement

2013-05-29 Thread Robert Hedges
For Reference:

All of contributions by Multicoreware Inc (MCW), past and future, to
LibreOffice may be licensed under the MPLv2/LGPLv3+ dual license.


-- 
Robert Hedges

Solution Architect
Multicoreware Inc.
rob...@multicorewareinc.com
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] core.git: RepositoryExternal.mk

2013-05-29 Thread Michael Stahl
 RepositoryExternal.mk |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 963737d4dc83a162c2e295e942feb6fbf47bb809
Author: Michael Stahl mst...@redhat.com
Date:   Wed May 29 18:36:29 2013 +0200

fix copy paste error in gb_ExternalProject__use_boostsystem

May cause liborcus build failure.

Change-Id: I8a313dbe46cba28bccb749e4496a852872782e3a

diff --git a/RepositoryExternal.mk b/RepositoryExternal.mk
index 363d33c..03b1fa6 100644
--- a/RepositoryExternal.mk
+++ b/RepositoryExternal.mk
@@ -624,7 +624,7 @@ $(call gb_LinkTarget_use_static_libraries,$(1),\
 endef
 
 define gb_ExternalProject__use_boostsystem
-$(call gb_LinkTarget_use_static_libraries,$(1),boostsystem)
+$(call gb_ExternalProject_use_static_libraries,$(1),boostsystem)
 endef
 
 define gb_LinkTarget__use_boost_headers
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: Master build failure on OSX 10.8 with 10.6 SDK in libwpftdrawlo

2013-05-29 Thread Stephan Bergmann

On 05/29/2013 06:17 PM, Alexander Thurgood wrote:

Since about May 24th/25th, I have been getting build failures with
master on OSX in libwpftdrawlo :


[build LNK] Library/libwpftdrawlo.dylib
[build CXX] scripting/source/basprov/baslibnode.cxx
[build CXX] scripting/source/basprov/basmethnode.cxx
[build CXX] scripting/source/basprov/basmodnode.cxx
ld: warning: direct access in
WPXSvInputStreamImpl::WPXSvInputStreamImpl(com::sun::star::uno::Referencecom::sun::star::io::XInputStream)to
global weak symbol vtable for WPXInputStreammeans the weak symbol cannot
be overridden at runtime. This was likely caused by different
translation units being compiled with different visibility settings.
ld: warning: direct access in
WPXSvInputStream::WPXSvInputStream(com::sun::star::uno::Referencecom::sun::star::io::XInputStream)to
global weak symbol vtable for WPXInputStreammeans the weak symbol cannot
be overridden at runtime. This was likely caused by different
translation units being compiled with different visibility settings.
ld: fatal warning(s) induced error (-fatal_warnings)
collect2: ld returned 1 exit status
make[1]: ***
[/Users/Shared/Repos/LO/core/workdir/unxmacxi.pro/LinkTarget/Library/libwpftdrawlo.dylib]
Error 1
make[1]: *** Waiting for unfinished jobs
make: *** [build] Error 2


A make clean, re-pull didn't solve the problem. Any ideas ?


That would be 
http://cgit.freedesktop.org/libreoffice/core/commit/?id=65da24773fffea4e4bc81adfa265378064186488 
Be more picky about Mac OS X linker warnings (which I introduced after 
fixing a similar warning with liborcus, 
http://cgit.freedesktop.org/libreoffice/core/commit/?id=913ba61d008c6629272ba3df8d22dbff0e2dc4f9 
Make liborcus -fvisibility setting consistent with LO one).


Odd that this doesn't show up with my build (on Mac OS X 10.7).  What 
are the details of your build?


Anyway, you can just locally revert that -Wl,-fatal_warnings in 
solenv/gbuild/platform/macosx.mk for now.  I'll have a look later to see 
if I can reproduce your problem (and get a fix); otherwise, we'd 
exercise Feel free to revert if it causes trouble, though.


Stephan

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: Master build failure on OSX 10.8 with 10.6 SDK in libwpftdrawlo

2013-05-29 Thread Stephan Bergmann

On 05/29/2013 06:41 PM, Stephan Bergmann wrote:

Odd that this doesn't show up with my build (on Mac OS X 10.7).  What
are the details of your build?


Yeah, forget it; I hadn't read the subject...

Stephan
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: Master build failure on OSX 10.8 with 10.6 SDK in libwpftdrawlo

2013-05-29 Thread Alexander Thurgood
Le 29/05/13 18:43, Stephan Bergmann a écrit :

Hi Stephan,

 On 05/29/2013 06:41 PM, Stephan Bergmann wrote:
 Odd that this doesn't show up with my build (on Mac OS X 10.7).  What
 are the details of your build?
 
 Yeah, forget it; I hadn't read the subject...

LOL, but there must be others building on OSX 10.8 though, doesn't the
new tinderbox use that (perhaps not with the 10.6 SDK ?)


Alex


___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: Master build failure on OSX 10.8 with 10.6 SDK in libwpftdrawlo

2013-05-29 Thread Tor Lillqvist
I build on OS X 10.8, but with the 10.7 SDK.

--tml
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[LibreOffice-QA] Public Conference Call May 31st, 1300UTC

2013-05-29 Thread Joel Madero
Our bi-weekly conference call is here again.

This Friday at 1300 UTC:

Agenda currently unavailable but will be here as soon as possible:

https://wiki.documentfoundation.org/QA/Meetings/2013/May_31

We are doing the same thing as last time, google+ along with talkyoo. For
Google+ please add me (jmadero@gmail.com) or call in via talkyoo
https://wiki.documentfoundation.org/Talkyoo

I will likely be doing video this time around but who knows :)


Warm Regards,
Joel

-- 
*Joel Madero*
LibreOffice QA Volunteer
jmadero@gmail.com
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: Firebird

2013-05-29 Thread MiguelAngel

El 28/05/13 20:48, Andrzej J. R. Hunt escribió:

Hi Miguel, Javier, Andres

I've just seen that you are working on a Firebird DB connector for
LibreOffice -- I've just been selected to work on this as part of the
Google Summer of Code -- it would be cool if I could also work with you
on implementing this! (I'm currently still studying for exams but will
be working full time on this from roughly the 10th June.)

The major issue I can see at the moment is selecting which version of
Firebird to use, which I see is also being discussed on the
Firebird-devel list [1]. All the details are in that thread -- but
basically it looks like FB3 won't be out until next year and there isn't
much documentation of the new API, on the other hand it looks like FB3
will be easier/cleaner to use. Personally I'd favour implementing 3.0
for those reasons, but that would mean that it couldn't be shipped as
the default DB in LibreOffice until FB3 is stable, which I can see as
being a convincing argument for using 2.5 instead. As far as I can tell
the API should be stable from the first alpha release of FB3 [2], i.e.
API changes shouldn't be an issue if using 3.0.

I'd be interested to know what your views are on this / which version
you've been using so far? I guess the LO developers in general might
also have some input on which is preferable?

Also have any of you looked at integrating Firebird into the LO build
system yet, as this was one of the first things I was planning on doing
(although that is dependent on the choice of FB 2.5 vs 3). I think
Andres mentioned he was concentrating on developing on Linux at first --
I could look into the Windows specifics for Firebird to ensure things
are as cross-platform as possible from the start (although I should
probably mention I don't have too much Windows experience yet, and my
system isn't the fastest for building stuff there).

I've create a wiki page where I'm putting down some notes on whats
happening here -- I've also extracted the technical discussion and the
estimated timeplan from my GSOC application in case that's useful to
anyone else:
https://wiki.documentfoundation.org/Development/Base/FirebirdSQL . Feel
free to add to/edit that if you wish.

All the Best,

 Andrzeje

[1]: http://comments.gmane.org/gmane.comp.db.firebird.devel/2969
[2]: http://www.firebirdsql.org/en/roadmap/



Thanks Andrzej for start the thread, avoiding me to do it as Michael 
have been suggested in bugzilla, and of course by create the Wiki page.


In relation with the version, and thinking that time in an application 
like Firebird is not the same than in one as LibreOffice, wait for the 
first stable FB3, does it seem more time than we want?
Maybe some communication and feedback with Firebird devs can achieve a 
better acknowledgement to take a decision, specially about can be 
technical difficulties with embedded 2.5.


Firebird 2.5 server works nice for me in Windows 7 with ODBC and 
JDBC-jaybird to retrieve data.


I can only help with test. But I'm glad to see this integration going 
forward.


Thanks in advance to all.
Miguel Ángel.

 * Inglés - detectado
 * Inglés
 * Español
 * Gallego
 * Italiano

 * Inglés
 * Español
 * Gallego
 * Italiano

 javascript:void(0); #
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Developing without IDE

2013-05-29 Thread Guillermo Molleda Jimena

Good morning,
I'm trying to add functionality to LibreOffice but being accustomed to 
using an IDE (QtCreator, Borland Builder, ...) I'm a little lost.


For example, if I want to know where the code for the Show or Hide a 
Slide I find no way to know where it is (in an IDE just hit the menu and 
takes me to the code).


Another example: modify a file. Ui, glade I do not have a libreoffice 
catalog, I guess for buttons and icons for libreoffice developed widget. 
How I can add it?


Best regards.


smime.p7s
Description: S/MIME Cryptographic Signature
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: [GSoC] Character border

2013-05-29 Thread Zolnai Tamás
Hi Cedric,

Well that is only the use case and it isn't that complex: if we can draw
 the 4 borders, then any other case is pretty simple ;)


Yes, I just add the use case, so all of us can got ideas about it without
having an intense knowledge about the implementation. And yes I hope so
that will simple.


 You should better see your task as the following steps:
   * Change the Character properties UI to add the existing Borders
 page.
   * Write the borders definition into the SwFmt.
   * Change the layout to paint the borders. Borders will influence the
 line height and spacing between characters. This part will probably be
 the trickiest one. The code to paint borders is already implemented, but
 changing the layout requires you to understand it first ;)
   * Persist the borders to the various filters. There is no
 specification to do here as even ODF specifies these borders.


 Thanks for the advices.

I think Miklos planned to have a kick-starting session with you: we'll
 be able to discuss the details there. I once had a patch for the first
 step, you'll find it attached, although I'm not sure it's still useful.


 Yes, I've already spoken with Miklos, but as I said, I wait ideas from
anybody, not just from the proficients, but of course the latters will be
the most helpfull for the implementation.

Best regards,
Tamás
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


  1   2   3   4   5   6   7   >