Re: ToDos rename 3.7 to 4.0

2012-11-12 Thread Petr Mladek
Rainer Bielefeld píše v Ne 11. 11. 2012 v 13:19 +0100:
 Hi all,
 
 I started http://wiki.documentfoundation.org/QA/Todo_rename_3.7_to_4.0 
 for collection and discussion of all activities related to that decision.

 Please feel free to add more action items and / or comments.
 
 Discussion if necessary please here in this thread on 
 libreoffice...@lists.freedesktop.org or on Wiki Discussion page.
 
 When will we get the first 4.0 Master builds?

I am going to look at it. I hope that the first daily build will have
4.0 on Wednesday.

Anyway, I think that we do not need any complex planing and
synchronization. My approach would be to rename 3.7 to 4.0 anywhere you
see it in the sources, wiki, bugzilla, website...


Best Regards,
Petr

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


[Libreoffice-commits] .: setup_native/scripts

2012-11-12 Thread Libreoffice Gerrit user
 setup_native/scripts/install_linux.sh |   11 +++
 1 file changed, 3 insertions(+), 8 deletions(-)

New commits:
commit f8b5e1cb1e2a0b294b7c967a8e040e11d2da74f7
Author: Miklos Vajna vmik...@suse.cz
Date:   Sun Nov 11 14:06:41 2012 +0100

setup_native: get install_linux.sh working again

1) Hide rpm database dir like the old Java installer GUI did, so the
user sees a single /opt directory only, like with dev-install.

2) Allow installing to an existing directory, no reason not to allow this.

3) Use --nodeps when using a custom dbpath, since in that case even
/bin/sh won't be provided by anything.

Change-Id: I70d74cc5db287668f4c926005001e05096f43a10

diff --git a/setup_native/scripts/install_linux.sh 
b/setup_native/scripts/install_linux.sh
index c33fe98..9174375 100644
--- a/setup_native/scripts/install_linux.sh
+++ b/setup_native/scripts/install_linux.sh
@@ -94,6 +94,7 @@ done
 if [ $# != 2 ]
 then
   echo $USAGE
+  echo Example: $0 . ~/libreoffice
   exit 2
 fi
 
@@ -134,7 +135,7 @@ fi
 #
 
 INSTALLDIR=$2
-RPM_DB_PATH=${INSTALLDIR}/var/lib/rpm
+RPM_DB_PATH=${INSTALLDIR}/.RPM_OFFICE_DATABASE
 
 # Check for versionrc
 if [ -f ${INSTALLDIR}/program/versionrc ]; then VERSIONRC=versionrc; fi
@@ -206,12 +207,6 @@ then
 else
   rmdir ${INSTALLDIR} 2/dev/null
 
-  if [ -d  ${INSTALLDIR} -a $ADD = no ]
-  then
-printf \n$0: ${INSTALLDIR} exists and is not empty.\n
-exit 2
-  fi
-
   mkdir -p $RPM_DB_PATH || exit 2
   # XXX why ? XXX
   chmod 700 $RPM_DB_PATH
@@ -261,7 +256,7 @@ echo Installing the RPMs
 
 ABSROOT=`cd ${INSTALLDIR}; pwd`
 RELOCATIONS=`rpm -qp --qf --relocate %{PREFIXES}=${ABSROOT}%{PREFIXES} \n 
$RPMLIST | sort -u | tr -d \012`
-UserInstallation=\$BRAND_BASE_DIR/../UserInstallation rpm ${DEBIAN_FLAGS} 
$RPMCMD --ignoresize -vh $RELOCATIONS --dbpath $RPM_DB_PATH $RPMLIST
+UserInstallation=\$BRAND_BASE_DIR/../UserInstallation rpm ${DEBIAN_FLAGS} 
--nodeps $RPMCMD --ignoresize -vh $RELOCATIONS --dbpath $RPM_DB_PATH $RPMLIST
 
 #
 # Create a link into the users home directory
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: vcl/source

2012-11-12 Thread Libreoffice Gerrit user
 vcl/source/gdi/pdfwriter_impl.cxx |   21 ++---
 1 file changed, 6 insertions(+), 15 deletions(-)

New commits:
commit 8f6351483c4850452b3c6db56159507b993833a9
Author: Stephan Bergmann sberg...@redhat.com
Date:   Mon Nov 12 09:44:56 2012 +0100

Improve PDF Signature

...in two ways:

* Change the signature type from certification signature to approval
signature (by removing the signature reference dictionary with a
TransformMethod of DocMDP; cf section 12.8.1 Interactive Features: Digital
Signatures: General of the PDF 1.7 spec).

* Include a call to NSS_CMSSignerInfo_AddSigningTime after all, which 
appears to
be the only way with the Mozilla CMS API to cause the SignerInfo included 
in the
generated PKCS #7 data to include PKCS #9 content-type and message-digest
attributes as required in section 9.2 Signed-data content type: SignerInfo
type of RFC 2315.

These changes cause acroread to change from reporting Signature is invalid:
There have been changes made to this document that invalidate the 
signature to
Signature is valid: Document has not been modified since this signature was
applied, but now also warning N Page(s) Modified (where N is the number 
of
pages in the document).  I have no idea what still causes the latter 
complaint.
When comparing the PDF output with some signed PDF generated by other 
software
(for which acroread does not complain about modified pages), there is no 
obvious
difference left.

Change-Id: I4af659a747ce8cba809b331613ddfbcf36aae3cc

diff --git a/vcl/source/gdi/pdfwriter_impl.cxx 
b/vcl/source/gdi/pdfwriter_impl.cxx
index d0acc16..0e79d79 100644
--- a/vcl/source/gdi/pdfwriter_impl.cxx
+++ b/vcl/source/gdi/pdfwriter_impl.cxx
@@ -5924,15 +5924,6 @@ bool PDFWriterImpl::emitCatalog()
 else
 aInitPageRef.append( 0 );
 
-#if !defined(ANDROID)  !defined(IOS)
-if (m_nSignatureObject != -1) // Document will be signed
-{
-aLine.append(/Perms/DocMDP );
-aLine.append(m_nSignatureObject);
-aLine.append( 0 R);
-}
-#endif
-
 switch( m_aContext.PDFDocumentAction )
 {
 case PDFWriter::ActionDefault : //do nothing, this is the Acrobat 
default
@@ -6109,11 +6100,7 @@ bool PDFWriterImpl::emitSignature()
 OStringBuffer aLine( 0x5000 );
 aLine.append( m_nSignatureObject );
 aLine.append(  0 obj\n );
-aLine.append(/Reference[/Data );
-aLine.append( m_nCatalogObject );
-aLine.append( 0 R/Type/SigRef/TransformParams/Type/TransformParams
- /V/1.2/P 1/DigestMethod/MD5/DigestLocation[0 0]
- /DigestValue(aa)/TransformMethod/DocMDP]/Contents  );
+aLine.append(/Contents  );
 
 sal_uInt64 nOffset = ~0U;
 CHECK_RETURN( (osl_File_E_None == osl_getFilePos( m_aFile, nOffset ) ) );
@@ -6313,7 +6300,11 @@ bool PDFWriterImpl::finalizeSignature()
 return false;
 }
 
-//NSS_CMSSignerInfo_AddSigningTime(cms_signer, PR_Now()); //TODO: Needs 
PDF 1.6?
+if (NSS_CMSSignerInfo_AddSigningTime(cms_signer, PR_Now()) != SECSuccess)
+{
+SAL_WARN(vcl.gdi, PDF signing: can't add signing time.);
+return false;
+}
 
 if (NSS_CMSSignedData_AddCertificate(cms_sd, cert) != SECSuccess)
 {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: build failure, undefined symbols XML_...

2012-11-12 Thread Tor Lillqvist
 I am trying to build from the git tarball of 2012-11-03, commit id
 445e66f,

If that is just a tarball taken at some random point in time, i.e. not
a tarball corresponding to some released version, there is no
guarantee that it is buildable (on all supported platforms, in all
possible/supported configurations). Sorry. Try another one. Or try
tweaking your configure options.

And if that is a tarball of master, it surely makes much more sense to
track master as it evolves in git, not some random tarball from a week
ago. Is there some particular reason why you don't work from a fresh
git clone, but from a tarball?

There were changes recently (well, several weeks or month(s) ago if I
recall correctly) in the exported function names of the bundled expat
libraries and you might have run into some fallout of that. Hopefully
a current master should work for your configuration by now.

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


[Libreoffice-commits] .: bin/distro-install-file-lists

2012-11-12 Thread Libreoffice Gerrit user
 bin/distro-install-file-lists |6 --
 1 file changed, 4 insertions(+), 2 deletions(-)

New commits:
commit 1cbfcdd9675e63a3ed385b4532d200b785099875
Author: Petr Mladek pmla...@suse.cz
Date:   Mon Nov 12 10:41:13 2012 +0100

distro-install: correcly pack KDE and TDE addressbook (bnc#779697)

Change-Id: Ieb37b226dcccb36d1c0e55e95d99e90ff26d8a26

diff --git a/bin/distro-install-file-lists b/bin/distro-install-file-lists
index eca4d35..ce31590 100755
--- a/bin/distro-install-file-lists
+++ b/bin/distro-install-file-lists
@@ -215,7 +215,8 @@ if test z$OOO_VENDOR != zDebian ; then
 mv_file_between_flists tde_list.txt common_list.txt 
$INSTALLDIR/program/tdefilepicker
 mv_file_between_flists tde_list.txt common_list.txt 
$INSTALLDIR/program/fps_tde.uno.so
 mv_file_between_flists tde_list.txt common_list.txt 
$INSTALLDIR/program/libvclplug_tdel..so
-mv_file_between_flists tde_list.txt common_list.txt 
$INSTALLDIR/program/libtdeabdrv1.so
+mv_file_between_flists tde_list.txt common_list.txt 
$INSTALLDIR/program/libtdeab1l..so
+mv_file_between_flists tde_list.txt common_list.txt 
$INSTALLDIR/program/libtdeabdrv1l..so
 add_used_directories tde_list.txt common_list.txt
 
 # kde subpackage
@@ -223,7 +224,8 @@ if test z$OOO_VENDOR != zDebian ; then
 mv_file_between_flists kde_list.txt common_list.txt 
$INSTALLDIR/program/kdefilepicker
 mv_file_between_flists kde_list.txt common_list.txt 
$INSTALLDIR/program/fps_kde.uno.so
 mv_file_between_flists kde_list.txt common_list.txt 
$INSTALLDIR/program/libvclplug_kdel..so
-mv_file_between_flists kde_list.txt common_list.txt 
$INSTALLDIR/program/libkabdrv1.so
+mv_file_between_flists kde_list.txt common_list.txt 
$INSTALLDIR/program/libkab1l..so
+mv_file_between_flists kde_list.txt common_list.txt 
$INSTALLDIR/program/libkabdrv1l..so
 add_used_directories kde_list.txt common_list.txt
 
 # create kde4 subpackage
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: liblangtag/ExternalProject_langtag.mk

2012-11-12 Thread Libreoffice Gerrit user
 liblangtag/ExternalProject_langtag.mk |9 +
 1 file changed, 5 insertions(+), 4 deletions(-)

New commits:
commit 40e9afbf745bdac5f8fb27fd8f2205cde6683697
Author: Tor Lillqvist tlillqv...@suse.com
Date:   Mon Nov 12 11:44:35 2012 +0200

Fix MSVC build: put the CFLAGS inside CC for preprocessor check to succeed

Change-Id: Iafc7f735a99f3e3ac335efa8610ff415d3deae3b

diff --git a/liblangtag/ExternalProject_langtag.mk 
b/liblangtag/ExternalProject_langtag.mk
index a895065..59810cd 100644
--- a/liblangtag/ExternalProject_langtag.mk
+++ b/liblangtag/ExternalProject_langtag.mk
@@ -17,15 +17,16 @@ $(eval $(call gb_ExternalProject_register_targets,langtag,\
 
 $(call gb_ExternalProject_get_state_target,langtag,build):
cd $(EXTERNAL_WORKDIR) \
-   $(if $(filter MSC,$(COM)), export LIB=$(ILIB)) \
+   $(if $(filter MSC,$(COM)), \
+export LIB=$(ILIB) \
+   CC=$(CC) -MD -nologo \
+   $(if $(filter TRUE,$(ENABLE_DEBUG)),-Zi) \
+   $(SOLARINC)) \
 ./configure --disable-modules --disable-test --disable-introspection 
\
$(if $(filter YES,$(CROSS_COMPILING)),--build=$(BUILD_PLATFORM) 
--host=$(HOST_PLATFORM)) \
$(if $(filter 
NO,$(SYSTEM_LIBXML)),LIBXML2_CFLAGS=-I$(OUTDIR)/inc/external \
$(if $(filter 
MSC,$(COM)),LIBXML2_LIBS=$(OUTDIR)/lib/libxml2.lib,LIBXML2_LIBS=-L$(OUTDIR)/lib
 -lxml2),\
$(if $(filter MACOSX,$(OS)),LIBXML2_CFLAGS=$(LIBXML_CFLAGS) 
LIBXML2_LIBS=$(LIBXML_LIBS))) \
-   $(if $(filter MSC,$(COM)),CC=$(CC) -MD -nologo \
-   $(if $(filter TRUE,$(ENABLE_DEBUG)),-Zi)) \
-   $(if $(filter MSC,$(COM)),CFLAGS=$(SOLARINC)) \
$(if $(filter-out LINUX FREEBSD,$(OS)),,LDFLAGS=-Wl,-z,origin 
-Wl,-rpath,$$ORIGIN:$$ORIGIN/../ure-link/lib) \
$(if $(filter-out SOLARIS,$(OS)),,LDFLAGS=-Wl,-z,origin 
-Wl,-R,$$ORIGIN:$$ORIGIN/../ure-link/lib) \
$(if $(filter-out 
WNTGCC,$(GUI)$(COM)),,LDFLAGS=-Wl,--enable-runtime-pseudo-reloc-v2) \
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: officecfg/registry

2012-11-12 Thread Libreoffice Gerrit user
 officecfg/registry/schema/org/openoffice/Office/Writer.xcs |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit bca28d7a8020948803f9879aaff7eb16774dc548
Author: Cor Nouws oo...@nouenoff.nl
Date:   Sun Nov 11 21:58:33 2012 +0100

fdo#42099 set option Writer Print Automatic.inserted blank pages default OFF

People often get confused when doing mail merge
or having a document with different page styles.

Change-Id: Ia3f2be5e98d57e988fcbb3eba89cc26323400082
Reviewed-on: https://gerrit.libreoffice.org/1040
Reviewed-by: Tor Lillqvist t...@iki.fi
Tested-by: Tor Lillqvist t...@iki.fi

diff --git a/officecfg/registry/schema/org/openoffice/Office/Writer.xcs 
b/officecfg/registry/schema/org/openoffice/Office/Writer.xcs
index 5b55ea4..58725bd 100644
--- a/officecfg/registry/schema/org/openoffice/Office/Writer.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/Writer.xcs
@@ -2306,14 +2306,14 @@
/prop
/group
 prop oor:name=EmptyPages oor:type=xs:boolean 
oor:nillable=false
-!-- UIHints: Tools - Options - Text document 
- Print - Other - Print automatically inserted blank pages --
+ !-- UIHints: Tools - Options - Text document - Print 
- Other - Print automatically inserted blank pages --
 info
 authorFME/author
 descContains settings for printing 
of empty pages./desc
 descSpecifies that automatically 
inserted empty pages are printed./desc
 labelPrint automatically inserted 
blank pages/label
 /info
-valuetrue/value
+valuefalse/value
 /prop
 /group
group oor:name=Table
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: sd/source

2012-11-12 Thread Libreoffice Gerrit user
 sd/source/ui/func/futext.cxx |   13 -
 1 file changed, 12 insertions(+), 1 deletion(-)

New commits:
commit 6fbba11da54b52554941f00b07e42cc5d7a1643c
Author: Lennard wassert...@nefkom.net
Date:   Sun Nov 11 18:25:14 2012 +0100

fdo#55430 click object in front of current after editing text

additional patch for 55430,
patch 85ea03ae536831649b104694d08dced4d4c8663f
failed when underlying object was in text mode, switched
back to normal mode, but still had the MouseButtonUp handle for text mode.
This one compensates that!

Change-Id: I69aecacc264c9a9b766ccfa48c0deb1f153e88da
Signed-off-by: Lennard wassert...@nefkom.net
Reviewed-on: https://gerrit.libreoffice.org/1037
Reviewed-by: Tor Lillqvist t...@iki.fi
Tested-by: Tor Lillqvist t...@iki.fi

diff --git a/sd/source/ui/func/futext.cxx b/sd/source/ui/func/futext.cxx
index 9ed1470..250c661 100644
--- a/sd/source/ui/func/futext.cxx
+++ b/sd/source/ui/func/futext.cxx
@@ -628,7 +628,8 @@ void FuText::ImpSetAttributesFitCommon(SdrTextObj* pTxtObj)
 sal_Bool FuText::MouseButtonUp(const MouseEvent rMEvt)
 {
 sal_Bool bReturn = sal_False;
-
+SdrObject* pObj;
+SdrPageView* pPV;
 if (aDragTimer.IsActive())
 {
 aDragTimer.Stop();
@@ -702,6 +703,16 @@ sal_Bool FuText::MouseButtonUp(const MouseEvent rMEvt)
 Abs(aPnt.X() - aMDPos.X())  nDrgLog 
 Abs(aPnt.Y() - aMDPos.Y())  nDrgLog)
 {
+/*
+* If a user wants to click on an object in front of a masked
+* one, he releases the mouse button immediately
+**/
+if (mpView-PickObj(aMDPos, mpView-getHitTolLog(), pObj, pPV, 
SDRSEARCH_ALSOONMASTER | SDRSEARCH_BEFOREMARK))
+{
+mpView-UnmarkAllObj();
+mpView-MarkObj(pObj,pPV,false,false);
+return (bReturn);
+}
 // toggle to rotation mode
 mpViewShell-GetViewFrame()-GetDispatcher()-Execute( 
SID_OBJECT_ROTATE, SFX_CALLMODE_ASYNCHRON | SFX_CALLMODE_RECORD );
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[PUSHED] fdo#42099 set option Writer Print Automatic.inserted blank p...

2012-11-12 Thread Tor Lillqvist (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/1040

Approvals:
  Tor Lillqvist: Verified; Looks good to me, approved


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

Gerrit-MessageType: merged
Gerrit-Change-Id: Ia3f2be5e98d57e988fcbb3eba89cc26323400082
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Cor Nouws oo...@nouenoff.nl
Gerrit-Reviewer: Tor Lillqvist t...@iki.fi

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


[PUSHED] fdo#55430 click object in front of current after editing tex...

2012-11-12 Thread Tor Lillqvist (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/1037

Approvals:
  Tor Lillqvist: Verified; Looks good to me, approved


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

Gerrit-MessageType: merged
Gerrit-Change-Id: I69aecacc264c9a9b766ccfa48c0deb1f153e88da
Gerrit-PatchSet: 4
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Lennard Wasserthal wassert...@nefkom.net
Gerrit-Reviewer: Lennard Wasserthal wassert...@nefkom.net
Gerrit-Reviewer: Tor Lillqvist t...@iki.fi

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


[Libreoffice-commits] .: liblangtag/README

2012-11-12 Thread Libreoffice Gerrit user
 liblangtag/README |5 +
 1 file changed, 5 insertions(+)

New commits:
commit fa637c4dff0a59922a726ff42fdf1f5f0354d2d6
Author: Tor Lillqvist tlillqv...@suse.com
Date:   Mon Nov 12 12:02:58 2012 +0200

Mention the fragility of its MSVC configury

Change-Id: Id2ee3c5dae27a1b7f33872d6421f53a40442d805

diff --git a/liblangtag/README b/liblangtag/README
index f48958d..1d510dc 100644
--- a/liblangtag/README
+++ b/liblangtag/README
@@ -1 +1,6 @@
 From [https://github.com/tagoh/liblangtag/]. An interface for BCP47 language 
tags.
+
+Note that (as far a I recall) liblangtag is the only bundled
+(3rd-party) library we have that we configure and build also for MSVC
+using an autotools+libtool based mechanism. That is rather fragile and
+works maybe mostly by accident. So be careful not to break it.
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: What actions to enhance a11y supprt at LOdev 4.0?

2012-11-12 Thread Michael Meeks
Hi Stuart,

On Sun, 2012-11-11 at 12:37 -0800, V Stuart Foote wrote:
 I'll throw this out for the Dev community to mull over.

:-)

 The apparent ESC decision to accelerate adoption of LibO 4.0 and not release
 LibO 3.7 would seem to eliminate a potential logical break point for
 implementation of several outstanding /a11y/ accessibility changes.

Break for implementation ? it's already implemented AFAIK - but is
still not made available under the ALv2 (sadly).

  Notably getting the Windows client off of the Java Access Bridge and onto
 a native bridge implementing IAccessible2 API.

A useful goal - one we've had for years. As/when Apache get their code
into some usable state we can include it; currently it looks like this:

https://svn.apache.org/repos/asf/incubator/ooo/symphony/trunk/main/winaccessibility/source/UAccCOM/AccAction.cpp

 Apache OpenOffice will roll out their 4.0 release with IAccesible2 support
 from the /winaccessibility IBM Symphony contribution.

As/when it's available with clear and clean licensing we'll include it
of course :-)

 Has there been any effort yet on migrating under ALv2 the /winaccessibility
 contribution from Apache svn to git for  a git build?

As above really. The reality is AOO graduated with many millions of
lines of LGPLv3-only + IBM proprietary / confidential + copyright
headers in them, many of which are still there sadly.

 And while undertaking integration of a native IAccessibile2 for windows,
 would seem to be an excellent time to rework the UNO Accessibility modules
 to add additional roles and more completely implement outstanding features
 from the /a11y/ ATK/AT-SPI specifications and possibly exposing roles to
 Apple NSAccessibility or even Microsoft UIA.

Really - there is nothing stopping us doing any of this at all, except
for the notion that it is time wasted if it has already been done -
we're waiting only for IBM to actually contribute it properly. I'm sure
that's frustrating for all impaired users on Windows - I know it's
frustrating for me and I imagine you.

Anyhow - as soon as it's available; it is (I hope) easy to integrate -
and there are several ways we can do that; it can be done for 4.1 which
would be 6 months later - or, if we get a tripple review from 3x
developers we can put any feature into even the stable branch - so
potentially a 4.0.x release - though I'd (personally) not give that
review unless it was working well in 4.1 builds.

I'm sorry for the lameness - but ... it's not a new problem - it's been
going on for years now.

It's worth noticing that the winaccessibility/ code itself is almost
exactly 10k ';' lines of code - (including the imported IAcc2 IDL) - so
the bridge itself is pretty small / simple.

ATB,

Michael.

-- 
michael.me...@suse.com  , Pseudo Engineer, itinerant idiot

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


[Libreoffice-commits] .: cui/source officecfg/registry sw/source unotools/inc unotools/source

2012-11-12 Thread Libreoffice Gerrit user
 cui/source/options/optgdlg.cxx |   10 +++
 cui/source/options/optgdlg.hrc |1 
 cui/source/options/optgdlg.hxx |1 
 cui/source/options/optgdlg.src |   69 +++--
 officecfg/registry/schema/org/openoffice/Setup.xcs |8 ++
 sw/source/ui/docvw/edtwin.cxx  |   12 +++
 unotools/inc/unotools/syslocaleoptions.hxx |6 +
 unotools/source/config/syslocaleoptions.cxx|   62 +-
 8 files changed, 135 insertions(+), 34 deletions(-)

New commits:
commit b4d1aaa074e2be9fd778134c40f99d2ab8a01e93
Author: Jeremy Brown jeremy.r.br...@gmail.com
Date:   Sun Nov 11 08:06:46 2012 +0100

fdo#36324 fdo#42929 - option to ingore system input language changes

Created a new checkbox on the Langauges options page:
[] Ignore system input language

This is unchecked by default so that the current behavior remains the
default, i.e. newly entered text will be flagged as whatever the
current system input language is.

When checked however, this instructs LibreOffice to ignore the system
language (on Windows for example, the language from the Language Bar)
when determining the language for newly entered text. This is handled in
the lcl_isNonDefaultLanguage method of sw/source/ui/docvw/edtwin.cxx.

The option is also saved in registrymodifications.xcu

There are two main use cases:
1. This allows someone to use a single international keyboard on
Windows to type in multiple languages, (e.g. English, French, Spanish)
without changing the system keyboard. The person is then responsible for
setting the language for each word or run of text themselves in
LibreOffice. This seems to be the preferred workflow for some
translators and some educators developing language materials.

2. This allows someone writing in a minority language that is not
represented in one of Windows' locale options to still be able to type
in LibreOffice in their language using a keyboard tagged for another
language. Once they set the language in LibreOffice (e.g. to Teke-Eboo
[ebo_CG]), they can type with a keyboard as being for Swahili but
still succeed in entering new text in their language. This allows
spell-checking to work properly without them having to select each new
word they enter and reset the language of that word to Teke-Eboo (as is
currently the case).

Change-Id: I86248f5865b69048eb1f3e427a8c03b093138796
Reviewed-on: https://gerrit.libreoffice.org/1029
Reviewed-by: Tor Lillqvist t...@iki.fi
Tested-by: Tor Lillqvist t...@iki.fi

diff --git a/cui/source/options/optgdlg.cxx b/cui/source/options/optgdlg.cxx
index 6567e7b..84a8d3e 100644
--- a/cui/source/options/optgdlg.cxx
+++ b/cui/source/options/optgdlg.cxx
@@ -1222,6 +1222,7 @@ OfaLanguagesTabPage::OfaLanguagesTabPage( Window* 
pParent, const SfxItemSet rSe
 aAsianSupportCB(this,   CUI_RES(CB_ASIANSUPPORT   )),
 aCTLSupportFI(this, CUI_RES(FI_CTLSUPPORT)),
 aCTLSupportCB(this, CUI_RES(CB_CTLSUPPORT   )),
+aIgnoreLanguageChangeCB(this, CUI_RES(CB_IGNORE_LANG_CHANGE   )),
 sDecimalSeparatorLabel(aDecimalSeparatorCB.GetText()),
 pLangConfig(new LanguageConfig_Impl)
 {
@@ -1347,6 +1348,8 @@ OfaLanguagesTabPage::OfaLanguagesTabPage( Window* 
pParent, const SfxItemSet rSe
 aCTLSupportCB.Enable(!bReadonly);
 aCTLSupportFI.Show(bReadonly);
 SupportHdl( aCTLSupportCB );
+
+aIgnoreLanguageChangeCB.Check( 
pLangConfig-aSysLocaleOptions.IsIgnoreLanguageChange() );
 }
 
 OfaLanguagesTabPage::~OfaLanguagesTabPage()
@@ -1514,6 +1517,9 @@ sal_Bool OfaLanguagesTabPage::FillItemSet( SfxItemSet 
rSet )
 if(aDecimalSeparatorCB.GetSavedValue() != aDecimalSeparatorCB.IsChecked())
 
pLangConfig-aSysLocaleOptions.SetDecimalSeparatorAsLocale(aDecimalSeparatorCB.IsChecked());
 
+if(aIgnoreLanguageChangeCB.GetSavedValue() != 
aIgnoreLanguageChangeCB.IsChecked())
+
pLangConfig-aSysLocaleOptions.SetIgnoreLanguageChange(aIgnoreLanguageChangeCB.IsChecked());
+
 // Configured currency, for example, USD-en-US or EUR-de-DE, or empty for 
locale default.
 OUString sOldCurr = 
pLangConfig-aSysLocaleOptions.GetCurrencyConfigString();
 sal_uInt16 nCurrPos = aCurrencyLB.GetSelectEntryPos();
@@ -1659,6 +1665,9 @@ void OfaLanguagesTabPage::Reset( const SfxItemSet rSet )
 aDecimalSeparatorCB.Check( 
pLangConfig-aSysLocaleOptions.IsDecimalSeparatorAsLocale());
 aDecimalSeparatorCB.SaveValue();
 
+aIgnoreLanguageChangeCB.Check( 
pLangConfig-aSysLocaleOptions.IsIgnoreLanguageChange());
+aIgnoreLanguageChangeCB.SaveValue();
+
 // let LocaleSettingHdl enable/disable checkboxes for CJK/CTL support
 // #i15812# must be done *before* the configured currency is set
 // and update the decimal separator used for the given locale
@@ 

[PUSHED] fdo#36324 fdo#42929 - option to ingore system input language...

2012-11-12 Thread Tor Lillqvist (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/1029

Approvals:
  Tor Lillqvist: Verified; Looks good to me, approved


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

Gerrit-MessageType: merged
Gerrit-Change-Id: I86248f5865b69048eb1f3e427a8c03b093138796
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Jeremy Brown jeremy.r.br...@gmail.com
Gerrit-Reviewer: Jeremy Brown jeremy.r.br...@gmail.com
Gerrit-Reviewer: Tor Lillqvist t...@iki.fi

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


[Libreoffice-commits] .: android/experimental

2012-11-12 Thread Libreoffice Gerrit user
 android/experimental/DocumentLoader/AndroidManifest.xml |5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

New commits:
commit 29719a369dac06d5a469a356b74ed84e3e3d2e6e
Author: Miklos Vajna vmik...@suse.cz
Date:   Mon Nov 12 11:22:11 2012 +0100

sync android manifest with project properties: sdk version

Note that with having a targetSdk = 11 and minSdk = 10, we can enable
hw acceleration without loosing compatibility with 2.x devices.

Also, remove android:configChanges=orientation, as it seems to improve
rotation experience a bit.

Change-Id: Ia3be9bb3b998d604a032eb5c60f9bb0ec71dfc68

diff --git a/android/experimental/DocumentLoader/AndroidManifest.xml 
b/android/experimental/DocumentLoader/AndroidManifest.xml
index b231011..f88f1ec 100644
--- a/android/experimental/DocumentLoader/AndroidManifest.xml
+++ b/android/experimental/DocumentLoader/AndroidManifest.xml
@@ -3,14 +3,15 @@
   package=org.libreoffice.android.examples
   android:versionCode=1
   android:versionName=1.0
-uses-sdk android:minSdkVersion=9 /
+  uses-sdk android:minSdkVersion=9
+android:targetSdkVersion=14/
 application android:label=LO Experimental DocumentLoader
  android:debuggable=true
  android:largeHeap=true
  android:hardwareAccelerated=true
 activity android:name=.DocumentLoader
   android:label=LO DocumentLoader
-  android:configChanges=orientation|keyboardHidden
+  android:configChanges=keyboardHidden
 intent-filter
 action android:name=android.intent.action.MAIN /
 category android:name=android.intent.category.LAUNCHER /
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: svtools/source

2012-11-12 Thread Libreoffice Gerrit user
 svtools/source/graphic/graphic.cxx |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit aa09c0b8b2899c61300c90fa3472381e4d0eaf25
Author: Arnaud Versini arnaud.vers...@gmail.com
Date:   Sun Nov 11 11:45:38 2012 +0100

Use memcmp instead of rtl_compareMemory in svtools

Change-Id: Id051a39774446595b5082316a470c23246de8124
Reviewed-on: https://gerrit.libreoffice.org/1034
Reviewed-by: Tor Lillqvist t...@iki.fi
Tested-by: Tor Lillqvist t...@iki.fi

diff --git a/svtools/source/graphic/graphic.cxx 
b/svtools/source/graphic/graphic.cxx
index f6121f2..f0e5e7f 100644
--- a/svtools/source/graphic/graphic.cxx
+++ b/svtools/source/graphic/graphic.cxx
@@ -24,6 +24,7 @@
 #include vcl/graph.hxx
 #include graphic.hxx
 #include comphelper/servicehelper.hxx
+#include string.h
 
 using namespace com::sun::star;
 
@@ -277,7 +278,7 @@ const ::Graphic* Graphic::getImplementation( const 
uno::Reference uno::XInterfa
 sal_Int64 SAL_CALL Graphic::getSomething( const uno::Sequence sal_Int8  rId 
)
 throw( uno::RuntimeException )
 {
-return( ( rId.getLength() == 16  0 == rtl_compareMemory( 
getImplementationId().getConstArray(), rId.getConstArray(), 16 ) ) ?
+return( ( rId.getLength() == 16  0 == memcmp( 
getImplementationId().getConstArray(), rId.getConstArray(), 16 ) ) ?
 reinterpret_cast sal_Int64 ( mpGraphic ) :
 0 );
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[PUSHED] Use memcmp instead of rtl_compareMemory in svtools

2012-11-12 Thread Tor Lillqvist (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/1034

Approvals:
  Tor Lillqvist: Verified; Looks good to me, approved


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

Gerrit-MessageType: merged
Gerrit-Change-Id: Id051a39774446595b5082316a470c23246de8124
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Arnaud Versini arnaud.vers...@gmail.com
Gerrit-Reviewer: Arnaud Versini arnaud.vers...@gmail.com
Gerrit-Reviewer: Tor Lillqvist t...@iki.fi

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


[Libreoffice-commits] .: sd/source

2012-11-12 Thread Libreoffice Gerrit user
 sd/source/ui/func/futext.cxx |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit fb9522a229c2d7b45d5d9d6e2c4e27ddfde351cf
Author: Tor Lillqvist tlillqv...@suse.com
Date:   Mon Nov 12 12:30:45 2012 +0200

WaE: declaration of ´pPV´ shadows a previous local

Change-Id: I1993834b670f9c536bc963527cfb46fedeebd72d

diff --git a/sd/source/ui/func/futext.cxx b/sd/source/ui/func/futext.cxx
index 250c661..99ce662 100644
--- a/sd/source/ui/func/futext.cxx
+++ b/sd/source/ui/func/futext.cxx
@@ -801,10 +801,10 @@ sal_Bool FuText::MouseButtonUp(const MouseEvent rMEvt)
  Abs(aMDPos.Y() - aPnt.Y())  nDrgLog1 
  !rMEvt.IsShift()  !rMEvt.IsMod2() )
 {
-SdrPageView* pPV = mpView-GetSdrPageView();
+SdrPageView* pPV2 = mpView-GetSdrPageView();
 SdrViewEvent aVEvt;
 mpView-PickAnything(rMEvt, SDRMOUSEBUTTONDOWN, aVEvt);
-mpView-MarkObj(aVEvt.pRootObj, pPV);
+mpView-MarkObj(aVEvt.pRootObj, pPV2);
 }
 
 if ( !mxTextObj.is()  mpView )
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: (question) File import/export in LibreOffice Spreadsheet -- where to look?

2012-11-12 Thread Michael Meeks
Hi William,

On Sat, 2012-11-10 at 18:23 -0500, William Park wrote:
 As a way of learning LibreOffice Spreadsheet code, I would like to add a
 simple file import/export.  The file format is sort of 3-column CSV
 format.  Can someone point me to directory/file I should look at?

Certainly :-) so - it rather depends how you want to do that; the
problem is finding a nice clean  de-coupled filter to base from. There
are a number of filters that manipulate the core directly - they live
in:

sc/source/filter/

but these are a bit of a PITA maintenance-wise for infrequently used
features. So it's often nicer to transform to ODF (or better ODF sax
events) as you read - but there is no good example of that for
spreadsheet filters that I know of.

So - failing that I'd be tempted (myself) to hack the qpro/ filter in
sc/source/filter/qpro - don't try copying it etc. - you'll just end up
with nasty setup problems; just replace the methods you want - and
clobber it in-place to get something working.

Then send in a patch for further advice; how does that sound ? :-)
there's plenty of useful work writing more modern qpro filters too FWIW
if you're interested.

ATB,

Michael.

-- 
michael.me...@suse.com  , Pseudo Engineer, itinerant idiot

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


[Libreoffice-commits] .: sax/source sc/source sw/source

2012-11-12 Thread Libreoffice Gerrit user
 sax/source/expatwrap/saxwriter.cxx |2 +-
 sc/source/ui/miscdlgs/acredlin.cxx |4 ++--
 sw/source/filter/ww8/ww8par5.cxx   |4 ++--
 3 files changed, 5 insertions(+), 5 deletions(-)

New commits:
commit 273a60af9aae1a0b87d2ff43bdfb0cd849b29d27
Author: jailletc36 christophe.jail...@wanadoo.fr
Date:   Sun Nov 11 10:42:37 2012 +0100

cppCheck: clarifyCondition

Remove some warnings about:
   Boolean result is used in bitwise operation
   Suspicious condition (assignment + comparison)

Also reduce scope of a variable.

Change-Id: I553e5a09ed1d6276be61efbbb2c28d165a69af39
Signed-off-by: jailletc36 christophe.jail...@wanadoo.fr
Reviewed-on: https://gerrit.libreoffice.org/1031
Reviewed-by: Tor Lillqvist t...@iki.fi
Tested-by: Tor Lillqvist t...@iki.fi

diff --git a/sax/source/expatwrap/saxwriter.cxx 
b/sax/source/expatwrap/saxwriter.cxx
index e54c9fc..1caf6cd 100644
--- a/sax/source/expatwrap/saxwriter.cxx
+++ b/sax/source/expatwrap/saxwriter.cxx
@@ -1307,7 +1307,7 @@ void SAXWriter::startCDATA(void) throw(SAXException, 
RuntimeException)
 
 void SAXWriter::endCDATA(void) throw (RuntimeException)
 {
-if( ! m_bDocStarted | ! m_bIsCDATA)
+if( ! m_bDocStarted || ! m_bIsCDATA)
 {
 SAXException except;
 except.Message = OUString(  endCDATA was called without startCDATA  
);
diff --git a/sc/source/ui/miscdlgs/acredlin.cxx 
b/sc/source/ui/miscdlgs/acredlin.cxx
index dfc0f93..8a7c092 100644
--- a/sc/source/ui/miscdlgs/acredlin.cxx
+++ b/sc/source/ui/miscdlgs/acredlin.cxx
@@ -402,7 +402,7 @@ SvTreeListEntry* ScAcceptChgDlg::InsertChangeAction(
 pNewData-nActionNo=pScChangeAction-GetActionNumber();
 pNewData-bIsAcceptable=pScChangeAction-IsClickable();
 pNewData-bIsRejectable=pScChangeAction-IsRejectable();
-pNewData-bDisabled=!pNewData-bIsAcceptable | bDisabled;
+pNewData-bDisabled=!pNewData-bIsAcceptable || bDisabled;
 pNewData-aDateTime=aDateTime;
 pNewData-nRow  = aRef.aStart.Row();
 pNewData-nCol  = aRef.aStart.Col();
@@ -579,7 +579,7 @@ SvTreeListEntry* ScAcceptChgDlg::InsertFilteredAction(
 pNewData-nActionNo=pScChangeAction-GetActionNumber();
 pNewData-bIsAcceptable=pScChangeAction-IsClickable();
 pNewData-bIsRejectable=pScChangeAction-IsRejectable();
-pNewData-bDisabled=!pNewData-bIsAcceptable | bDisabled;
+pNewData-bDisabled=!pNewData-bIsAcceptable || bDisabled;
 pNewData-aDateTime=aDateTime;
 pNewData-nRow  = aRef.aStart.Row();
 pNewData-nCol  = aRef.aStart.Col();
diff --git a/sw/source/filter/ww8/ww8par5.cxx b/sw/source/filter/ww8/ww8par5.cxx
index f53d354..037c4be 100644
--- a/sw/source/filter/ww8/ww8par5.cxx
+++ b/sw/source/filter/ww8/ww8par5.cxx
@@ -3464,12 +3464,12 @@ eF_ResT SwWW8ImplReader::Read_F_Hyperlink( 
WW8FieldDesc* /*pF*/, String rStr )
 String sURL, sTarget, sMark;
 bool bDataImport = false;
 //HYPERLINK filename [switches]
-bool bOptions=false;
 
 rStr = comphelper::string::stripEnd(rStr, 1);
 
 if (!bDataImport)
 {
+bool bOptions = false;
 long nRet;
 _ReadFieldParams aReadParam( rStr );
 while( -1 != ( nRet = aReadParam.SkipToNextToken() ))
@@ -3477,7 +3477,7 @@ eF_ResT SwWW8ImplReader::Read_F_Hyperlink( WW8FieldDesc* 
/*pF*/, String rStr )
 switch( nRet )
 {
 case -2:
-if (!sURL.Len()  !bOptions)
+if (!sURL.Len()  !bOptions)
 ConvertFFileName(sURL, aReadParam.GetResult());
 break;
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[PUSHED] cppCheck: clarifyCondition

2012-11-12 Thread Tor Lillqvist (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/1031

Approvals:
  Tor Lillqvist: Verified; Looks good to me, approved


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

Gerrit-MessageType: merged
Gerrit-Change-Id: I553e5a09ed1d6276be61efbbb2c28d165a69af39
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Christophe JAILLET christophe.jail...@wanadoo.fr
Gerrit-Reviewer: Tor Lillqvist t...@iki.fi

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


Re: binfilter removed in LO 4.0 : how to communicate on this change?

2012-11-12 Thread Andras Timar
On 2012.11.11. 22:00, Michael Stahl wrote:
 to finish the cleanup i have just removed the binfilter .xcu file from
 the filter configuration...

There are still some traces of these old formats in the codebase. See
for example git grep StarCalc 3.0.
However I do not understand all hits. Some look like unused code.

Best regards,
Andras

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


Re: minutes of ESC call ...

2012-11-12 Thread Stephan Bergmann

On 11/11/2012 02:29 PM, Andras Timar wrote:

Some people consider bundled extensions as bloat, that should be
removed/integrated into core, whatever. While from the users' point
of view it does not matter. We have a checkbox to hide bundled
extensions in Extension Manager, we can make the default to hide
those. What's the difference then between an extension and a normal
feature?


Bundled extensions being extensions, they have to coexist sensibly with 
non-bundled (shared; per-user) ones.  For example, it can happen that an 
extension was already installed per-user and now is also included 
bundled after a LO upgrade.  There needs to be code that handles all 
that, and that code needs to be run rather early during bootstrap, and 
if it fails for some reason, it prominently fails during first start 
after upgrade.  Been there, done that.


In short, potential for trouble, and amount of first-start activity, is 
reduced by decreasing the number of bundled extensions.


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


Re: (question) File import/export in LibreOffice Spreadsheet -- where to look?

2012-11-12 Thread Miklos Vajna
On Sat, Nov 10, 2012 at 06:23:02PM -0500, William Park opengeome...@yahoo.ca 
wrote:
 As a way of learning LibreOffice Spreadsheet code, I would like to add a
 simple file import/export.  The file format is sort of 3-column CSV
 format.  Can someone point me to directory/file I should look at?

This is done in general by implementing an XFilter service for UNO
filters. When you're done with that, you'll need to register it. On this
later, Kohei had a post:

http://kohei.us/2007/05/08/how-to-pretend-to-write-an-export-filter/
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: binfilter removed in LO 4.0 : how to communicate on this change?

2012-11-12 Thread Miklos Vajna
On Sat, Nov 10, 2012 at 11:59:42PM +0100, Jean-Baptiste Faure 
jbf.fa...@sud-ouest.org wrote:
 Indeed, that will work for me and others who use Linux and perhaps MacOS.
 I will convert my old files or, better, export them in PDF/A. Thanks a lot.
 
 But what about for users using MS-Windows ? Is there something similar ?

Have you tried searching for it yourself? :-)

E.g.
http://stackoverflow.com/questions/51435/windows-version-of-the-unix-touch-command
has quite a few pointers.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] .: 4 commits - configure.ac lcms2/ExternalProject_lcms2.mk libexttextcat/android.patch libexttextcat/ExternalPackage_exttextcat.mk offapi/org shell/source

2012-11-12 Thread Libreoffice Gerrit user
 configure.ac  |   18 --
 lcms2/ExternalProject_lcms2.mk|1 +
 libexttextcat/ExternalPackage_exttextcat.mk   |2 +-
 libexttextcat/android.patch   |4 ++--
 offapi/org/freedesktop/PackageKit/XModify.idl |6 +++---
 shell/source/sessioninstall/SyncDbusSessionHelper.hxx |6 +++---
 6 files changed, 18 insertions(+), 19 deletions(-)

New commits:
commit 0d08bef014415c37c9914ca1e369e2a436a31e1c
Author: Caolán McNamara caol...@redhat.com
Date:   Mon Nov 12 11:09:51 2012 +

fix to make MacOSX run again

Change-Id: I7a021c38e1c2e39641a28d95cc9cc7e3d5ee8225

diff --git a/lcms2/ExternalProject_lcms2.mk b/lcms2/ExternalProject_lcms2.mk
index c2fd878..c8d93eb 100644
--- a/lcms2/ExternalProject_lcms2.mk
+++ b/lcms2/ExternalProject_lcms2.mk
@@ -37,6 +37,7 @@ $(call gb_ExternalProject_get_state_target,lcms2,build):
CPPFLAGS= $(SOLARINC) \
$(if $(filter-out WNTGCC,$(OS)$(COM)),,CPPFLAGS= -DCMS_DLL_BUILD) \
$(if $(filter IOS ANDROID,$(OS)), --disable-shared --enable-static, 
--enable-shared --disable-static) \
+   $(if $(filter 
MACOSX,$(OS)),--prefix=/@.__OOO)
 \
 cd src \
 $(MAKE) \
 touch $@
commit 15055466e09872b69dbef87e5a37a8cc451d7307
Author: Caolán McNamara caol...@redhat.com
Date:   Mon Nov 12 09:25:22 2012 +

fix annoying Ressource typo

Change-Id: Ie6cf3cc8e672ad9499c55bda7c29b50140c6a57a

diff --git a/offapi/org/freedesktop/PackageKit/XModify.idl 
b/offapi/org/freedesktop/PackageKit/XModify.idl
index 79e2f79..05cc900 100644
--- a/offapi/org/freedesktop/PackageKit/XModify.idl
+++ b/offapi/org/freedesktop/PackageKit/XModify.idl
@@ -63,21 +63,21 @@ interface XModify : com::sun::star::uno::XInterface
  * @since LibreOffice 3.7
  */
 
-void InstallFontconfigRessources( [in] unsigned long xid, [in] sequence 
string  resources, [in] string interaction);
+void InstallFontconfigResources( [in] unsigned long xid, [in] sequence 
string  resources, [in] string interaction);
 
 /**
  * Installs GStreamer resources ( [in] usually codecs) from a configured 
software source.
  * @since LibreOffice 3.7
  */
 
-void InstalliGStreamerRessources( [in] unsigned long xid, [in] sequence 
string  resources, [in] string interaction);
+void InstalliGStreamerResources( [in] unsigned long xid, [in] sequence 
string  resources, [in] string interaction);
 
 /**
  * Installs resources of a given type from a configured software source.
  * @since LibreOffice 3.7
  */
 
-void InstallRessources( [in] unsigned long xid, [in] sequence string  
types, [in] sequence string  resources, [in] string interaction);
+void InstallResources( [in] unsigned long xid, [in] sequence string  
types, [in] sequence string  resources, [in] string interaction);
 
 /**
  * Removes sequence string  packages that provide the given local 
sequence string  files.
diff --git a/shell/source/sessioninstall/SyncDbusSessionHelper.hxx 
b/shell/source/sessioninstall/SyncDbusSessionHelper.hxx
index 4aab68c..6f86ecb 100644
--- a/shell/source/sessioninstall/SyncDbusSessionHelper.hxx
+++ b/shell/source/sessioninstall/SyncDbusSessionHelper.hxx
@@ -33,11 +33,11 @@ namespace shell { namespace sessioninstall
 { throw ::com::sun::star::uno::RuntimeException(); } // not 
implemented
 virtual void SAL_CALL InstallMimeTypes( ::sal_uInt32 /* xid */, 
const ::com::sun::star::uno::Sequence ::rtl::OUString  /* mime_types */, 
const ::rtl::OUString /* interaction */ ) throw 
(::com::sun::star::uno::RuntimeException)
 { throw ::com::sun::star::uno::RuntimeException(); } // not 
implemented
-virtual void SAL_CALL InstallFontconfigRessources( ::sal_uInt32 /* 
xid */, const ::com::sun::star::uno::Sequence ::rtl::OUString  /* resources 
*/, const ::rtl::OUString /* interaction */ ) throw 
(::com::sun::star::uno::RuntimeException)
+virtual void SAL_CALL InstallFontconfigResources( ::sal_uInt32 /* 
xid */, const ::com::sun::star::uno::Sequence ::rtl::OUString  /* resources 
*/, const ::rtl::OUString /* interaction */ ) throw 
(::com::sun::star::uno::RuntimeException)
 { throw ::com::sun::star::uno::RuntimeException(); } // not 
implemented
-virtual void SAL_CALL InstalliGStreamerRessources( ::sal_uInt32 /* 
xid */, const ::com::sun::star::uno::Sequence ::rtl::OUString  /* resources 
*/, const ::rtl::OUString /* interaction */ ) throw 
(::com::sun::star::uno::RuntimeException)
+virtual void SAL_CALL InstalliGStreamerResources( ::sal_uInt32 /* 
xid */, const ::com::sun::star::uno::Sequence ::rtl::OUString  /* resources 
*/, const ::rtl::OUString /* interaction */ ) throw 
(::com::sun::star::uno::RuntimeException)
 { throw 

[Libreoffice-commits] .: configure.ac instsetoo_native/util solenv/inc

2012-11-12 Thread Libreoffice Gerrit user
 configure.ac |2 
 instsetoo_native/util/openoffice.lst |   90 +--
 solenv/inc/minor.mk  |   10 +--
 solenv/inc/productversion.mk |4 -
 4 files changed, 53 insertions(+), 53 deletions(-)

New commits:
commit bf83aaf609cfec6ebc7d2bfa0f088e972ba28e22
Author: Petr Mladek pmla...@suse.cz
Date:   Mon Nov 12 12:31:35 2012 +0100

bump version to 4.0.0.0.alpha0+

Change-Id: I04cb89d04ebebcaef2276813864f79365f6899fd

diff --git a/configure.ac b/configure.ac
index d940aa9..35727c0 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2,7 +2,7 @@ dnl -*- Mode: Autoconf; tab-width: 4; indent-tabs-mode: nil; 
fill-column: 102 -*
 dnl configure.ac serves as input for the GNU autoconf package
 dnl in order to create a configure script.
 
-AC_INIT([LibreOffice],[3.7],[],[],[http://documentfoundation.org/])
+AC_INIT([LibreOffice],[4.0],[],[],[http://documentfoundation.org/])
 AC_PREREQ([2.59])
 
 save_CC=$CC
diff --git a/instsetoo_native/util/openoffice.lst 
b/instsetoo_native/util/openoffice.lst
index 0739bd7..1cdf3f7 100644
--- a/instsetoo_native/util/openoffice.lst
+++ b/instsetoo_native/util/openoffice.lst
@@ -4,13 +4,13 @@ Globals
 {
 variables
 {
-UREPACKAGEVERSION 3.7.0.0.alpha0
+UREPACKAGEVERSION 4.0.0.0.alpha0
 URELAYERVERSION 1
 REFERENCEOOOMAJORMINOR 3.4
-UNIXBASISROOTNAME libreoffice3.7
-SERVICETAG_PRODUCTNAME LibreOffice 3.7
-SERVICETAG_PRODUCTVERSION 3.7
-SERVICETAG_PARENTNAME LibreOffice 3.7
+UNIXBASISROOTNAME libreoffice4.0
+SERVICETAG_PRODUCTNAME LibreOffice 4.0
+SERVICETAG_PRODUCTVERSION 4.0
+SERVICETAG_PARENTNAME LibreOffice 4.0
 SERVICETAG_SOURCE {buildsource}{minor}(Build:{buildid})
 SERVICETAG_URN urn:uuid:0187debd-e458-11de-82d6-080020a9ed93
 HIDELICENSEDIALOG 1
@@ -47,17 +47,17 @@ LibreOffice
 variables
 {
 PRODUCTNAME LibreOffice
-PRODUCTVERSION 3.7
+PRODUCTVERSION 4.0
 PRODUCTEXTENSION
 LONG_PRODUCTEXTENSION
 SHORT_PRODUCTEXTENSION .0.0.alpha0
 POSTVERSIONEXTENSION
 POSTVERSIONEXTENSIONUNIX
-BRANDPACKAGEVERSION 3.7
-USERDIRPRODUCTVERSION 3
-ABOUTBOXPRODUCTVERSION 3.7.0.0.alpha0
+BRANDPACKAGEVERSION 4.0
+USERDIRPRODUCTVERSION 4
+ABOUTBOXPRODUCTVERSION 4.0.0.0.alpha0
 ABOUTBOXPRODUCTVERSIONSUFFIX +
-BASEPRODUCTVERSION 3.7
+BASEPRODUCTVERSION 4.0
 PCPFILENAME libreoffice.pcp
 UPDATEURL http://update.libreoffice.org/check.php
 ADD_INCLUDE_FILES cliureversion.mk,clioootypesversion.mk
@@ -65,7 +65,7 @@ LibreOffice
 FILEFORMATNAME OpenOffice.org
 FILEFORMATVERSION 1.0
 WRITERCOMPATIBILITYVERSIONOOO11 OpenOffice.org 1.1
-PACKAGEVERSION 3.7.0.0.alpha0
+PACKAGEVERSION 4.0.0.0.alpha0
 PACKAGEREVISION {buildid}
 LICENSENAME LGPL
 GLOBALFILEGID gid_File_Lib_Vcl
@@ -99,18 +99,18 @@ LibreOffice_Dev
 variables
 {
 PRODUCTNAME LOdev
-PRODUCTVERSION 3.7
+PRODUCTVERSION 4.0
 PRODUCTEXTENSION
 LONG_PRODUCTEXTENSION
 SHORT_PRODUCTEXTENSION .0.0.alpha0
-UNIXBASISROOTNAME lodev3.7
+UNIXBASISROOTNAME lodev4.0
 POSTVERSIONEXTENSION
 POSTVERSIONEXTENSIONUNIX
-BRANDPACKAGEVERSION 3.7
-USERDIRPRODUCTVERSION 3
-ABOUTBOXPRODUCTVERSION 3.7.0.0.alpha0
+BRANDPACKAGEVERSION 4.0
+USERDIRPRODUCTVERSION 4
+ABOUTBOXPRODUCTVERSION 4.0.0.0.alpha0
 ABOUTBOXPRODUCTVERSIONSUFFIX +
-BASEPRODUCTVERSION 3.7
+BASEPRODUCTVERSION 4.0
 DEVELOPMENTPRODUCT 1
 BASISPACKAGEPREFIX lodevbasis
 UREPACKAGEPREFIX lodev
@@ -123,7 +123,7 @@ LibreOffice_Dev
 FILEFORMATNAME OpenOffice.org
 FILEFORMATVERSION 1.0
 WRITERCOMPATIBILITYVERSIONOOO11 OpenOffice.org 1.1
-PACKAGEVERSION 3.7.0.0.alpha0
+PACKAGEVERSION 4.0.0.0.alpha0
 PACKAGEREVISION {buildid}
 LICENSENAME LGPL
 GLOBALFILEGID gid_File_Lib_Vcl
@@ -160,11 +160,11 @@ URE
 variables
 {
 PRODUCTNAME URE
-PRODUCTVERSION 3.7
-PACKAGEVERSION 3.7.0.0.alpha0
+PRODUCTVERSION 4.0
+PACKAGEVERSION 4.0.0.0.alpha0
 PACKAGEREVISION 1
 PRODUCTEXTENSION
-BRANDPACKAGEVERSION 3.7
+BRANDPACKAGEVERSION 4.0
 LONG_PRODUCTEXTENSION
 SHORT_PRODUCTEXTENSION .0.0.alpha0
 

Re: ToDos rename 3.7 to 4.0

2012-11-12 Thread Petr Mladek
Petr Mladek píše v Po 12. 11. 2012 v 09:55 +0100:
 Rainer Bielefeld píše v Ne 11. 11. 2012 v 13:19 +0100:
  Hi all,
  
  I started http://wiki.documentfoundation.org/QA/Todo_rename_3.7_to_4.0 
  for collection and discussion of all activities related to that decision.
 
  Please feel free to add more action items and / or comments.
  
  Discussion if necessary please here in this thread on 
  libreoffice...@lists.freedesktop.org or on Wiki Discussion page.
  
  When will we get the first 4.0 Master builds?
 
 I am going to look at it. I hope that the first daily build will have
 4.0 on Wednesday.

I have just pushed the version update into master. The upcoming daily
builds should have the version 4.0.

The first build looked fine. Let's see if there is still 3 or 3.7
hidden somewhere.


Best Regards,
Petr

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


build failure in master

2012-11-12 Thread Winfried Donkers
Hi,

Since a git pull -r action, I get a failure when building master:

/usr/lib/gcc/i586-suse-linux/4.5/../../../../i586-suse-linux/bin/ld: cannot 
find -llangtag
collect2: ld returned 1 exit status
make[2]: *** 
[/home/w.donkers/git/libo/workdir/unxlngi6/LinkTarget/Library/libi18nisolang1gcc3.so]
 Fout 1

(Fout is dutch for error)

Any suggestion how to solve this?


Winfried

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


Re: [SCRIPT] pre-install.sh for LO comp

2012-11-12 Thread Petr Mladek
Ricardo Montania píše v So 10. 11. 2012 v 08:37 -0200:
 Hi everyone.
 
 I wrote an script that helps new users to install most required
 dependencies to compile LibreOffice.
 
 It works on Debian and Fedora based distros. In the next days, will
 work on Gentoo!
 
 More informations, see
 https://github.com/downloads/marcosps/lo_useful/pre-install.sh
 
 PS: It's a simple idea, and any feed back, new ideas, reviews, any,
 are always welcome. Please let me know.

Sounds cool! Please, mention it at
http://wiki.documentfoundation.org/Development/Linux_Build_Dependencies

Thanks for the nice contribution.


Best Regards,
Petr

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


Re: [SCRIPT] pre-install.sh for LO comp

2012-11-12 Thread Michael Meeks

On Mon, 2012-11-12 at 12:42 +0100, Petr Mladek wrote:
 Ricardo Montania píše v So 10. 11. 2012 v 08:37 -0200:
  I wrote an script that helps new users to install most required
  dependencies to compile LibreOffice.

Sounds really useful :-)

  PS: It's a simple idea, and any feed back, new ideas, reviews, any,
  are always welcome. Please let me know.

I'd love to have it in the master / source-tree so that we can simplify
the download instructions on the website for new developers - there are
regular problems with getting those right I think.

Nice work !

Michael.

-- 
michael.me...@suse.com  , Pseudo Engineer, itinerant idiot

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


Re: binfilter removed in LO 4.0 : how to communicate on this change?

2012-11-12 Thread Jean-Baptiste Faure
Hi Miklos,


Miklos Vajna-2 wrote
 On Sat, Nov 10, 2012 at 11:59:42PM +0100, Jean-Baptiste Faure lt;

 jbf.faure@

 gt; wrote:
 Indeed, that will work for me and others who use Linux and perhaps MacOS.
 I will convert my old files or, better, export them in PDF/A. Thanks a
 lot.
 
 But what about for users using MS-Windows ? Is there something similar ?
 
 Have you tried searching for it yourself? :-)

No, I should have but, as I do not use MS-Windows anymore since years, and I
did not know how to start such kind of searching. :-(


Miklos Vajna-2 wrote
 E.g.
 http://stackoverflow.com/questions/51435/windows-version-of-the-unix-touch-command
 has quite a few pointers.

Thank you very much, for this good starting point. :-)

Best regards.
JBF




--
View this message in context: 
http://nabble.documentfoundation.org/binfilter-removed-in-LO-4-0-how-to-communicate-on-this-change-tp4017852p4018184.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] .: config_host.mk.in

2012-11-12 Thread Libreoffice Gerrit user
 config_host.mk.in |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit bfd8721577f0b26e890ab1528e2a71ad4889cb70
Author: Eike Rathke er...@redhat.com
Date:   Mon Nov 12 12:55:22 2012 +0100

fix gb_SPACE in LIBPNG_CFLAGS

Change-Id: I901390b39573f7cf8b3a8971e32e52e9d479d645

diff --git a/config_host.mk.in b/config_host.mk.in
index f4d31c3..57db3f3 100644
--- a/config_host.mk.in
+++ b/config_host.mk.in
@@ -338,7 +338,7 @@ export LIBLANGTAG_TARBALL=@LIBLANGTAG_TARBALL@
 export LIBLOADER_JAR=@LIBLOADER_JAR@
 export LIBMGR_X64_BINARY=@LIBMGR_X64_BINARY@
 export LIBMYSQL_PATH=@LIBMYSQL_PATH@
-export LIBPNG_CFLAGS$(gb_SPACE)=@LIBPNG_CFLAGS@
+export LIBPNG_CFLAGS=$(gb_SPACE)@LIBPNG_CFLAGS@
 export LIBPNG_LIBS=$(gb_SPACE)@LIBPNG_LIBS@
 export LIBREPOSITORY_JAR=@LIBREPOSITORY_JAR@
 export LIBSERIALIZER_JAR=@LIBSERIALIZER_JAR@
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: cui/source desktop/source sd/source sfx2/source svtools/inc svtools/Library_svt.mk svtools/Package_inc.mk svtools/source toolkit/inc toolkit/Library_tk.mk toolkit/Package_inc.

2012-11-12 Thread Libreoffice Gerrit user
 cui/source/dialogs/SpellDialog.cxx|4 
 cui/source/inc/SpellDialog.hxx|   10 -
 cui/source/inc/about.hxx  |1 
 cui/source/inc/optlingu.hxx   |6 
 desktop/source/deployment/gui/dp_gui_dialog2.cxx  |6 
 desktop/source/deployment/gui/dp_gui_dialog2.hxx  |8 -
 desktop/source/deployment/gui/dp_gui_extlistbox.cxx   |2 
 desktop/source/deployment/gui/dp_gui_extlistbox.hxx   |6 
 desktop/source/deployment/gui/dp_gui_updatedialog.cxx |2 
 desktop/source/deployment/gui/dp_gui_updatedialog.hxx |   14 -
 sd/source/ui/dlg/RemoteDialogClientBox.hxx|1 
 sfx2/source/dialog/basedlgs.cxx   |1 
 svtools/Library_svt.mk|1 
 svtools/Package_inc.mk|1 
 svtools/inc/svtools/fixedhyper.hxx|  133 --
 svtools/inc/svtools/templdlg.hxx  |4 
 svtools/source/control/fixedhyper.cxx |  133 --
 svtools/source/uno/unoiface.cxx   |4 
 toolkit/Library_tk.mk |1 
 toolkit/Package_inc.mk|1 
 toolkit/inc/toolkit/helper/fixedhyperbase.hxx |   50 --
 toolkit/source/awt/vclxwindows.cxx|   14 -
 toolkit/source/helper/fixedhyperbase.cxx  |   63 
 vcl/Library_vcl.mk|1 
 vcl/Package_inc.mk|1 
 vcl/inc/vcl/fixedhyper.hxx|  127 +
 vcl/source/control/fixedhyper.cxx |  133 ++
 vcl/source/window/builder.cxx |3 
 28 files changed, 305 insertions(+), 426 deletions(-)

New commits:
commit 040e022d06ecadc36d3ef5c52178095a4d2c828a
Author: Caolán McNamara caol...@redhat.com
Date:   Sat Nov 10 23:22:47 2012 +

move svtools's FixedHyper.hxx to vcl

merge with fixedhyperbase and map GtkLinkButton
to FixedHyper. Convert to String while I'm at it.

Change-Id: Ibc61fd29c01796561eeef952a159c82ff215a095

diff --git a/cui/source/dialogs/SpellDialog.cxx 
b/cui/source/dialogs/SpellDialog.cxx
index 54f94cf..b5ba380 100644
--- a/cui/source/dialogs/SpellDialog.cxx
+++ b/cui/source/dialogs/SpellDialog.cxx
@@ -420,7 +420,7 @@ void SpellDialog::UpdateBoxes_Impl()
 }
 else
 {
-bool bHasExplainLink = aExplainLink.GetURL().Len() != 0;
+bool bHasExplainLink = !aExplainLink.GetURL().isEmpty();
 aExplainLink.Show( bHasExplainLink );
 
 sal_Int32 nExplainWidth = aExplainLink.GetPosPixel().X() - 
aExplainFT.GetPosPixel().X();
@@ -2156,7 +2156,7 @@ void  SentenceEditWindow_Impl::SetUndoEditMode(bool bSet)
 pSpellDialog-aChangePB.Enable();
 }
 
-IMPL_LINK( SpellDialog, HandleHyperlink, svt::FixedHyperlink*, pHyperlink )
+IMPL_LINK( SpellDialog, HandleHyperlink, FixedHyperlink*, pHyperlink )
 {
 rtl::OUString sURL=pHyperlink-GetURL();
 rtl::OUString sTitle=GetText();
diff --git a/cui/source/inc/SpellDialog.hxx b/cui/source/inc/SpellDialog.hxx
index b2a9f94..4161407 100644
--- a/cui/source/inc/SpellDialog.hxx
+++ b/cui/source/inc/SpellDialog.hxx
@@ -36,7 +36,7 @@
 #include memory
 #include svtools/svmedit.hxx
 #include svl/lstner.hxx
-#include svtools/fixedhyper.hxx
+#include vcl/fixedhyper.hxx
 #include vcl/xtextedt.hxx
 #include editeng/SpellPortions.hxx
 
@@ -137,10 +137,10 @@ private:
 FixedText   aLanguageFT;
 SvxLanguageBox  aLanguageLB;
 
-HelpFixedText   aExplainFT;
-svt::FixedHyperlink aExplainLink;
+HelpFixedText   aExplainFT;
+FixedHyperlink  aExplainLink;
 
-FixedText   aNotInDictFT;
+FixedText   aNotInDictFT;
 SentenceEditWindow_Impl  aSentenceED;
 
 FixedText   aSuggestionFT;
@@ -201,7 +201,7 @@ private:
 DECL_LINK( AddToDictClickHdl, PushButton* );
 DECL_LINK( LanguageSelectHdl, SvxLanguageBox* );
 DECL_LINK( DialogUndoHdl, SpellUndoAction_Impl* );
-DECL_LINK( HandleHyperlink, svt::FixedHyperlink * );
+DECL_LINK( HandleHyperlink, FixedHyperlink * );
 
 DECL_STATIC_LINK( SpellDialog, InitHdl, SpellDialog * );
 
diff --git a/cui/source/inc/about.hxx b/cui/source/inc/about.hxx
index 28e2fa5..4f824e3 100644
--- a/cui/source/inc/about.hxx
+++ b/cui/source/inc/about.hxx
@@ -23,7 +23,6 @@
 #include vcl/accel.hxx
 #include svtools/svmedit.hxx
 #include svtools/stdctrl.hxx
-#include svtools/fixedhyper.hxx
 #include sfx2/basedlgs.hxx/// for SfxModalDialog
 #include vector
 
diff --git a/cui/source/inc/optlingu.hxx b/cui/source/inc/optlingu.hxx
index 75e4b12..b870f61 100644
--- a/cui/source/inc/optlingu.hxx
+++ b/cui/source/inc/optlingu.hxx
@@ -23,7 +23,7 @@
 #include vcl/fixed.hxx
 #include vcl/toolbox.hxx
 #include vcl/field.hxx
-#include 

[Libreoffice-commits] .: canvas/source

2012-11-12 Thread Libreoffice Gerrit user
 canvas/source/cairo/cairo_canvashelper.cxx   |   10 -
 canvas/source/cairo/cairo_canvashelper.hxx   |5 
 canvas/source/cairo/cairo_spritedevicehelper.cxx |5 
 canvas/source/cairo/cairo_spritedevicehelper.hxx |1 
 canvas/source/cairo/cairo_textlayout.cxx |   24 ---
 canvas/source/cairo/cairo_textlayout.hxx |1 
 6 files changed, 46 deletions(-)

New commits:
commit ea7a809700ea0ee6d830e493c57ff272364e344a
Author: José Guilherme Vanz guilherme@gmail.com
Date:   Sat Nov 10 02:41:41 2012 -0200

unusedcode.ease cleanup

This commit removes some unused code from unusedcode.easy

Change-Id: If3cad67a508cc85dbffd70d6344e1427bac0c775
Signed-off-by: José Guilherme Vanz guilherme@gmail.com
Reviewed-on: https://gerrit.libreoffice.org/1021
Reviewed-by: Tor Lillqvist t...@iki.fi
Tested-by: Tor Lillqvist t...@iki.fi

diff --git a/canvas/source/cairo/cairo_canvashelper.cxx 
b/canvas/source/cairo/cairo_canvashelper.cxx
index 8c0f03e..f18d2dc 100644
--- a/canvas/source/cairo/cairo_canvashelper.cxx
+++ b/canvas/source/cairo/cairo_canvashelper.cxx
@@ -1626,12 +1626,6 @@ namespace cairocanvas
 return uno::Sequence sal_Int8 ();
 }
 
-uno::Reference rendering::XBitmapPalette  CanvasHelper::getPalette()
-{
-// TODO(F1): Palette bitmaps NYI
-return uno::Reference rendering::XBitmapPalette ();
-}
-
 namespace
 {
 class CairoColorSpace : public cppu::WeakImplHelper1 
com::sun::star::rendering::XIntegerBitmapColorSpace 
@@ -2020,10 +2014,6 @@ namespace cairocanvas
 return aLayout;
 }
 
-void CanvasHelper::flush() const
-{
-}
-
 bool CanvasHelper::hasAlpha() const
 {
 return mbHaveAlpha;
diff --git a/canvas/source/cairo/cairo_canvashelper.hxx 
b/canvas/source/cairo/cairo_canvashelper.hxx
index c16edf3..3ae1de7 100644
--- a/canvas/source/cairo/cairo_canvashelper.hxx
+++ b/canvas/source/cairo/cairo_canvashelper.hxx
@@ -244,13 +244,8 @@ namespace cairocanvas
 getPixel( ::com::sun::star::rendering::IntegerBitmapLayout 
bitmapLayout,
   const ::com::sun::star::geometry::IntegerPoint2D pos );
 
-::com::sun::star::uno::Reference 
::com::sun::star::rendering::XBitmapPalette  getPalette();
-
 ::com::sun::star::rendering::IntegerBitmapLayout getMemoryLayout();
 
-// Flush drawing queue to screen
-voidflush() const;
-
 /** Called from XCanvas base classes, to notify that content
 is _about_ to change
 */
diff --git a/canvas/source/cairo/cairo_spritedevicehelper.cxx 
b/canvas/source/cairo/cairo_spritedevicehelper.cxx
index caf867c..4657717 100644
--- a/canvas/source/cairo/cairo_spritedevicehelper.cxx
+++ b/canvas/source/cairo/cairo_spritedevicehelper.cxx
@@ -144,11 +144,6 @@ namespace cairocanvas
 setSize( ::basegfx::B2ISize(rBounds.Width, rBounds.Height) );
 }
 
-SurfaceSharedPtr SpriteDeviceHelper::getSurface()
-{
-return mpBufferSurface;
-}
-
 SurfaceSharedPtr SpriteDeviceHelper::getBufferSurface()
 {
 return mpBufferSurface;
diff --git a/canvas/source/cairo/cairo_spritedevicehelper.hxx 
b/canvas/source/cairo/cairo_spritedevicehelper.hxx
index 7236400..01672e7 100644
--- a/canvas/source/cairo/cairo_spritedevicehelper.hxx
+++ b/canvas/source/cairo/cairo_spritedevicehelper.hxx
@@ -64,7 +64,6 @@ namespace cairocanvas
 void notifySizeUpdate( const ::com::sun::star::awt::Rectangle rBounds 
);
 void setSize( const ::basegfx::B2ISize rSize );
 
-::cairo::SurfaceSharedPtr getSurface();
 ::cairo::SurfaceSharedPtr getBufferSurface();
 ::cairo::SurfaceSharedPtr getWindowSurface();
 ::cairo::SurfaceSharedPtr createSurface( const ::basegfx::B2ISize 
rSize, ::cairo::Content aContent = CAIRO_CONTENT_COLOR_ALPHA );
diff --git a/canvas/source/cairo/cairo_textlayout.cxx 
b/canvas/source/cairo/cairo_textlayout.cxx
index 317ea26..66b0f40 100644
--- a/canvas/source/cairo/cairo_textlayout.cxx
+++ b/canvas/source/cairo/cairo_textlayout.cxx
@@ -310,30 +310,6 @@ namespace cairocanvas
 cairo_set_font_size( pCairo, aFontRequest.CellSize );
 }
 
-  /** TextLayout:draw
-   *
-   * This function uses the toy api of the cairo library
-   *
-   **/
-bool TextLayout::draw( Cairo* pCairo )
-{
-::osl::MutexGuard aGuard( m_aMutex );
-
-::rtl::OUString aSubText = maText.Text.copy( maText.StartPosition, 
maText.Length );
-::rtl::OString aUTF8String = ::rtl::OUStringToOString( aSubText, 
RTL_TEXTENCODING_UTF8 );
-
-cairo_save( pCairo );
-/* move to 0, 0 as cairo_show_text advances current point and current 
point is not restored by cairo_restore.
-   before we were depending on unmodified current point which I 
believed was preserved by save/restore */
-cairo_move_to( pCairo, 0, 0 );
-

Adding vcl library to sdext module

2012-11-12 Thread Michael Meeks (via Code Review)
Michael Meeks has abandoned this change.

Change subject: Adding vcl library to sdext module
..


Patch Set 1: Abandoned

This is a subset of the better subseqent fix - lets handle it there :-) thanks !

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

Gerrit-MessageType: abandon
Gerrit-Change-Id: I8dd862373c2715620464e49567d2de850de10019
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Issa Alkurtass ialkurt...@kacst.edu.sa
Gerrit-Reviewer: Issa Alkurtass ialkurt...@kacst.edu.sa
Gerrit-Reviewer: Michael Meeks michael.me...@suse.com
Gerrit-Reviewer: Stephan Bergmann sberg...@redhat.com

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


[Libreoffice-commits] .: Branch 'libreoffice-3-6' - 2 commits - sc/source

2012-11-12 Thread Libreoffice Gerrit user
 sc/source/ui/dbgui/tpsort.cxx |5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

New commits:
commit 7bb3480f5428c5925e5fa11bfdaf7ded784e2976
Author: Markus Mohrhard markus.mohrh...@googlemail.com
Date:   Mon Nov 12 03:07:38 2012 +0100

only set entries for existing sort entries, related fdo#56958

Change-Id: Ib48606402fb90b259f705badeac294d7c336cb9c
(cherry picked from commit c45b6496e87fe74570a41821bc5f4fbdb3d3cf8e)

Signed-off-by: David Tardon dtar...@redhat.com

diff --git a/sc/source/ui/dbgui/tpsort.cxx b/sc/source/ui/dbgui/tpsort.cxx
index c9c7707..38724dd 100644
--- a/sc/source/ui/dbgui/tpsort.cxx
+++ b/sc/source/ui/dbgui/tpsort.cxx
@@ -164,7 +164,7 @@ void ScTabPageSortFields::Reset( const SfxItemSet /* 
rArgSet */ )
 {
 for ( sal_uInt16 i=0; inSortKeyCount; i++ )
 {
-if ( aSortData.maKeyState[i].bDoSort )
+if ( i  aSortData.maKeyState.size()  
aSortData.maKeyState[i].bDoSort )
 {
 maSortKeyItems[i].aLbSort.SelectEntryPos( GetFieldSelPos(
 aSortData.maKeyState[i].nField ) );
commit fb1d5fbc36ee33a818477413be9ffe2a9e5f6143
Author: Markus Mohrhard markus.mohrh...@googlemail.com
Date:   Mon Nov 12 03:08:54 2012 +0100

make sure that the sort vector is large enough, fdo#56958

Change-Id: I7099e984a8b05ccd3324f3b9231c193e716eaf83
(cherry picked from commit cd545dcf511daedd548c11159b8c244f272e9cb6)

Signed-off-by: David Tardon dtar...@redhat.com

diff --git a/sc/source/ui/dbgui/tpsort.cxx b/sc/source/ui/dbgui/tpsort.cxx
index 7ebbb47..c9c7707 100644
--- a/sc/source/ui/dbgui/tpsort.cxx
+++ b/sc/source/ui/dbgui/tpsort.cxx
@@ -236,6 +236,9 @@ sal_Bool ScTabPageSortFields::FillItemSet( SfxItemSet 
rArgSet )
 if ( nSortPos[i] == LISTBOX_ENTRY_NOTFOUND ) nSortPos[i] = 0;
 }
 
+if( nSortKeyCount = aNewSortData.maKeyState.size() )
+aNewSortData.maKeyState.resize(nSortKeyCount);
+
 if ( nSortPos[0]  0 )
 {
 for ( sal_uInt16 i=0; inSortKeyCount; i++ )
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[PUSHED] unusedcode.ease cleanup

2012-11-12 Thread Tor Lillqvist (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/1021

Approvals:
  Tor Lillqvist: Verified; Looks good to me, approved


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

Gerrit-MessageType: merged
Gerrit-Change-Id: If3cad67a508cc85dbffd70d6344e1427bac0c775
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: José Guilherme Vanz guilherme@gmail.com
Gerrit-Reviewer: Tor Lillqvist t...@iki.fi

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


Re: [REVIEWED 3-6] fix for fdo#56958, two problems around the sort dialog

2012-11-12 Thread David Tardon
Hi,

On Mon, Nov 12, 2012 at 06:22:49AM +0100, Markus Mohrhard wrote:
 Hey,
 
 [1] and [2] fix two problems around the sort dialog that have been
 introduced with the unlimited number of sort entries. We have to make
 sure that we don't access out of bounds entries.

Pushed.

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


[Libreoffice-commits] .: i18npool/CppunitTest_i18npool_test_textsearch.mk i18npool/Library_i18nsearch.mk

2012-11-12 Thread Libreoffice Gerrit user
 i18npool/CppunitTest_i18npool_test_textsearch.mk |2 +-
 i18npool/Library_i18nsearch.mk   |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 62336df8416ed13f62f7cfad4eb3b1b5c0249a9a
Author: Tor Lillqvist tlillqv...@suse.com
Date:   Mon Nov 12 14:02:01 2012 +0200

The icui18n library is called icuin in a MSVC build for some reason

Change-Id: I2fe03d438f52c31d0615f124f4d0a7ced2136928

diff --git a/i18npool/CppunitTest_i18npool_test_textsearch.mk 
b/i18npool/CppunitTest_i18npool_test_textsearch.mk
index 8331cbd..ddffaf0 100644
--- a/i18npool/CppunitTest_i18npool_test_textsearch.mk
+++ b/i18npool/CppunitTest_i18npool_test_textsearch.mk
@@ -30,7 +30,7 @@ $(eval $(call 
gb_CppunitTest_use_libraries,i18npool_test_textsearch,\
cppuhelper \
sal \
icuuc \
-   icui18n \
+   $(if $(filter MSC,$(COM)),icuin,icui18n) \
unotest \
$(gb_UWINAPI) \
 ))
diff --git a/i18npool/Library_i18nsearch.mk b/i18npool/Library_i18nsearch.mk
index 5778b13..2d5b463 100644
--- a/i18npool/Library_i18nsearch.mk
+++ b/i18npool/Library_i18nsearch.mk
@@ -43,7 +43,7 @@ $(eval $(call gb_Library_use_libraries,i18nsearch,\
cppu \
cppuhelper \
icuuc \
-   icui18n \
+   $(if $(filter MSC,$(COM)),icuin,icui18n) \
sal \
$(gb_UWINAPI) \
 ))
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: config.log for failed build in tinderbox Win-x86_6

2012-11-12 Thread Korrawit Pruegsanusak
Hello,

On Mon, Nov 12, 2012 at 1:29 PM, Korrawit Pruegsanusak
detective.conan.1...@gmail.com wrote:
 I just built master updated today at
 a1ac2538e9b287444500618ab4d2f0f06c25cf34, and it failed with same
 error as tinderbox Win-x86_6 -- liblangtag configure failed [1].

Seems fixed with Tor Lillqvist's
http://cgit.freedesktop.org/libreoffice/core/commit/?id=40e9afbf745bdac5f8fb27fd8f2205cde6683697
Thanks Tor! :-)

Best Regards,
--
Korrawit Pruegsanusak
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] .: Branch 'libreoffice-3-6' - sfx2/inc sfx2/source

2012-11-12 Thread Libreoffice Gerrit user
 sfx2/inc/sfx2/tabdlg.hxx  |4 
 sfx2/source/dialog/tabdlg.cxx |   19 +++
 2 files changed, 19 insertions(+), 4 deletions(-)

New commits:
commit 6a2c81b9a5cfa80bbc05c7d2fdd7c634ed26ac82
Author: Travis Carter b...@traviswcarter.com
Date:   Thu Jun 21 19:25:19 2012 -0500

Related: fdo#38606 Properly store dialog's position and current page

Dialog's position and current page weren't always being stored. Moved code 
from the destructor to SfxTabDialog::Ok() so that it will execute everytime Ok 
or Apply is clicked.

(cherry picked from commit d800847be075dc7420e2655ba8167cc4f9436dc9)

Change-Id: Iddee68a7b22749db50c8c78613be11c8ba5500c6

diff --git a/sfx2/inc/sfx2/tabdlg.hxx b/sfx2/inc/sfx2/tabdlg.hxx
index 36d7891..aa77164 100644
--- a/sfx2/inc/sfx2/tabdlg.hxx
+++ b/sfx2/inc/sfx2/tabdlg.hxx
@@ -119,6 +119,10 @@ protected:
 */
 bool PrepareLeaveCurrentPage();
 
+/** save the position of the TabDialog and which tab page is the currently 
active one
+ */
+void SavePosAndId();
+
 public:
 SfxTabDialog( Window* pParent, const ResId rResId, const SfxItemSet * = 0,
   sal_Bool bEditFmt = sal_False, const String *pUserButtonText 
= 0 );
diff --git a/sfx2/source/dialog/tabdlg.cxx b/sfx2/source/dialog/tabdlg.cxx
index fe4e8be..10f30ca 100644
--- a/sfx2/source/dialog/tabdlg.cxx
+++ b/sfx2/source/dialog/tabdlg.cxx
@@ -468,10 +468,7 @@ SfxTabDialog::SfxTabDialog
 
 SfxTabDialog::~SfxTabDialog()
 {
-// save settings (screen position and current page)
-SvtViewOptions aDlgOpt( E_TABDIALOG, String::CreateFromInt32( nResId ) );
-
aDlgOpt.SetWindowState(OStringToOUString(GetWindowState(WINDOWSTATE_MASK_POS),RTL_TEXTENCODING_ASCII_US));
-aDlgOpt.SetPageID( aTabCtrl.GetCurPageId() );
+SavePosAndId();
 
 const sal_uInt16 nCount = pImpl-pData-Count();
 for ( sal_uInt16 i = 0; i  nCount; ++i )
@@ -877,6 +874,14 @@ SfxTabPage* SfxTabDialog::GetTabPage( sal_uInt16 nPageId ) 
const
 return NULL;
 }
 
+void SfxTabDialog::SavePosAndId()
+{
+// save settings (screen position and current page)
+SvtViewOptions aDlgOpt( E_TABDIALOG, String::CreateFromInt32( nResId ) );
+
aDlgOpt.SetWindowState(OStringToOUString(GetWindowState(WINDOWSTATE_MASK_POS),RTL_TEXTENCODING_ASCII_US));
+aDlgOpt.SetPageID( aTabCtrl.GetCurPageId() );
+}
+
 // ---
 
 short SfxTabDialog::Ok()
@@ -884,6 +889,10 @@ short SfxTabDialog::Ok()
 /*  [Description]
 
 Ok handler for the Dialogue.
+
+Dialog's current location and current page are saved for the next time
+the dialog is shown.
+
 The OutputSet is created and for each page this or the special OutputSet
 is set by calling the method SfxTabPage::FillItemSet(SfxItemSet ), to
 insert the entered data by the user into the set.
@@ -895,6 +904,8 @@ short SfxTabDialog::Ok()
 */
 
 {
+SavePosAndId(); //See fdo#38828 Apply resetting window position
+
 pImpl-bInOK = sal_True;
 
 if ( !pOutSet )
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: Branch 'libreoffice-3-5' - sc/source

2012-11-12 Thread Libreoffice Gerrit user
 sc/source/filter/xml/xmlimprt.cxx |3 +++
 1 file changed, 3 insertions(+)

New commits:
commit 7ba78c7712abb83f515e45a744786af45a7fbc64
Author: Kohei Yoshida kohei.yosh...@gmail.com
Date:   Tue Aug 14 16:46:44 2012 -0400

Resolves: fdo#56009 fdo#54695 Calculate positions of cell-anchored objects

on ods import

Since we no longer re-calc row heights on ods import, we need to do
this manually, in order to position cell-anchored objects correctly.
Previously we were getting this for free since the row height recalc
code path did it as part of it.

Signed-off-by: Noel Power noel.po...@suse.com
(cherry picked from commit 89e34ef5e4ff5efc202656bd9a2122745fdc6530)

Change-Id: I8ab5dd1fe7cd8a45b7968e101c893b442d7ce132
Signed-off-by: Caolán McNamara caol...@redhat.com

diff --git a/sc/source/filter/xml/xmlimprt.cxx 
b/sc/source/filter/xml/xmlimprt.cxx
index 166cef9..6a67c6a 100644
--- a/sc/source/filter/xml/xmlimprt.cxx
+++ b/sc/source/filter/xml/xmlimprt.cxx
@@ -2929,8 +2929,11 @@ throw( ::com::sun::star::xml::sax::SAXException, 
::com::sun::star::uno::RuntimeE
 
 SCTAB nTabCount = pDoc-GetTableCount();
 for (SCTAB nTab=0; nTabnTabCount; ++nTab)
+{
+pDoc-SetDrawPageSize(nTab);
 if (!pSheetData-IsSheetBlocked( nTab ))
 pDoc-SetStreamValid( nTab, true );
+}
 }
 
 aTables.FixupOLEs();
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Bug 37361] LibreOffice 3.5 most annoying bugs

2012-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=37361

Bug 37361 depends on bug 56009, which changed state.

Bug 56009 Summary: FORMATTING: Objects anchored to cell wrongly positionned to 
A1
https://bugs.freedesktop.org/show_bug.cgi?id=56009

   What|Removed |Added

 Status|NEW |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


[Libreoffice-commits] .: i18npool/Library_i18nsearch.mk

2012-11-12 Thread Libreoffice Gerrit user
 i18npool/Library_i18nsearch.mk |   12 
 1 file changed, 12 insertions(+)

New commits:
commit 632393c9e6484918a409be96d1c93ed3d6b71ec4
Author: Michael Meeks michael.me...@suse.com
Date:   Mon Nov 12 12:57:35 2012 +

add missing use exernals for icu pieces in textsearch

diff --git a/i18npool/Library_i18nsearch.mk b/i18npool/Library_i18nsearch.mk
index 2d5b463..b74eff8 100644
--- a/i18npool/Library_i18nsearch.mk
+++ b/i18npool/Library_i18nsearch.mk
@@ -38,6 +38,18 @@ $(eval $(call gb_Library_set_include,i18nsearch,\
 
 $(eval $(call gb_Library_use_sdk_api,i18nsearch))
 
+ifeq ($(OS)$(COM),WNTMSC)
+$(eval $(call gb_Library_use_externals,i18nsearch,\
+   icuin \
+   icuuc \
+))
+else
+$(eval $(call gb_Library_use_externals,i18nsearch,\
+   icui18n \
+   icuuc \
+))
+endif
+
 $(eval $(call gb_Library_use_libraries,i18nsearch,\
comphelper \
cppu \
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: Adding icons to the template manager

2012-11-12 Thread Jan Holesovsky
Hi Alex,

Alexander Wilms píše v Po 12. 11. 2012 v 07:51 +0100:

 I want to add some icons to the toolbar in the new template manager
 (/sfx2/source/doc/templatedlg.src)
 
 I added lines like
 
 ButtonImage = Image
 {
  ImageBitmap = Bitmap { File = document_edit.png ; };
 };
 
 for each ToolBoxItem, but when trying to compile I get this error:
 
 ImageBitmap = Bitmap { File = document_edit.png ; };
 ^
 f643:
 /home/alexander/libo/workdir/unxlngx6.pro/SrsPartMergeTarget/sfx2/source/doc/templatedlg.src,
 line 282: Error in the object (Type: ToolBoxItem):
 The variable ButtonImage must not be used here.

The ToolBoxItems cannot contain ButtonImages.  If you want to add a
icons to a 'ToolBoxItem', you need to do it like it is visible in eg.

sd/source/ui/dlg/navigatr.src

Ie. first create the ToolBoxItems, and then later, create an ImageList.
The images there have to have names like something01.png,
something02.png, etc.   The something part is controlled by the
Prefix in the ImageList, the number is given by the IdList.

Hopefully this works for you, please let me know if not.

All the best,
Kendy

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


[Libreoffice-commits] .: sc/Module_sc.mk sc/qa

2012-11-12 Thread Libreoffice Gerrit user
 sc/Module_sc.mk  |   29 -
 sc/qa/unit/data/xls/pass/EDB-22591-1.xls |binary
 2 files changed, 29 deletions(-)

New commits:
commit 49b8408e028881b8628ca472a028318ec7b32282
Author: Caolán McNamara caol...@redhat.com
Date:   Mon Nov 12 13:16:22 2012 +

add test for EDB-22591

Change-Id: I58b22ab27de3069ae10f68ab0e844a439e6049ce

diff --git a/sc/Module_sc.mk b/sc/Module_sc.mk
index 7f4cf50..cf004c7 100644
--- a/sc/Module_sc.mk
+++ b/sc/Module_sc.mk
@@ -43,36 +43,7 @@ $(eval $(call gb_Module_add_targets,sc,\
 endif
 
 $(eval $(call gb_Module_add_check_targets,sc,\
-CppunitTest_sc_ucalc \
 CppunitTest_sc_filters_test \
-CppunitTest_sc_rangelst_test \
-))
-
-$(eval $(call gb_Module_add_slowcheck_targets,sc, \
-CppunitTest_sc_subsequent_filters_test \
-CppunitTest_sc_subsequent_export_test \
-))
-
-# Disabled to allow the check tinderbox execute the sd tests
-#CppunitTest_sc_chart_regression_test \
-
-$(eval $(call gb_Module_add_subsequentcheck_targets,sc,\
-JunitTest_sc_complex \
-JunitTest_sc_unoapi \
-CppunitTest_sc_annotationshapeobj \
-CppunitTest_sc_cellrangeobj \
-$(if $(filter-out $(OS),IOS), \
-   CppunitTest_sc_databaserangeobj) \
-CppunitTest_sc_datapilottableobj \
-CppunitTest_sc_datapilotfieldobj \
-CppunitTest_sc_macros_test \
-CppunitTest_sc_namedrangeobj \
-CppunitTest_sc_namedrangesobj \
-CppunitTest_sc_tablesheetobj \
-CppunitTest_sc_tablesheetsobj \
-CppunitTest_sc_editfieldobj_cell \
-CppunitTest_sc_editfieldobj_header \
-CppunitTest_sc_modelobj \
 ))
 
 # vim: set noet sw=4 ts=4:
diff --git a/sc/qa/unit/data/xls/pass/EDB-22591-1.xls 
b/sc/qa/unit/data/xls/pass/EDB-22591-1.xls
new file mode 100644
index 000..7cc7846
Binary files /dev/null and b/sc/qa/unit/data/xls/pass/EDB-22591-1.xls differ
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: sal/inc sal/osl

2012-11-12 Thread Libreoffice Gerrit user
 sal/inc/osl/diagnose.hxx  |6 ++
 sal/osl/all/debugbase.cxx |5 +
 2 files changed, 3 insertions(+), 8 deletions(-)

New commits:
commit a9966a47409a0149d936ba2a2650bc20cc52cce2
Author: Tor Lillqvist tlillqv...@suse.com
Date:   Mon Nov 12 15:18:58 2012 +0200

WaE: C-linkage specified, but returns user-defined type

Clang says: 'osl_detail_ObjectRegistry_getMutex' has C-linkage
specified, but returns user-defined type '::osl::Mutex ' which is
incompatible with C.

Let's continue disabling that warning also also in 4.0 and later.

Change-Id: I892bdc7e7aa6d546adf6b1c388e4c149db738948

diff --git a/sal/inc/osl/diagnose.hxx b/sal/inc/osl/diagnose.hxx
index 2c7e8c0..7ae1554 100644
--- a/sal/inc/osl/diagnose.hxx
+++ b/sal/inc/osl/diagnose.hxx
@@ -76,7 +76,6 @@ SAL_DLLPUBLIC void SAL_CALL 
osl_detail_ObjectRegistry_revokeObject(
 
 // These functions presumably should not be extern C, but changing
 // that would break binary compatibility.
-#if SUPD  400
 #ifdef __clang__
 #pragma clang diagnostic push
 // Guard against slightly older clang versions that don't have
@@ -84,14 +83,13 @@ SAL_DLLPUBLIC void SAL_CALL 
osl_detail_ObjectRegistry_revokeObject(
 #pragma clang diagnostic ignored -Wunknown-pragmas
 #pragma clang diagnostic ignored -Wreturn-type-c-linkage
 #endif
-#endif
+
 SAL_DLLPUBLIC ::osl::Mutex  SAL_CALL osl_detail_ObjectRegistry_getMutex()
 SAL_THROW_EXTERN_C();
-#if SUPD  400
+
 #ifdef __clang__
 #pragma clang diagnostic pop
 #endif
-#endif
 
 } // extern C
 
diff --git a/sal/osl/all/debugbase.cxx b/sal/osl/all/debugbase.cxx
index 3b468fa..02e86b7 100644
--- a/sal/osl/all/debugbase.cxx
+++ b/sal/osl/all/debugbase.cxx
@@ -83,7 +83,6 @@ extern C {
 
 // These functions presumably should not be extern C, but changing
 // that would break binary compatibility.
-#if SUPD  400
 #ifdef __clang__
 #pragma clang diagnostic push
 // Guard against slightly older clang versions that don't have
@@ -91,17 +90,15 @@ extern C {
 #pragma clang diagnostic ignored -Wunknown-pragmas
 #pragma clang diagnostic ignored -Wreturn-type-c-linkage
 #endif
-#endif
+
 osl::Mutex  SAL_CALL osl_detail_ObjectRegistry_getMutex()
 SAL_THROW_EXTERN_C()
 {
 return DebugBaseMutex::get();
 }
-#if SUPD  400
 #ifdef __clang__
 #pragma clang diagnostic pop
 #endif
-#endif
 
 bool SAL_CALL osl_detail_ObjectRegistry_storeAddresses( char const* pName )
 SAL_THROW_EXTERN_C()
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: sc/Module_sc.mk

2012-11-12 Thread Libreoffice Gerrit user
 sc/Module_sc.mk |   29 +
 1 file changed, 29 insertions(+)

New commits:
commit 701b6faef5051af92428efa737f98394e6358f25
Author: Caolán McNamara caol...@redhat.com
Date:   Mon Nov 12 13:27:40 2012 +

revert accidental removal of some tests

Change-Id: Id2680f16607a3c9bf87c76c8eb2c1f8a84948510

diff --git a/sc/Module_sc.mk b/sc/Module_sc.mk
index cf004c7..7f4cf50 100644
--- a/sc/Module_sc.mk
+++ b/sc/Module_sc.mk
@@ -43,7 +43,36 @@ $(eval $(call gb_Module_add_targets,sc,\
 endif
 
 $(eval $(call gb_Module_add_check_targets,sc,\
+CppunitTest_sc_ucalc \
 CppunitTest_sc_filters_test \
+CppunitTest_sc_rangelst_test \
+))
+
+$(eval $(call gb_Module_add_slowcheck_targets,sc, \
+CppunitTest_sc_subsequent_filters_test \
+CppunitTest_sc_subsequent_export_test \
+))
+
+# Disabled to allow the check tinderbox execute the sd tests
+#CppunitTest_sc_chart_regression_test \
+
+$(eval $(call gb_Module_add_subsequentcheck_targets,sc,\
+JunitTest_sc_complex \
+JunitTest_sc_unoapi \
+CppunitTest_sc_annotationshapeobj \
+CppunitTest_sc_cellrangeobj \
+$(if $(filter-out $(OS),IOS), \
+   CppunitTest_sc_databaserangeobj) \
+CppunitTest_sc_datapilottableobj \
+CppunitTest_sc_datapilotfieldobj \
+CppunitTest_sc_macros_test \
+CppunitTest_sc_namedrangeobj \
+CppunitTest_sc_namedrangesobj \
+CppunitTest_sc_tablesheetobj \
+CppunitTest_sc_tablesheetsobj \
+CppunitTest_sc_editfieldobj_cell \
+CppunitTest_sc_editfieldobj_header \
+CppunitTest_sc_modelobj \
 ))
 
 # vim: set noet sw=4 ts=4:
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: i18npool/source

2012-11-12 Thread Libreoffice Gerrit user
 i18npool/source/localedata/data/he_IL.xml |9 -
 1 file changed, 8 insertions(+), 1 deletion(-)

New commits:
commit dcbf9238ba3354aafbcbfa0c15980587cf31fe96
Author: Lior Kaplan kaplanl...@gmail.com
Date:   Fri Nov 9 23:33:41 2012 +0100

fdo#46807: Add LRM before Shekel sign, forcing it to appear left of numbers

introducing new Currency element and marking previous as legacyOnly

Change-Id: I40a762bf03a15f241fc80279bb61be9a2710d2f0
Reviewed-on: https://gerrit.libreoffice.org/967
Reviewed-by: Lior Kaplan kaplanl...@gmail.com
Tested-by: Lior Kaplan kaplanl...@gmail.com
Reviewed-by: Eike Rathke er...@redhat.com

diff --git a/i18npool/source/localedata/data/he_IL.xml 
b/i18npool/source/localedata/data/he_IL.xml
index e8ddb3e..4adbbc8 100644
--- a/i18npool/source/localedata/data/he_IL.xml
+++ b/i18npool/source/localedata/data/he_IL.xml
@@ -51,7 +51,7 @@
 TimePMPM/TimePM
 MeasurementSystemmetric/MeasurementSystem
   /LC_CTYPE
-  LC_FORMAT replaceFrom=[CURRENCY] replaceTo=[$₪-40D]
+  LC_FORMAT replaceFrom=[CURRENCY] replaceTo=[$‎₪-40D]
 DateAcceptancePatternD/M/DateAcceptancePattern
 FormatElement msgid=DateFormatskey1 default=true type=short 
usage=DATE formatindex=18
   FormatCodeD/M/YY/FormatCode
@@ -414,6 +414,13 @@
   LC_CURRENCY
 Currency default=true usedInCompatibleFormatCodes=true
   CurrencyIDILS/CurrencyID
+  CurrencySymbol‎₪/CurrencySymbol
+  BankSymbolILS/BankSymbol
+  CurrencyNameNew Israeli Sheqel/CurrencyName
+  DecimalPlaces2/DecimalPlaces
+/Currency
+Currency default=false usedInCompatibleFormatCodes=false 
legacyOnly=true
+  CurrencyIDILS/CurrencyID
   CurrencySymbol₪/CurrencySymbol
   BankSymbolILS/BankSymbol
   CurrencyNameNew Israeli Sheqel/CurrencyName
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[PUSHED] fdo#46807: Add LRM before Shekel sign, forcing it to appear ...

2012-11-12 Thread Eike Rathke (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/967

Approvals:
  Lior Kaplan: Verified; Looks good to me, but someone else must approve
  Eike Rathke: Looks good to me, approved


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

Gerrit-MessageType: merged
Gerrit-Change-Id: I40a762bf03a15f241fc80279bb61be9a2710d2f0
Gerrit-PatchSet: 4
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Lior Kaplan kaplanl...@gmail.com
Gerrit-Reviewer: Eike Rathke er...@redhat.com
Gerrit-Reviewer: Lior Kaplan kaplanl...@gmail.com

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


[Libreoffice-commits] .: download external/gdiplus external/prj postprocess/signing readlicense_oo/html readlicense_oo/txt scp2/source

2012-11-12 Thread Libreoffice Gerrit user
 download |   49 ---
 external/gdiplus/README_gdiplus.dll  |1 
 external/prj/d.lst   |2 -
 postprocess/signing/no_signing.txt   |1 
 readlicense_oo/html/LICENSE.html |   19 -
 readlicense_oo/txt/license.txt   |   20 --
 scp2/source/ooo/file_library_ooo.scp |9 --
 7 files changed, 101 deletions(-)

New commits:
commit feaef69321d473d29d3ffa65c950870382f0f5bc
Author: Tor Lillqvist tlillqv...@suse.com
Date:   Mon Nov 12 15:33:58 2012 +0200

Don't bundle gdiplus.dll any more

It was needed for Windows 2000 support.

Change-Id: I1c0bec3fd3c76005b843d62c636410201abfa8e1

diff --git a/download b/download
index 637642d..9a54e7c 100755
--- a/download
+++ b/download
@@ -183,10 +183,6 @@ for i in $filelist ; do
 fi
 done
 
-if [ $COM = MSC ]; then
-downloaditem 
http://download.microsoft.com/download/E/9/F/E9FCA9E9-9908-4D8F-B491-8E8A4C294C01/;
 WindowsXP-KB958911-x86-ENU.exe ff084c5815b0672d54628158b820f5b1
-fi
-
 if [ -f $start_dir/sources.ver -a ! -d $start_dir/.git ] ; then
 # these sources are from a tarball, so get the other source tarballs
 . $start_dir/sources.ver
@@ -230,51 +226,6 @@ if [ $COM = MSC -a $CPUNAME = INTEL ]; then
 echo 
http://www.microsoft.com/downloads/release.asp?releaseid=30682.
 exit 1
 fi
-
-# Windows builds need gdiplus.dll in external/gdiplus/
-if [ ! -f ./external/gdiplus/gdiplus.dll -a -f 
$TARFILE_LOCATION/WindowsXP-KB958911-x86-ENU.exe -a -n $md5sum ]; then
-# This can be run only on Windows itself (Cygwin)
-TMPUNPACK=`cygpath -d $TARFILE_LOCATION/tmp`
-chmod a+w $TARFILE_LOCATION/tmp
-gdiplus_dll_path=SP3QFE/asms/10/msft/windows/gdiplus/gdiplus.dll
-chmod +x $TARFILE_LOCATION/WindowsXP-KB958911-x86-ENU.exe
-
-# Run it through cmd so that the UAC prompt is displayed
-echo
-echo NOTE: We are running the Microsoft KB958911 security fix 
installer
-echo to get gdiplus.dll. You will most probably get a UAC prompt now.
-echo If you trust us, just enter your administrator password.
-echo The security fix is run with the /extract switch to just unpack
-echo its files.
-echo If you don't trust us, just get gdiplus.dll yourself and put it
-echo in external/gdiplus/gdiplus.dll.
-echo gdiplus.dll is included in the LibreOffice installer for the 
benefit of
-echo Windows 2000 users.
-# A few empty lines so that the above is visible even if the taskbar's 
auto-hide is turned on,
-# and the UAC prompt caused it to taise (with a blinking icon for the 
UAC prompt)
-echo
-echo
-echo
-cmd /c `cygpath -w 
$TARFILE_LOCATION/WindowsXP-KB958911-x86-ENU.exe` /extract:$TMPUNPACK /q
-if [ -f $TARFILE_LOCATION/tmp/$gdiplus_dll_path ]; then
-echo Extraction succeeded
-sum=`$md5sum $md5special $TARFILE_LOCATION/tmp/$gdiplus_dll_path | 
sed s/ .*//`
-if [ $sum = 3a95b4d80a3586ab1e2f0c608608ebac ]; then
-cp $TARFILE_LOCATION/tmp/$gdiplus_dll_path 
./external/gdiplus/gdiplus.dll
-else
-echo But unexpected checksum of $gdiplus_dll_path
-fi
-else
-echo WindowsXP-KB958911-x86-ENU.exe did not unpack the expected 
$gdiplus_dll_path
-fi
-fi
-if [ ! -f ./external/gdiplus/gdiplus.dll ]; then
-echo gdiplus.dll is missing in external/gdiplus/.
-echo Get it from the Microsoft site and put it there.
-echo You may have to search Microsoft's website. Last time it was 
seen at:
-echo 
http://www.microsoft.com/downloads/details.aspx?familyid=6A63AB9C-DF12-4D41-933C-BE590FEAA05Adisplaylang=en.
-exit 1
-fi
 fi
 
 if [ $COM = MSC ]; then
diff --git a/external/gdiplus/README_gdiplus.dll 
b/external/gdiplus/README_gdiplus.dll
deleted file mode 100644
index 1384669..000
--- a/external/gdiplus/README_gdiplus.dll
+++ /dev/null
@@ -1 +0,0 @@
-Put the gdiplus.dll in this directory for Windows builds.
diff --git a/external/prj/d.lst b/external/prj/d.lst
index 645fe4a..ae55dd4 100644
--- a/external/prj/d.lst
+++ b/external/prj/d.lst
@@ -28,8 +28,6 @@ mkdir: %_DEST%\inc\external\wine
 
 ..\dbghelp\dbghelp.dll %_DEST%\bin\dbghelp.dll
 
-..\gdiplus\gdiplus.dll %_DEST%\bin\gdiplus.dll
-
 ..\msvcp80\msvcm80*.dll %_DEST%\bin
 ..\msvcp80\msvcp80*.dll %_DEST%\bin
 ..\msvcp80\msvcr80*.dll %_DEST%\bin
diff --git a/postprocess/signing/no_signing.txt 
b/postprocess/signing/no_signing.txt
index e3b1d2a..26ba6aa 100644
--- a/postprocess/signing/no_signing.txt
+++ b/postprocess/signing/no_signing.txt
@@ -8,5 +8,4 @@ policy.1.0.cli_oootypes.dll
 policy.1.0.cli_ure.dll
 policy.1.0.cli_cppuhelper.dll
 policy.1.0.cli_basetypes.dll
-gdiplus.dll
 mingwm10.dll
diff --git a/readlicense_oo/html/LICENSE.html 

[PATCH] Change in core[libreoffice-3-6]: fdo#42558 added Arabic Abjad and other known numberings to P...

2012-11-12 Thread Eike Rathke (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/1041

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/41/1041/1

fdo#42558 added Arabic Abjad and other known numberings to Page Numbering

(cherry picked from commit e5d61932cb6c92954d808cf8d65a460ea19d5799)

fdo#42558 consolidated duplicated code

* Moved almost identical code of
  SvxNumOptionsTabPage::SvxNumOptionsTabPage() and
  SvxPageDescPage::SvxPageDescPage() into static
  SvxNumOptionsTabPage::GetI18nNumbering()
* Removed now unnecessary includes and using namespace directives

(cherry picked from commit 88a083f8be05449630c9e2af30474281fd0d8af2)

Squashed both commits into one.
Signed-off-by: Eike Rathke er...@redhat.com

Change-Id: I87c9cdb2e0c1b7e1a7a24787bacff0e5d218b832
---
M cui/source/inc/numpages.hxx
M cui/source/tabpages/numpages.cxx
M cui/source/tabpages/page.cxx
M cui/source/tabpages/page.src
4 files changed, 110 insertions(+), 65 deletions(-)


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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I87c9cdb2e0c1b7e1a7a24787bacff0e5d218b832
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: libreoffice-3-6
Gerrit-Owner: Eike Rathke er...@redhat.com
Gerrit-Reviewer: Faisal al-otaibi fmalota...@kacst.edu.sa

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


[Libreoffice-commits] .: 2 commits - cppuhelper/source svl/inc

2012-11-12 Thread Libreoffice Gerrit user
 cppuhelper/source/defaultbootstrap.cxx |9 +
 svl/inc/svl/cntwids.hrc|4 ++--
 2 files changed, 7 insertions(+), 6 deletions(-)

New commits:
commit faef84abca7860227730351d7d1cd4e3c4b6e0e5
Author: Tor Lillqvist tlillqv...@suse.com
Date:   Mon Nov 12 16:36:39 2012 +0200

Do stay backward-compatible also in 4.0 and later for now

Change-Id: Ie8f2de8f11f8fec3a9f014bbcc46a506dfb3058d

diff --git a/cppuhelper/source/defaultbootstrap.cxx 
b/cppuhelper/source/defaultbootstrap.cxx
index ccf7447..f27d82c 100644
--- a/cppuhelper/source/defaultbootstrap.cxx
+++ b/cppuhelper/source/defaultbootstrap.cxx
@@ -1100,9 +1100,10 @@ void ServiceManager::insert(css::uno::Any const  
aElement)
 // implement XServiceInfo); the old OServiceManager::insert
 // (stoc/source/servicemanager/servicemanager.cxx) silently did not add such
 // broken factories to its m_ImplementationNameMap, so ignore them here for
-// backwards compatibility of live-insertion of extensions, too (can go again
-// for incompatible LO 4):
-#if SUPD  400
+// backwards compatibility of live-insertion of extensions, too.
+
+// (The plan was that this warning would go away (and we would do the
+// throw instead) for the incompatible LO 4, but we changed our mind):
 css::uno::Reference css::lang::XSingleComponentFactory  legacy;
 if ((aElement = legacy)  legacy.is()) {
 SAL_WARN(
@@ -1110,7 +,7 @@ void ServiceManager::insert(css::uno::Any const  
aElement)
 Ignored XSingleComponentFactory not implementing XServiceInfo);
 return;
 }
-#endif
+
 throw css::lang::IllegalArgumentException(
 Bad insert element, static_cast cppu::OWeakObject * (this), 0);
 }
commit 66ae7df4726ac4a959d77ce258ad1c323f254b9f
Author: Tor Lillqvist tlillqv...@suse.com
Date:   Mon Nov 12 16:31:54 2012 +0200

Fix misleading comments

Change-Id: Id85c063c7a5a44c3c71e4eee04342fdb1a38f487

diff --git a/svl/inc/svl/cntwids.hrc b/svl/inc/svl/cntwids.hrc
index 55fdaf1..5900c22 100644
--- a/svl/inc/svl/cntwids.hrc
+++ b/svl/inc/svl/cntwids.hrc
@@ -106,7 +106,7 @@
 #define WID_STORE_MSGS_TIMELIMIT(WID_CHAOS_START + 124)
 
 //
-// WID's added after SO 4.0 release ( SUPD  364 )
+// WIDs added after SO 4.0 release
 //
 
 // PROP BOXALL
@@ -184,7 +184,7 @@
 #define WID_HTTP_COOKIE (WID_CHAOS_START + 231)
 
 //
-// WID's added after SO 5.0 release ( SUPD  505 )
+// WIDs added after SO 5.0 release
 //
 
 // PROP FOLDER
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: vcl/unx

2012-11-12 Thread Libreoffice Gerrit user
 vcl/unx/gtk/gdi/salnativewidgets-gtk.cxx |   10 +++---
 1 file changed, 7 insertions(+), 3 deletions(-)

New commits:
commit 776f0184d11965ccf8232ff47206d1e1566a6fd2
Author: Ivan Timofeev timofeev@gmail.com
Date:   Mon Nov 12 18:53:52 2012 +0400

Related: fdo#56198 avoid gtk warning, take 3

We need to check at run time, not at compile.
Thanks to Michael Meeks for spotting!

Change-Id: Ic8175d6af0bb8ec167f108925aaaf31f970fbd05

diff --git a/vcl/unx/gtk/gdi/salnativewidgets-gtk.cxx 
b/vcl/unx/gtk/gdi/salnativewidgets-gtk.cxx
index 4455c2b..c1bdf3c 100644
--- a/vcl/unx/gtk/gdi/salnativewidgets-gtk.cxx
+++ b/vcl/unx/gtk/gdi/salnativewidgets-gtk.cxx
@@ -3990,10 +3990,14 @@ void GtkSalGraphics::updateSettings( AllSettings 
rSettings )
 gboolean showmenuicons = true, primarybuttonwarps = false;
 g_object_get( pSettings,
 gtk-menu-images, showmenuicons,
-#if GTK_CHECK_VERSION(2,24,13)
-gtk-primary-button-warps-slider, primarybuttonwarps,
-#endif
 (char *)NULL );
+if( g_object_class_find_property(
+G_OBJECT_GET_CLASS(pSettings), gtk-primary-button-warps-slider) )
+{
+g_object_get( pSettings,
+gtk-primary-button-warps-slider, primarybuttonwarps,
+(char *)NULL );
+}
 aStyleSet.SetPreferredUseImagesInMenus(showmenuicons);
 aStyleSet.SetPrimaryButtonWarpsSlider(primarybuttonwarps);
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: vcl/ios

2012-11-12 Thread Libreoffice Gerrit user
 vcl/ios/source/gdi/salgdicommon.cxx |   22 --
 1 file changed, 22 deletions(-)

New commits:
commit 23d71899fe45ea5ab09045decaf4b357349bfb52
Author: Tor Lillqvist tlillqv...@suse.com
Date:   Mon Nov 12 17:02:39 2012 +0200

Un-break accidental mis-merge, or something

Change-Id: I13146dc6d1d854dd620f79f2f7e7b22f8bdb71b2

diff --git a/vcl/ios/source/gdi/salgdicommon.cxx 
b/vcl/ios/source/gdi/salgdicommon.cxx
index 3e67ccd..3e982b8 100644
--- a/vcl/ios/source/gdi/salgdicommon.cxx
+++ b/vcl/ios/source/gdi/salgdicommon.cxx
@@ -685,28 +685,6 @@ bool IosSalGraphics::drawPolyLine(
 {
 return false;
 }
-// setup cap attribute
-CGLineCap aCGLineCap(kCGLineCapButt);
-
-switch(eLineCap)
-{
-default: // com::sun::star::drawing::LineCap_BUTT:
-{
-aCGLineCap = kCGLineCapButt;
-break;
-}
-case com::sun::star::drawing::LineCap_ROUND:
-{
-aCGLineCap = kCGLineCapRound;
-break;
-}
-case com::sun::star::drawing::LineCap_SQUARE:
-{
-aCGLineCap = kCGLineCapSquare;
-break;
-}
-}
-
 // setup line attributes
 CGLineJoin aCGLineJoin = kCGLineJoinMiter;
 switch( eLineJoin )
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: 2 commits - src/docrecord.py src/docstream.py

2012-11-12 Thread Miklos Vajna
 src/docrecord.py |  267 ++-
 src/docstream.py |8 +
 2 files changed, 273 insertions(+), 2 deletions(-)

New commits:
commit a749af433598b5fe75f0d6739799a70f877e9ae1
Author: Miklos Vajna vmik...@suse.cz
Date:   Mon Nov 12 16:26:46 2012 +0100

dump STSH part 1: done till the read of the first style name

diff --git a/src/docrecord.py b/src/docrecord.py
index d587b22..f4bb2fa 100755
--- a/src/docrecord.py
+++ b/src/docrecord.py
@@ -534,6 +534,41 @@ class Stshif(DOCDirStream):
 def getSize(self):
 return 18
 
+class LSD(DOCDirStream):
+The LSD structure specifies the properties to be used for latent 
application-defined styles (see StshiLsd) when they are created.
+def __init__(self, bytes, offset):
+DOCDirStream.__init__(self, bytes)
+self.pos = offset
+
+def dump(self):
+buf = self.getuInt16()
+self.printAndSet(fLocked, self.getBit(buf, 1))
+self.printAndSet(fSemiHidden, self.getBit(buf, 2))
+self.printAndSet(fUnhideWhenUsed, self.getBit(buf, 3))
+self.printAndSet(fQFormat, self.getBit(buf, 4))
+self.printAndSet(iPriority, (buf  0xfff0)  4) # 5-16th bits
+self.pos += 2
+self.printAndSet(fReserved, self.getuInt16())
+self.pos += 2
+
+class StshiLsd(DOCDirStream):
+The StshiLsd structure specifies latent style data for 
application-defined styles.
+def __init__(self, bytes, stshi, offset):
+DOCDirStream.__init__(self, bytes)
+self.stshi = stshi
+self.pos = offset
+
+def dump(self):
+print 'stshiLsd type=StshiLsd offset=%d' % (self.pos)
+self.printAndSet(cbLSD, self.getuInt16())
+self.pos += 2
+for i in range(self.stshi.stshif.stiMaxWhenSaved):
+print 'mpstiilsd index=%d type=LSD' % i
+LSD(self.bytes, self.pos).dump()
+print '/mpstiilsd'
+self.pos += self.cbLSD
+print '/stshiLsd'
+
 class STSHI(DOCDirStream):
 The STSHI structure specifies general stylesheet and related 
information.
 def __init__(self, bytes, mainStream, offset, size):
@@ -543,9 +578,13 @@ class STSHI(DOCDirStream):
 
 def dump(self):
 print 'stshi type=STSHI offset=%d size=%d bytes' % (self.pos, 
self.size)
-stshif = Stshif(self.bytes, self.mainStream, self.pos)
-stshif.dump()
-self.pos += stshif.getSize()
+self.stshif = Stshif(self.bytes, self.mainStream, self.pos)
+self.stshif.dump()
+self.pos += self.stshif.getSize()
+self.printAndSet(ftcBi, self.getuInt16())
+self.pos += 2
+stshiLsd = StshiLsd(self.bytes, self, self.pos)
+stshiLsd.dump()
 print '/stshi'
 
 class LPStshi(DOCDirStream):
@@ -558,10 +597,154 @@ class LPStshi(DOCDirStream):
 print 'lpstshi type=LPStshi offset=%d' % self.pos
 self.printAndSet(cbStshi, self.getuInt16(), hexdump = False)
 self.pos += 2
-stshi = STSHI(self.bytes, self.mainStream, self.pos, self.cbStshi)
-stshi.dump()
+self.stshi = STSHI(self.bytes, self.mainStream, self.pos, self.cbStshi)
+self.stshi.dump()
+self.pos += self.cbStshi
 print '/lpstshi'
 
+class StdfBase(DOCDirStream):
+The Stdf structure specifies general information about the style.
+def __init__(self, bytes, mainStream, offset):
+DOCDirStream.__init__(self, bytes, mainStream=mainStream)
+self.pos = offset
+self.size = 10
+
+def dump(self):
+print 'stdfBase type=StdfBase offset=%d size=%d bytes' % 
(self.pos, self.size)
+buf = self.getuInt16()
+self.pos += 2
+self.printAndSet(sti, buf  0x0fff) # 1..12th bits
+self.printAndSet(fScratch, self.getBit(buf, 13))
+self.printAndSet(fInvalHeight, self.getBit(buf, 14))
+self.printAndSet(fHasUpe, self.getBit(buf, 15))
+self.printAndSet(fMassCopy, self.getBit(buf, 16))
+buf = self.getuInt16()
+self.pos += 2
+self.stk = buf  0x000f # 1..4th bits
+stkmap = {
+1: paragraph,
+2: character,
+3: table,
+4: numbering
+}
+print 'stk value=%d name=%s/' % (self.stk, stkmap[self.stk])
+self.printAndSet(istdBase, (buf  0xfff0)  4) # 5..16th bits
+buf = self.getuInt16()
+self.pos += 2
+self.printAndSet(cupx, buf  0x000f) # 1..4th bits
+self.printAndSet(istdNext, (buf  0xfff0)  4) # 5..16th bits
+self.printAndSet(bchUpe, self.getuInt16(), hexdump = False)
+self.pos += 2
+self.printAndSet(grfstd, self.getuInt16()) # TODO dedicated GRFSTD 
class
+self.pos += 2
+print '/stdfBase'
+
+class StdfPost2000(DOCDirStream):
+The StdfPost2000 structure specifies general information about a 
style.
+def __init__(self, stdf):
+DOCDirStream.__init__(self, 

[Libreoffice-commits] .: liblangtag/ExternalProject_langtag.mk

2012-11-12 Thread Libreoffice Gerrit user
 liblangtag/ExternalProject_langtag.mk |1 +
 1 file changed, 1 insertion(+)

New commits:
commit 867a7238157fb6c96b5257a096db2421773e44ba
Author: Caolán McNamara caol...@redhat.com
Date:   Mon Nov 12 15:33:46 2012 +

get macosx to run again

Change-Id: Id250a54d6789b06df1946ecc6a9d29d24fc57c70

diff --git a/liblangtag/ExternalProject_langtag.mk 
b/liblangtag/ExternalProject_langtag.mk
index 59810cd..e8f632d 100644
--- a/liblangtag/ExternalProject_langtag.mk
+++ b/liblangtag/ExternalProject_langtag.mk
@@ -27,6 +27,7 @@ $(call gb_ExternalProject_get_state_target,langtag,build):
$(if $(filter 
NO,$(SYSTEM_LIBXML)),LIBXML2_CFLAGS=-I$(OUTDIR)/inc/external \
$(if $(filter 
MSC,$(COM)),LIBXML2_LIBS=$(OUTDIR)/lib/libxml2.lib,LIBXML2_LIBS=-L$(OUTDIR)/lib
 -lxml2),\
$(if $(filter MACOSX,$(OS)),LIBXML2_CFLAGS=$(LIBXML_CFLAGS) 
LIBXML2_LIBS=$(LIBXML_LIBS))) \
+   $(if $(filter 
MACOSX,$(OS)),--prefix=/@.__OOO)
 \
$(if $(filter-out LINUX FREEBSD,$(OS)),,LDFLAGS=-Wl,-z,origin 
-Wl,-rpath,$$ORIGIN:$$ORIGIN/../ure-link/lib) \
$(if $(filter-out SOLARIS,$(OS)),,LDFLAGS=-Wl,-z,origin 
-Wl,-R,$$ORIGIN:$$ORIGIN/../ure-link/lib) \
$(if $(filter-out 
WNTGCC,$(GUI)$(COM)),,LDFLAGS=-Wl,--enable-runtime-pseudo-reloc-v2) \
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: i18npool/Library_i18nsearch.mk vcl/ios

2012-11-12 Thread Libreoffice Gerrit user
 i18npool/Library_i18nsearch.mk  |   11 +--
 vcl/ios/source/gdi/salgdicommon.cxx |1 +
 2 files changed, 2 insertions(+), 10 deletions(-)

New commits:
commit ce629d95a6eadea43a3b5b4208f3965767f9fcea
Author: Michael Meeks michael.me...@suse.com
Date:   Mon Nov 12 15:17:07 2012 +

Another attempt at fixing icu linkage as externals.

diff --git a/i18npool/Library_i18nsearch.mk b/i18npool/Library_i18nsearch.mk
index b74eff8..d59345e 100644
--- a/i18npool/Library_i18nsearch.mk
+++ b/i18npool/Library_i18nsearch.mk
@@ -38,24 +38,15 @@ $(eval $(call gb_Library_set_include,i18nsearch,\
 
 $(eval $(call gb_Library_use_sdk_api,i18nsearch))
 
-ifeq ($(OS)$(COM),WNTMSC)
 $(eval $(call gb_Library_use_externals,i18nsearch,\
-   icuin \
-   icuuc \
-))
-else
-$(eval $(call gb_Library_use_externals,i18nsearch,\
-   icui18n \
+   $(if $(filter MSC,$(COM)),icuin,icui18n) \
icuuc \
 ))
-endif
 
 $(eval $(call gb_Library_use_libraries,i18nsearch,\
comphelper \
cppu \
cppuhelper \
-   icuuc \
-   $(if $(filter MSC,$(COM)),icuin,icui18n) \
sal \
$(gb_UWINAPI) \
 ))
diff --git a/vcl/ios/source/gdi/salgdicommon.cxx 
b/vcl/ios/source/gdi/salgdicommon.cxx
index 3e982b8..0b960da 100644
--- a/vcl/ios/source/gdi/salgdicommon.cxx
+++ b/vcl/ios/source/gdi/salgdicommon.cxx
@@ -685,6 +685,7 @@ bool IosSalGraphics::drawPolyLine(
 {
 return false;
 }
+
 // setup line attributes
 CGLineJoin aCGLineJoin = kCGLineJoinMiter;
 switch( eLineJoin )
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Change in core[libreoffice-3-6]: fdo#42558 added Arabic Abjad and other known numberings to P...

2012-11-12 Thread Eike Rathke (via Code Review)
Eike Rathke has abandoned this change.

Change subject: fdo#42558 added Arabic Abjad and other known numberings to Page 
Numbering
..


Patch Set 1: Abandoned

This change removes the None option to not have a page number in an otherwise 
unchanged footer and would introduce a regression.

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

Gerrit-MessageType: abandon
Gerrit-Change-Id: I87c9cdb2e0c1b7e1a7a24787bacff0e5d218b832
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: libreoffice-3-6
Gerrit-Owner: Eike Rathke er...@redhat.com
Gerrit-Reviewer: Andras Timar ati...@suse.com
Gerrit-Reviewer: Eike Rathke er...@redhat.com
Gerrit-Reviewer: Faisal al-otaibi fmalota...@kacst.edu.sa
Gerrit-Reviewer: Lior Kaplan kaplanl...@gmail.com

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


[Libreoffice-commits] .: extensions/Library_npsoplugin.mk extensions/source np_sdk/mozsrc np_sdk/Package_inc.mk

2012-11-12 Thread Libreoffice Gerrit user
 extensions/Library_npsoplugin.mk  |3 -
 extensions/source/nsplugin/source/npshell.cxx |8 ++--
 np_sdk/Package_inc.mk |1 
 np_sdk/mozsrc/npunix.c|4 +-
 np_sdk/mozsrc/npwin.cxx   |4 +-
 np_sdk/mozsrc/plugin.h|   44 ++
 6 files changed, 57 insertions(+), 7 deletions(-)

New commits:
commit 9081e07c9c92267d86a90752b28bd42b592782a8
Author: Stephan Bergmann sberg...@redhat.com
Date:   Mon Nov 12 16:59:50 2012 +0100

Enable NPP_Initialize/Shutdown again

...calling which had erroneously been dropped in
bdead69dd3c947743907681c8a2f16ca1f50cd9c Add switch for system/internal
npapi.h.  This makes the npsoplugin browser plugin work again.

(Also, init write_fd to -1 instead of 0, so that a missing do_init_pipe 
does not
accidentally cause writing to write_fd succeed in writing to stdin.)

Change-Id: Iced734512a43c8dfea46088f7ac16f159e7dd807

diff --git a/extensions/Library_npsoplugin.mk b/extensions/Library_npsoplugin.mk
index 00a4785..253e246 100644
--- a/extensions/Library_npsoplugin.mk
+++ b/extensions/Library_npsoplugin.mk
@@ -32,6 +32,7 @@ $(eval $(call gb_Library_Library,npsoplugin))
 
 $(eval $(call gb_Library_use_packages,npsoplugin,\
comphelper_inc \
+   np_sdk_inc \
 ))
 
 $(eval $(call gb_Library_use_external,npsoplugin,mozilla_headers))
@@ -94,8 +95,6 @@ $(eval $(call gb_Library_add_defs,npsoplugin,\
 ifeq ($(COM),MSC)
 $(eval $(call gb_Library_add_ldflags,npsoplugin,\
/EXPORT:NPP_GetMIMEDescription \
-   /EXPORT:NPP_Initialize \
-   /EXPORT:NPP_Shutdown \
/EXPORT:NPP_New \
/EXPORT:NPP_Destroy \
/EXPORT:NPP_SetWindow \
diff --git a/extensions/source/nsplugin/source/npshell.cxx 
b/extensions/source/nsplugin/source/npshell.cxx
index b7ee74d..bdfca9c 100644
--- a/extensions/source/nsplugin/source/npshell.cxx
+++ b/extensions/source/nsplugin/source/npshell.cxx
@@ -83,6 +83,8 @@
 
 #include nsp_func.hxx
 
+#include npsdk/plugin.h
+
 #include comphelper/documentconstants.hxx
 
 #ifdef _MSC_VER
@@ -98,7 +100,7 @@
  ***/
 
 static NSP_Mute_Obj send_lock = NSP_New_Mute_Obj();
-static NSP_PIPE_FD write_fd = 0;
+static NSP_PIPE_FD write_fd = -1;
 
 
 long int NSP_WriteToPipe(NSP_PIPE_FD fp, void* buf, unsigned long int len)
@@ -417,7 +419,7 @@ dupMimeType(NPMIMEType type)
 }
 #endif // end of UNIX
 
-NP_DLLPUBLIC NPError
+NPError
 NPP_Initialize(void)
 {
 debug_fprintf(NSP_LOG_NEW, NS Plugin begin initialize.\n);
@@ -432,7 +434,7 @@ NPP_GetJavaClass()
 }
 #endif
 
-NP_DLLPUBLIC void
+void
 NPP_Shutdown(void)
 {
 PLUGIN_MSG msg;
diff --git a/np_sdk/Package_inc.mk b/np_sdk/Package_inc.mk
index 841b1bd..2a656b9 100644
--- a/np_sdk/Package_inc.mk
+++ b/np_sdk/Package_inc.mk
@@ -31,5 +31,6 @@ $(eval $(call 
gb_Package_add_file,np_sdk_inc,inc/npsdk/jri.h,mozsrc/jri.h))
 $(eval $(call 
gb_Package_add_file,np_sdk_inc,inc/npsdk/jri_md.h,mozsrc/jri_md.h))
 $(eval $(call 
gb_Package_add_file,np_sdk_inc,inc/npsdk/jritypes.h,mozsrc/jritypes.h))
 $(eval $(call gb_Package_add_file,np_sdk_inc,inc/npsdk/npupp.h,mozsrc/npupp.h))
+$(eval $(call 
gb_Package_add_file,np_sdk_inc,inc/npsdk/plugin.h,mozsrc/plugin.h))
 
 # vim: set noet sw=4 ts=4:
diff --git a/np_sdk/mozsrc/npunix.c b/np_sdk/mozsrc/npunix.c
index 0b5ff38..24ef766 100644
--- a/np_sdk/mozsrc/npunix.c
+++ b/np_sdk/mozsrc/npunix.c
@@ -58,6 +58,7 @@
 #include stdio.h
 #include npapi.h
 #include npupp.h
+#include plugin.h
 
 /*
  * Define PLUGIN_TRACE to have the wrapper functions print
@@ -485,7 +486,7 @@ NP_Initialize(NPNetscapeFuncs* nsTable, NPPluginFuncs* 
pluginFuncs)
 pluginFuncs-javaClass  = Private_GetJavaClass();
 #endif
 
-err = NPERR_NO_ERROR;
+err = NPP_Initialize();
 }
 
 return err;
@@ -502,4 +503,5 @@ SAL_DLLPUBLIC_EXPORT void
 NP_Shutdown(void)
 {
 PLUGINDEBUGSTR(NP_Shutdown);
+NPP_Shutdown();
 }
diff --git a/np_sdk/mozsrc/npwin.cxx b/np_sdk/mozsrc/npwin.cxx
index 204f5d1..890533a 100644
--- a/np_sdk/mozsrc/npwin.cxx
+++ b/np_sdk/mozsrc/npwin.cxx
@@ -37,6 +37,7 @@
 
 #include npapi.h
 #include npupp.h
+#include plugin.h
 
 //\\// DEFINE
 #define NP_EXPORT
@@ -149,7 +150,7 @@ NP_Initialize(NPNetscapeFuncs* pFuncs)
 }
 #endif
 
-return NPERR_NO_ERROR;
+return NPP_Initialize;
 }
 
 //\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\.
@@ -163,6 +164,7 @@ NP_Initialize(NPNetscapeFuncs* pFuncs)
 void WINAPI NP_EXPORT
 NP_Shutdown()
 {
+NPP_Shutdown();
 g_pNavigatorFuncs = NULL;
 }
 
diff --git a/np_sdk/mozsrc/plugin.h b/np_sdk/mozsrc/plugin.h
new file mode 100644
index 000..67e049e
--- /dev/null
+++ b/np_sdk/mozsrc/plugin.h
@@ -0,0 +1,44 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/*
+ * This file is part of the LibreOffice 

Re: default CUPS printing format Re: [PATCH] fdo#44664: printer truncates Landscape orientation pages to ...

2012-11-12 Thread Michael Meeks
Hi guys,

On Fri, 2012-11-09 at 10:54 +, Michael Meeks wrote:
 On Thu, 2012-11-08 at 12:23 +0100, Michael Stahl wrote:
  this patch appears to change the default format for printing via CUPS
  from PDF to PostScript.  this was changed from PostScript to PDF in OOo 3.3.
 
   Urk ! - right, reverting that is not a good fix.

So - in fact; having consulted internally and read a few bugzilla bugs
- I think it is perhaps quite a good fix; we have things like:

https://bugzilla.novell.com/show_bug.cgi?id=732442#c5

Which look scary; Johannes maintains CUPS at SUSE, and his view is that
we should be careful here; he suggested having an IMHO un-usable option
in the print dialog to select which meta-file-format (hmm).

So - (I guess) perhaps (reluctantly) turning this back to generate .PS
output is the right answer cf.

https://bugs.freedesktop.org/show_bug.cgi?id=44664

Having said that - it's clearly nice to help out with improving CUPS -
so I recommend we default to PS, unless we're in Experimental mode
where we use PDF instead (?).

How does that sound ? Any chance of tweaking the patch to do that Lior
- and thanks for the catch ! :-)

ATB,

Michael.

-- 
michael.me...@suse.com  , Pseudo Engineer, itinerant idiot

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


[Libreoffice-commits] .: 3 commits - src/docrecord.py

2012-11-12 Thread Miklos Vajna
 src/docrecord.py |  149 ---
 1 file changed, 143 insertions(+), 6 deletions(-)

New commits:
commit d574b3276ffe56294a20bacc4611fcc66de24e49
Author: Miklos Vajna vmik...@suse.cz
Date:   Mon Nov 12 17:28:38 2012 +0100

dump StkParaLpUpxGrLpUpxRM

diff --git a/src/docrecord.py b/src/docrecord.py
index 24f6df6..abaed0e 100755
--- a/src/docrecord.py
+++ b/src/docrecord.py
@@ -799,6 +799,19 @@ class LPUpxChpx(DOCDirStream):
 self.pos = uPXPadding.pos
 print '/lPUpxChpx'
 
+class StkParaLpUpxGrLpUpxRM(DOCDirStream):
+The StkParaLPUpxGrLPUpxRM structure specifies revision-marking 
information and formatting for paragraph styles.
+def __init__(self, stkParaGRLPUPX):
+DOCDirStream.__init__(self, stkParaGRLPUPX.bytes)
+self.pos = stkParaGRLPUPX.pos
+
+def dump(self):
+print 'stkParaLpUpxGrLpUpxRM type=StkParaLpUpxGrLpUpxRM 
offset=%d' % self.pos
+self.printAndSet(cbStkParaUpxGrLpUpxRM, self.getuInt16())
+if self.cbStkParaUpxGrLpUpxRM != 0:
+print 'todo what=StkParaLpUpxGrLpUpxRM: cbStkParaUpxGrLpUpxRM != 
0 not implemented/'
+print '/stkParaLpUpxGrLpUpxRM'
+
 class StkParaGRLPUPX(DOCDirStream):
 The StkParaGRLPUPX structure that specifies the formatting properties 
for a paragraph style.
 def __init__(self, grLPUpxSw):
@@ -814,6 +827,9 @@ class StkParaGRLPUPX(DOCDirStream):
 lpUpxChpx = LPUpxChpx(self)
 lpUpxChpx.dump()
 self.pos = lpUpxChpx.pos
+stkParaLpUpxGrLpUpxRM = StkParaLpUpxGrLpUpxRM(self)
+stkParaLpUpxGrLpUpxRM.dump()
+self.pos = stkParaLpUpxGrLpUpxRM.pos
 print '/stkParaGRLPUPX'
 
 class GrLPUpxSw(DOCDirStream):
commit 9d0cedce38dc97bb5dbd2c408f0a20babdea9401
Author: Miklos Vajna vmik...@suse.cz
Date:   Mon Nov 12 16:56:51 2012 +0100

dump LPUpxChpx

diff --git a/src/docrecord.py b/src/docrecord.py
index 771ecc0..24f6df6 100755
--- a/src/docrecord.py
+++ b/src/docrecord.py
@@ -713,6 +713,92 @@ class Xstz(DOCDirStream):
 self.pos += 2
 print '/xstz'
 
+class UpxPapx(DOCDirStream):
+The UpxPapx structure specifies the paragraph formatting properties 
that differ from the parent
+def __init__(self, lPUpxPapx):
+DOCDirStream.__init__(self, lPUpxPapx.bytes)
+self.lPUpxPapx = lPUpxPapx
+self.pos = lPUpxPapx.pos
+
+def dump(self):
+print 'upxPapx type=UpxPapx offset=%d' % self.pos
+self.printAndSet(istd, self.getuInt16())
+self.pos += 2
+size = self.lPUpxPapx.cbUpx - 2
+pos = 0
+print 'grpprlPapx offset=%d size=%d bytes' % (self.pos, size)
+while size - pos  0:
+prl = Prl(self.bytes, self.pos + pos)
+prl.dump()
+pos += prl.getSize()
+print '/grpprlPapx'
+print '/upxPapx'
+
+class UpxChpx(DOCDirStream):
+The UpxChpx structure specifies the character formatting properties 
that differ from the parent
+def __init__(self, lPUpxChpx):
+DOCDirStream.__init__(self, lPUpxChpx.bytes)
+self.lPUpxChpx = lPUpxChpx
+self.pos = lPUpxChpx.pos
+
+def dump(self):
+print 'upxChpx type=UpxChpx offset=%d' % self.pos
+size = self.lPUpxChpx.cbUpx
+pos = 0
+print 'grpprlChpx offset=%d size=%d bytes' % (self.pos, size)
+while size - pos  0:
+prl = Prl(self.bytes, self.pos + pos)
+prl.dump()
+pos += prl.getSize()
+print '/grpprlChpx'
+print '/upxChpx'
+
+class UPXPadding:
+The UPXPadding structure specifies the padding that is used to pad the 
UpxPapx/Chpx/Tapx structures if any of them are an odd number of bytes in 
length.
+def __init__(self, parent):
+self.parent = parent
+self.pos = parent.pos
+
+def pad(self):
+if self.parent.cbUpx % 2 == 1:
+self.pos += 1
+
+class LPUpxPapx(DOCDirStream):
+The LPUpxPapx structure specifies paragraph formatting properties.
+def __init__(self, stkParaGRLPUPX):
+DOCDirStream.__init__(self, stkParaGRLPUPX.bytes)
+self.pos = stkParaGRLPUPX.pos
+
+def dump(self):
+print 'lPUpxPapx type=LPUpxPapx offset=%d' % self.pos
+self.printAndSet(cbUpx, self.getuInt16())
+self.pos += 2
+upxPapx = UpxPapx(self)
+upxPapx.dump()
+self.pos += self.cbUpx
+uPXPadding = UPXPadding(self)
+uPXPadding.pad()
+self.pos = uPXPadding.pos
+print '/lPUpxPapx'
+
+class LPUpxChpx(DOCDirStream):
+The LPUpxChpx structure specifies character formatting properties.
+def __init__(self, stkParaGRLPUPX):
+DOCDirStream.__init__(self, stkParaGRLPUPX.bytes)
+self.pos = stkParaGRLPUPX.pos
+
+def dump(self):
+print 'lPUpxChpx type=LPUpxChpx offset=%d' % self.pos
+self.printAndSet(cbUpx, self.getuInt16())
+self.pos += 2
+upxChpx = 

[Libreoffice-commits] .: i18npool/CppunitTest_i18npool_test_textsearch.mk

2012-11-12 Thread Libreoffice Gerrit user
 i18npool/CppunitTest_i18npool_test_textsearch.mk |7 +--
 1 file changed, 5 insertions(+), 2 deletions(-)

New commits:
commit c89602036aa127684e118b2606258201f1906152
Author: Michael Meeks michael.me...@suse.com
Date:   Mon Nov 12 16:36:32 2012 +

fix identical issue in textsearch unit test.

diff --git a/i18npool/CppunitTest_i18npool_test_textsearch.mk 
b/i18npool/CppunitTest_i18npool_test_textsearch.mk
index ddffaf0..60626b2 100644
--- a/i18npool/CppunitTest_i18npool_test_textsearch.mk
+++ b/i18npool/CppunitTest_i18npool_test_textsearch.mk
@@ -25,12 +25,15 @@ $(eval $(call 
gb_CppunitTest_use_components,i18npool_test_textsearch,\
i18npool/util/i18npool \
 ))
 
+$(eval $(call gb_Library_use_externals,i18nsearch,\
+   $(if $(filter MSC,$(COM)),icuin,icui18n) \
+   icuuc \
+))
+
 $(eval $(call gb_CppunitTest_use_libraries,i18npool_test_textsearch,\
cppu \
cppuhelper \
sal \
-   icuuc \
-   $(if $(filter MSC,$(COM)),icuin,icui18n) \
unotest \
$(gb_UWINAPI) \
 ))
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: default CUPS printing format Re: [PATCH] fdo#44664: printer truncates Landscape orientation pages to ...

2012-11-12 Thread Lior Kaplan
On Mon, Nov 12, 2012 at 6:16 PM, Michael Meeks michael.me...@suse.comwrote:

 Hi guys,

 On Fri, 2012-11-09 at 10:54 +, Michael Meeks wrote:
  On Thu, 2012-11-08 at 12:23 +0100, Michael Stahl wrote:
   this patch appears to change the default format for printing via CUPS
   from PDF to PostScript.  this was changed from PostScript to PDF in
 OOo 3.3.
 
Urk ! - right, reverting that is not a good fix.

 So - in fact; having consulted internally and read a few bugzilla
 bugs
 - I think it is perhaps quite a good fix; we have things like:

 https://bugzilla.novell.com/show_bug.cgi?id=732442#c5

 Which look scary; Johannes maintains CUPS at SUSE, and his view is
 that
 we should be careful here; he suggested having an IMHO un-usable option
 in the print dialog to select which meta-file-format (hmm).

 So - (I guess) perhaps (reluctantly) turning this back to generate
 .PS
 output is the right answer cf.

 https://bugs.freedesktop.org/show_bug.cgi?id=44664

 Having said that - it's clearly nice to help out with improving
 CUPS -
 so I recommend we default to PS, unless we're in Experimental mode
 where we use PDF instead (?).

 How does that sound ? Any chance of tweaking the patch to do that
 Lior
 - and thanks for the catch ! :-)


I can try, but I need hints/pointers for this experimental mode (let me
remind you I'm not a programmer).

CCing Jaroslav Krejci who provided the patch in the first place.

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


Re: [tdf-discuss] Re: Adding the browser to Libreoffice

2012-11-12 Thread Stephan Bergmann

On 11/09/2012 10:17 AM, Michael Stahl wrote:

On 09/11/12 08:28, Florian Monfort wrote:

But on the other side, browser extensions might actually be a good idea,
especially for Firefox and Chrome. Opening an odt directly in you
browser via a LibreOffice extension for example ?


there is already a NPAPI plugin that can display documents in a
compatible browser like Firefox (don't know if IE or Chrome still
support NPAPI plugins).

however i've never used it and don't know whether it is enabled or even
installed in a default installation.


see http://wiki.documentfoundation.org/Npsoplugin

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


[Libreoffice-commits] .: np_sdk/mozsrc

2012-11-12 Thread Libreoffice Gerrit user
 np_sdk/mozsrc/npwin.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 6ce21d57d9a627a95bfb2f10519ae3cd032f521b
Author: Stephan Bergmann sberg...@redhat.com
Date:   Mon Nov 12 18:17:44 2012 +0100

Typo

Change-Id: I2d28680b9e08baf7ec11098b698f881f3a420cb6

diff --git a/np_sdk/mozsrc/npwin.cxx b/np_sdk/mozsrc/npwin.cxx
index 890533a..9021c63 100644
--- a/np_sdk/mozsrc/npwin.cxx
+++ b/np_sdk/mozsrc/npwin.cxx
@@ -150,7 +150,7 @@ NP_Initialize(NPNetscapeFuncs* pFuncs)
 }
 #endif
 
-return NPP_Initialize;
+return NPP_Initialize();
 }
 
 //\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\.
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Bug 54157] LibreOffice 3.7 most annoying bugs

2012-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54157

Rainer Bielefeld libreoff...@bielefeldundbuss.de changed:

   What|Removed |Added

 Depends on||57026

--- Comment #23 from Rainer Bielefeld libreoff...@bielefeldundbuss.de ---
I add Bug 57026 - FILEOPEN particular .docx shows all text frames filling
complete page size and more, what makes lots of .docx unusable

-- 
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] .: sal/Library_sal.mk

2012-11-12 Thread Libreoffice Gerrit user
 sal/Library_sal.mk |2 ++
 1 file changed, 2 insertions(+)

New commits:
commit 9faaeff44df391ef67b702e73619d3e6bd7c8424
Author: Rene Engelhard r...@debian.org
Date:   Mon Nov 12 19:39:29 2012 +0100

fix sal build with system-boost

Change-Id: I56ce5fc99c654c63df87844c78f652c4ff13ce2c

diff --git a/sal/Library_sal.mk b/sal/Library_sal.mk
index ffed51c..237fe3f 100644
--- a/sal/Library_sal.mk
+++ b/sal/Library_sal.mk
@@ -59,7 +59,9 @@ $(eval $(call gb_Library_use_libraries,sal,\
$(gb_UWINAPI) \
 ))
 
+ifneq ($(SYSTEM_BOOST),YES)
 $(eval $(call gb_Library_use_unpacked,sal,boost))
+endif
 
 $(eval $(call gb_Library_use_externals,sal,\
 valgrind \
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: i18npool/CppunitTest_i18npool_test_textsearch.mk

2012-11-12 Thread Libreoffice Gerrit user
 i18npool/CppunitTest_i18npool_test_textsearch.mk |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 7bbcbe0727e3eee2e1860e2a038d5bd2baf7d38c
Author: Michael Meeks michael.me...@suse.com
Date:   Mon Nov 12 19:27:22 2012 +

add the right icu externals to the right target.

diff --git a/i18npool/CppunitTest_i18npool_test_textsearch.mk 
b/i18npool/CppunitTest_i18npool_test_textsearch.mk
index 60626b2..c826e65 100644
--- a/i18npool/CppunitTest_i18npool_test_textsearch.mk
+++ b/i18npool/CppunitTest_i18npool_test_textsearch.mk
@@ -25,7 +25,7 @@ $(eval $(call 
gb_CppunitTest_use_components,i18npool_test_textsearch,\
i18npool/util/i18npool \
 ))
 
-$(eval $(call gb_Library_use_externals,i18nsearch,\
+$(eval $(call gb_Library_use_externals,i18npool_test_textsearch,\
$(if $(filter MSC,$(COM)),icuin,icui18n) \
icuuc \
 ))
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: i18npool/CppunitTest_i18npool_test_textsearch.mk

2012-11-12 Thread Libreoffice Gerrit user
 i18npool/CppunitTest_i18npool_test_textsearch.mk |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit a2d6af3be3ce47abb77411dbc67c2180d9b0160b
Author: Michael Meeks michael.me...@suse.com
Date:   Mon Nov 12 20:23:36 2012 +

finally get the unit test name right; wow.

diff --git a/i18npool/CppunitTest_i18npool_test_textsearch.mk 
b/i18npool/CppunitTest_i18npool_test_textsearch.mk
index c826e65..b563ac1 100644
--- a/i18npool/CppunitTest_i18npool_test_textsearch.mk
+++ b/i18npool/CppunitTest_i18npool_test_textsearch.mk
@@ -25,7 +25,7 @@ $(eval $(call 
gb_CppunitTest_use_components,i18npool_test_textsearch,\
i18npool/util/i18npool \
 ))
 
-$(eval $(call gb_Library_use_externals,i18npool_test_textsearch,\
+$(eval $(call gb_CppunitTest_use_externals,i18npool_test_textsearch,\
$(if $(filter MSC,$(COM)),icuin,icui18n) \
icuuc \
 ))
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: Branch 'libreoffice-3-6' - 5 commits - i18npool/source officecfg/registry sw/source

2012-11-12 Thread Libreoffice Gerrit user
 i18npool/source/localedata/data/he_IL.xml  |   19 +--
 officecfg/registry/data/org/openoffice/VCL.xcu |   10 +-
 sw/source/core/text/porfld.cxx |   14 --
 sw/source/filter/html/htmlfldw.cxx |5 +++--
 4 files changed, 33 insertions(+), 15 deletions(-)

New commits:
commit 680b58efa54d5c5b773a7c2d57b3a27453c6a5a2
Author: Lior Kaplan kaplanl...@gmail.com
Date:   Fri Nov 9 23:33:41 2012 +0100

fdo#46807: Add LRM before Shekel sign, forcing it to appear left of numbers

introducing new Currency element and marking previous as legacyOnly

Change-Id: I40a762bf03a15f241fc80279bb61be9a2710d2f0
Reviewed-on: https://gerrit.libreoffice.org/967
Reviewed-by: Lior Kaplan kaplanl...@gmail.com
Tested-by: Lior Kaplan kaplanl...@gmail.com
Reviewed-by: Eike Rathke er...@redhat.com
(cherry picked from commit dcbf9238ba3354aafbcbfa0c15980587cf31fe96)

Signed-off-by: Lior Kaplan kaplanl...@gmail.com

diff --git a/i18npool/source/localedata/data/he_IL.xml 
b/i18npool/source/localedata/data/he_IL.xml
index 5a32ce6..f00a606 100644
--- a/i18npool/source/localedata/data/he_IL.xml
+++ b/i18npool/source/localedata/data/he_IL.xml
@@ -34,7 +34,7 @@
 TimePMPM/TimePM
 MeasurementSystemmetric/MeasurementSystem
   /LC_CTYPE
-  LC_FORMAT replaceFrom=[CURRENCY] replaceTo=[$₪-40D]
+  LC_FORMAT replaceFrom=[CURRENCY] replaceTo=[$‎₪-40D]
 DateAcceptancePatternD/M/DateAcceptancePattern
 FormatElement msgid=DateFormatskey1 default=true type=short 
usage=DATE formatindex=18
   FormatCodeD/M/YY/FormatCode
@@ -397,6 +397,13 @@
   LC_CURRENCY
 Currency default=true usedInCompatibleFormatCodes=true
   CurrencyIDILS/CurrencyID
+  CurrencySymbol‎₪/CurrencySymbol
+  BankSymbolILS/BankSymbol
+  CurrencyNameNew Israeli Sheqel/CurrencyName
+  DecimalPlaces2/DecimalPlaces
+/Currency
+Currency default=false usedInCompatibleFormatCodes=false 
legacyOnly=true
+  CurrencyIDILS/CurrencyID
   CurrencySymbol₪/CurrencySymbol
   BankSymbolILS/BankSymbol
   CurrencyNameNew Israeli Sheqel/CurrencyName
commit f44dcba2a77391b031b74ab7292951330a4acf29
Author: Lior Kaplan kaplanl...@gmail.com
Date:   Thu Nov 1 18:11:51 2012 +0200

Consolidate ₪ appearances to a CURRENCY template

Change-Id: Ibde3ac38e27e5abb42aa5d538762a3a5a7401f2b
Reviewed-on: https://gerrit.libreoffice.org/966
Reviewed-by: Caolán McNamara caol...@redhat.com
Tested-by: Caolán McNamara caol...@redhat.com
(cherry picked from commit 087f8ca17e94ffb3b1525a4d6e9be1c6b81184f7)

Signed-off-by: Lior Kaplan kaplanl...@gmail.com

diff --git a/i18npool/source/localedata/data/he_IL.xml 
b/i18npool/source/localedata/data/he_IL.xml
index d641641..5a32ce6 100644
--- a/i18npool/source/localedata/data/he_IL.xml
+++ b/i18npool/source/localedata/data/he_IL.xml
@@ -34,7 +34,7 @@
 TimePMPM/TimePM
 MeasurementSystemmetric/MeasurementSystem
   /LC_CTYPE
-  LC_FORMAT
+  LC_FORMAT replaceFrom=[CURRENCY] replaceTo=[$₪-40D]
 DateAcceptancePatternD/M/DateAcceptancePattern
 FormatElement msgid=DateFormatskey1 default=true type=short 
usage=DATE formatindex=18
   FormatCodeD/M/YY/FormatCode
@@ -155,22 +155,22 @@
   FormatCode#,###.00/FormatCode
 /FormatElement
 FormatElement msgid=CurrencyFormatskey1 default=true type=short 
usage=CURRENCY  formatindex=12
-  FormatCode[$₪-40D] #,##0;[$₪-40D] -#,##0/FormatCode
+  FormatCode[CURRENCY] #,##0;[CURRENCY] -#,##0/FormatCode
 /FormatElement
 FormatElement msgid=CurrencyFormatskey2 default=false type=medium 
usage=CURRENCY  formatindex=13
-  FormatCode[$₪-40D] #,##0.00;[$₪-40D] -#,##0.00/FormatCode
+  FormatCode[CURRENCY] #,##0.00;[CURRENCY] -#,##0.00/FormatCode
 /FormatElement
 FormatElement msgid=CurrencyFormatskey3 default=false type=medium 
usage=CURRENCY  formatindex=14
-  FormatCode[$₪-40D] #,##0;[RED][$₪-40D] -#,##0/FormatCode
+  FormatCode[CURRENCY] #,##0;[RED][CURRENCY] -#,##0/FormatCode
 /FormatElement
 FormatElement msgid=CurrencyFormatskey4 default=true type=medium 
usage=CURRENCY  formatindex=15
-  FormatCode[$₪-40D] #,##0.00;[RED][$₪-40D] -#,##0.00/FormatCode
+  FormatCode[CURRENCY] #,##0.00;[RED][CURRENCY] -#,##0.00/FormatCode
 /FormatElement
 FormatElement msgid=CurrencyFormatskey5 default=false type=medium 
usage=CURRENCY  formatindex=16
   FormatCode#,##0.00 CCC/FormatCode
 /FormatElement
 FormatElement msgid=CurrencyFormatskey6 default=false type=medium 
usage=CURRENCY  formatindex=17
-  FormatCode[$₪-40D] #,##0.--;[RED][$₪-40D] -#,##0.--/FormatCode
+  FormatCode[CURRENCY] #,##0.--;[RED][CURRENCY] -#,##0.--/FormatCode
 /FormatElement
 FormatElement msgid=PercentFormatskey1 default=true type=short 
usage=PERCENT_NUMBER  formatindex=8
   FormatCode0%/FormatCode
commit 

[Libreoffice-commits] .: extensions/source

2012-11-12 Thread Libreoffice Gerrit user
 extensions/source/nsplugin/source/npshell.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 655ef3e507d1bc41e67cd7529f827ac58fb9bab0
Author: Michael Meeks michael.me...@suse.com
Date:   Mon Nov 12 21:07:13 2012 +

WaE: fix windows build of npshell.

diff --git a/extensions/source/nsplugin/source/npshell.cxx 
b/extensions/source/nsplugin/source/npshell.cxx
index bdfca9c..cba9139 100644
--- a/extensions/source/nsplugin/source/npshell.cxx
+++ b/extensions/source/nsplugin/source/npshell.cxx
@@ -100,7 +100,7 @@
  ***/
 
 static NSP_Mute_Obj send_lock = NSP_New_Mute_Obj();
-static NSP_PIPE_FD write_fd = -1;
+static NSP_PIPE_FD write_fd = (NSP_PIPE_FD)-1;
 
 
 long int NSP_WriteToPipe(NSP_PIPE_FD fp, void* buf, unsigned long int len)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] Changes to 'feature/rb11'

2012-11-12 Thread Libreoffice Gerrit user
New branch 'feature/rb11' available with the following commits:
commit 8028137450d2823efc231304b802c7181a583b9d
Author: Michael Meeks michael.me...@suse.com
Date:   Mon Nov 12 17:21:24 2012 +

re-base on ALv2 code. Includes:

Patches contributed by: Armin Le Grand.
#118558# Correcting OLE attributes of LO3.4 at load time by loading as 
OOo3.3, details see task.
http://svn.apache.org/viewvc?view=revisionrevision=1195906
#118485# - Styles for OLEs are not saved.
http://svn.apache.org/viewvc?view=revisionrevision=1182166

commit 70c5fb87f593eaee1e5a023e0674b85b09cae0ac
Author: Michael Meeks michael.me...@suse.com
Date:   Mon Nov 12 17:09:32 2012 +

Revert sb140: #i117310# remove unnecessary dependency

on XTypeProvider::getImplementationId

This reverts commit 27b9f9f348b720e08f37db829533372dc4b73248.

Conflicts:
xmloff/inc/xmloff/txtparae.hxx
xmloff/source/style/SinglePropertySetInfoCache.cxx

commit 13dfd831640ca8786631e743e4d5bbcbef0d5085
Author: Kurt Zenker k...@openoffice.org
Date:   Thu Apr 7 13:02:56 2011 +0200

masterfix OOO340: #i117696# do not write fo:margin

Conflicts:
xmloff/source/style/PageMasterExportPropMapper.cxx

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


[Libreoffice-commits] .: 2 commits - sw/inc sw/source

2012-11-12 Thread Libreoffice Gerrit user
 sw/inc/htmltbl.hxx   |   56 -
 sw/source/core/doc/htmltbl.cxx   |   28 ++--
 sw/source/filter/html/htmltab.cxx|   76 +--
 sw/source/filter/html/htmltabw.cxx   |   18 
 sw/source/filter/inc/wrtswtbl.hxx|   47 ++---
 sw/source/filter/writer/wrtswtbl.cxx |   18 
 sw/source/filter/xml/xmltble.cxx |2 
 7 files changed, 121 insertions(+), 124 deletions(-)

New commits:
commit 49082c20dc5d65fbf0a64c9f6d7aba626523c9a1
Author: Takeshi Abe t...@fixedpoint.jp
Date:   Tue Nov 13 06:13:47 2012 +0900

sal_Bool to bool

Change-Id: I392709e11df3b2babfaa2cf4f90caf7ef29b10aa

diff --git a/sw/inc/htmltbl.hxx b/sw/inc/htmltbl.hxx
index 2f027e9..6c93b71 100644
--- a/sw/inc/htmltbl.hxx
+++ b/sw/inc/htmltbl.hxx
@@ -100,15 +100,15 @@ class SwHTMLTableLayoutCell
 sal_uInt16 nColSpan;   /// COLSPAN of cell.
 sal_uInt16 nWidthOption;   /// Given width of cell in Twip or %.
 
-sal_Bool bPrcWidthOption : 1;  /// nWidth is %-value.
-sal_Bool bNoWrapOption : 1;/// NOWRAP-option.
+bool bPrcWidthOption : 1;  /// nWidth is %-value.
+bool bNoWrapOption : 1;/// NOWRAP-option.
 
 public:
 
 SwHTMLTableLayoutCell( SwHTMLTableLayoutCnts *pCnts,
  sal_uInt16 nRSpan, sal_uInt16 nCSpan,
- sal_uInt16 nWidthOpt, sal_Bool bPrcWdthOpt,
- sal_Bool nNWrapOpt );
+ sal_uInt16 nWidthOpt, bool bPrcWdthOpt,
+ bool nNWrapOpt );
 
 ~SwHTMLTableLayoutCell();
 
@@ -124,9 +124,9 @@ public:
 sal_uInt16 GetColSpan() const { return nColSpan; }
 
 sal_uInt16 GetWidthOption() const { return nWidthOption; }
-sal_Bool IsPrcWidthOption() const { return bPrcWidthOption; }
+bool IsPrcWidthOption() const { return bPrcWidthOption; }
 
-sal_Bool HasNoWrapOption() const { return bNoWrapOption; }
+bool HasNoWrapOption() const { return bNoWrapOption; }
 };
 
 class SwHTMLTableLayoutColumn
@@ -144,27 +144,27 @@ class SwHTMLTableLayoutColumn
 
 sal_uInt16 nWidthOption;/// Options of COL or TD/TH.
 
-sal_Bool bRelWidthOption : 1;
-sal_Bool bLeftBorder : 1;
+bool bRelWidthOption : 1;
+bool bLeftBorder : 1;
 
 public:
 
-SwHTMLTableLayoutColumn( sal_uInt16 nColWidthOpt, sal_Bool bRelColWidthOpt,
- sal_Bool bLBorder );
+SwHTMLTableLayoutColumn( sal_uInt16 nColWidthOpt, bool bRelColWidthOpt,
+ bool bLBorder );
 
 ~SwHTMLTableLayoutColumn() {}
 
-inline void MergeCellWidthOption( sal_uInt16 nWidth, sal_Bool bPrc );
-inline void SetWidthOption( sal_uInt16 nWidth, sal_Bool bRelWidth, 
sal_Bool bTest );
+inline void MergeCellWidthOption( sal_uInt16 nWidth, bool bPrc );
+inline void SetWidthOption( sal_uInt16 nWidth, bool bRelWidth, bool bTest 
);
 
 sal_uInt16 GetWidthOption() const { return nWidthOption; }
-sal_Bool IsRelWidthOption() const { return bRelWidthOption; }
+bool IsRelWidthOption() const { return bRelWidthOption; }
 
 inline void MergeMinMaxNoAlign( sal_uLong nMin, sal_uLong nMax, sal_uLong 
nAbsMin );
 sal_uLong GetMinNoAlign() const { return nMinNoAlign; }
 sal_uLong GetMaxNoAlign() const { return nMaxNoAlign; }
 sal_uLong GetAbsMinNoAlign() const { return nAbsMinNoAlign; }
-inline void ClearPass1Info( sal_Bool bWidthOpt );
+inline void ClearPass1Info( bool bWidthOpt );
 
 inline void SetMinMax( sal_uLong nMin, sal_uLong nMax );
 void SetMax( sal_uLong nVal ) { nMax = nVal; }
@@ -179,7 +179,7 @@ public:
 void SetRelColWidth( sal_uInt16 nWidth ) { nRelColWidth = nWidth; }
 sal_uInt16 GetRelColWidth() const { return nRelColWidth; }
 
-sal_Bool HasLeftBorder() const { return bLeftBorder; }
+bool HasLeftBorder() const { return bLeftBorder; }
 };
 
 class SwHTMLTableLayout
@@ -230,10 +230,10 @@ class SwHTMLTableLayout
 
 SvxAdjust eTableAdjust; /// Alignment of table.
 
-sal_Bool bColsOption : 1;   /// Table has a COLS-option.
-sal_Bool bColTags : 1;  /// Tabelle has COL/COLGRP-tags.
-sal_Bool bPrcWidthOption : 1;   /// Width is given in percent.
-sal_Bool bUseRelWidth : 1;  /// SwTable gets relative width.
+bool bColsOption : 1;   /// Table has a COLS-option.
+bool bColTags : 1;  /// Tabelle has COL/COLGRP-tags.
+bool bPrcWidthOption : 1;   /// Width is given in percent.
+bool bUseRelWidth : 1;  /// SwTable gets relative width.
 
 sal_Bool bMustResize : 1;   /// Table width must be defined.
 sal_Bool bExportable : 1;   /// Layout may be used for export.
@@ -263,8 +263,8 @@ class SwHTMLTableLayout
 public:
 
 SwHTMLTableLayout( const SwTable *pSwTbl,
-   sal_uInt16 nRows, sal_uInt16 

cppumaker crash ...

2012-11-12 Thread Michael Meeks
So,

Trying to unwind why the linux tinderboxen seem to like to crash during
build of udkapi - it seemed (to me) that there was some horrible stack
corruption going on - which valgrind simply can't see. Re-building with
the attached makes the problem go away for me (even more annoying) -
though valgrind shows nothing; so (assuming I'm right) I guess I'm just
moving objects away from the stack corruption onto the heap (so we
survive) but not finding the underlying problem.

Annoying; I guess a H/W watchpoint is needed; but ... anyhow - bit
tired for that.

HTH,

Michael.

-- 
michael.me...@suse.com  , Pseudo Engineer, itinerant idiot
diff --git a/codemaker/inc/codemaker/dependencies.hxx b/codemaker/inc/codemaker/dependencies.hxx
index b46e7f3..2e4e0f5 100644
--- a/codemaker/inc/codemaker/dependencies.hxx
+++ b/codemaker/inc/codemaker/dependencies.hxx
@@ -116,7 +116,7 @@ private:
 
 void insert(rtl::OString const  type, bool base);
 
-Map m_map;
+Map m_map;
 bool m_valid;
 bool m_voidDependency;
 bool m_booleanDependency;
diff --git a/codemaker/inc/codemaker/options.hxx b/codemaker/inc/codemaker/options.hxx
index 22b09ce..bd2acd8 100644
--- a/codemaker/inc/codemaker/options.hxx
+++ b/codemaker/inc/codemaker/options.hxx
@@ -64,10 +64,10 @@ public:
 inline const StringVector getExtraInputFiles() const
 { return m_extra_input_files; }
 protected:
-::rtl::OString  m_program;
-StringVectorm_inputFiles;
-StringVectorm_extra_input_files;
-OptionMap   m_options;
+::rtl::OString  m_program;
+StringVectorm_inputFiles;
+StringVectorm_extra_input_files;
+OptionMap   m_options;
 };
 
 #endif // INCLUDED_CODEMAKER_OPTIONS_HXX
diff --git a/codemaker/source/codemaker/dependencies.cxx b/codemaker/source/codemaker/dependencies.cxx
index 9d2e769..74a71f8 100644
--- a/codemaker/source/codemaker/dependencies.cxx
+++ b/codemaker/source/codemaker/dependencies.cxx
@@ -43,6 +43,7 @@ struct Bad {};
 
 Dependencies::Dependencies(
 TypeManager const  manager, rtl::OString const  type):
+m_map(*(new Map())),
 m_voidDependency(false), m_booleanDependency(false),
 m_byteDependency(false), m_shortDependency(false),
 m_unsignedShortDependency(false), m_longDependency(false),
@@ -120,7 +121,9 @@ Dependencies::Dependencies(
 }
 
 Dependencies::~Dependencies()
-{}
+{
+delete m_map;
+}
 
 void Dependencies::insert(rtl::OUString const  type, bool base) {
 rtl::OString t;
diff --git a/codemaker/source/codemaker/options.cxx b/codemaker/source/codemaker/options.cxx
index 59706d9..e2bbac2 100644
--- a/codemaker/source/codemaker/options.cxx
+++ b/codemaker/source/codemaker/options.cxx
@@ -22,13 +22,20 @@
 
 using ::rtl::OString;
 
-Options::Options()
+Options::Options() :
+m_program(*(new ::rtl::OString())),
+m_inputFiles(*(new StringVector())),
+m_extra_input_files(*(new StringVector())),
+m_options(*(new OptionMap()))
 {
 }
 
 Options::~Options()
 {
-
+delete m_program;
+delete m_inputFiles;
+delete m_extra_input_files;
+delete m_options;
 }
 
 const OString Options::getProgramName() const
diff --git a/codemaker/source/cppumaker/cppumaker.cxx b/codemaker/source/cppumaker/cppumaker.cxx
index c3aee2a..69c1fd0 100644
--- a/codemaker/source/cppumaker/cppumaker.cxx
+++ b/codemaker/source/cppumaker/cppumaker.cxx
@@ -141,7 +141,7 @@ void produceAllTypes(const OString typeName,
 
 SAL_IMPLEMENT_MAIN_WITH_ARGS(argc, argv)
 {
-CppuOptions options;
+CppuOptions options = *(new CppuOptions());
 
 try
 {
@@ -156,7 +156,7 @@ SAL_IMPLEMENT_MAIN_WITH_ARGS(argc, argv)
 exit(99);
 }
 
-RegistryTypeManager typeMgr;
+RegistryTypeManager typeMgr = *(new RegistryTypeManager());
 
 if (!typeMgr.init(options.getInputFiles(), options.getExtraInputFiles()))
 {
@@ -169,7 +169,7 @@ SAL_IMPLEMENT_MAIN_WITH_ARGS(argc, argv)
 typeMgr.setBase(options.getOption(-B));
 }
 
-codemaker::GeneratedTypeSet generated;
+codemaker::GeneratedTypeSet generated = *(new codemaker::GeneratedTypeSet());
 try
 {
 if (options.isValid(-T))
diff --git a/codemaker/source/cppumaker/cpputype.cxx b/codemaker/source/cppumaker/cpputype.cxx
index eca0143..bb276af 100644
--- a/codemaker/source/cppumaker/cpputype.cxx
+++ b/codemaker/source/cppumaker/cpputype.cxx
@@ -159,7 +159,7 @@ CppuType::CppuType(typereg::Reader typeReader,
 , m_name(typeName.copy(typeName.lastIndexOf('/') + 1))
 , m_reader(typeReader)
 , m_typeMgr(typeMgr)
-, m_dependencies(typeMgr, typeName)
+, m_dependencies(*(new codemaker::Dependencies(typeMgr, typeName)))
 {}
 
 CppuType::~CppuType()
@@ -4438,10 +4438,11 @@ bool produceType(RegistryKey rTypeKey, bool bIsExtraType,
 {
 case RT_TYPE_INTERFACE:
 {
-InterfaceType iType(reader, typeName, typeMgr);
+InterfaceType iType = *(new 

[Libreoffice-commits] Changes to 'feature/unitymenus-master'

2012-11-12 Thread Libreoffice Gerrit user
New branch 'feature/unitymenus-master' available with the following commits:
commit 74fde91162cbce9dbd7516a6f3d1c3f2772df474
Author: Antonio Fernandez antonio.fernan...@aentos.es
Date:   Fri Oct 26 12:58:56 2012 +0100

Menu is fully updated when receiving a HUD activation event.

Change-Id: I4d275bc01ac0baa265d22dcd849020e8f51fc447

commit aa5a21b6e33f995e0c7276ecf257e0c516393cdd
Author: Antonio Fernandez antonio.fernan...@aentos.es
Date:   Wed Oct 24 17:36:59 2012 +0100

Menu is now subscribed to HUD awareness protocol events.

Change-Id: I0649ac50a93b3b6379642fac4d5d532d46251d72

commit 0ce685d591c3cd03e8c0f7c8ca0a5ca3b67ca734
Author: Antonio Fernandez antonio.fernan...@aentos.es
Date:   Wed Oct 24 17:17:27 2012 +0100

Added missing files for HUD awareness support.

Change-Id: If3544734e8c4a1c632a24976e9340ef84869d22a

commit 74e5311d0b2016a6d7a80c6f385d059ec2b3412f
Author: Antonio Fernandez antonio.fernan...@aentos.es
Date:   Wed Oct 24 17:15:57 2012 +0100

Added files to implement HUD awareness protocol support.

Change-Id: I1ce292811b0ac53c35b5a9026a1c1a4f4ef02cf4

commit f1e37d4f5aa2da77175de738bc55389e61760cf1
Author: Antonio Fernandez antonio.fernan...@aentos.es
Date:   Fri Oct 26 13:21:49 2012 +0100

Duplicated commands are now handled properly.

Change-Id: I80dd2d05060dcad3c6375a4e1c7b2109e451169b

commit beea95654b717a6b0ad846a1aebdf668f2842323
Author: Antonio Fernandez antonio.fernan...@aentos.es
Date:   Mon Oct 22 15:08:52 2012 +0100

Removed pre-definition of class GtkSalMenu.

Change-Id: I56652b6074d0138128178b479503a21e0bcd0c7f

commit 274e655d7578f7ee576f4fc17371b705b4aabd56
Author: Antonio Fernandez antonio.fernan...@aentos.es
Date:   Mon Oct 22 14:44:50 2012 +0100

Added ImplUpdate method to provide recursive and non-recursive menu 
updating.

Change-Id: Ifd4b3f0d68f4919a10f97d6681bfd0002fa48c7a

commit 966a6b4e97fd8241846cd1713b9b84ba5d6d78c4
Author: Antonio Fernandez antonio.fernan...@aentos.es
Date:   Mon Oct 22 14:29:14 2012 +0100

Some code refactoring.

Change-Id: I47d9be121898ca66f73488be4b46cc16cc4013a9

commit 156c5460e5d71dea469620284c7630ea327bfaa8
Author: Antonio Fernandez antonio.fernan...@aentos.es
Date:   Mon Oct 22 10:52:58 2012 +0100

Only activated submenus are generated when activating them. (Broken)

Change-Id: I9548a2c8dfec114de3133d55ca00362793b71a6c

commit 632ff2befb9e14f9cb419f262352ddd3a368945e
Author: Antonio Fernandez antonio.fernan...@aentos.es
Date:   Thu Oct 18 19:35:02 2012 +0100

Removed the declaration of FlushConnection method in GtkSalFrame.

Change-Id: I22262dd1655405ca9707a69bc036c900940d7df0

commit b09b6483a18daf57371b69f33daa5aeaa13c03fb
Author: Antonio Fernandez antonio.fernan...@aentos.es
Date:   Thu Oct 18 19:31:16 2012 +0100

Fixed menu visibility and cleaned up some code.

Change-Id: Ibda3c5d6f50d12041065f28ddd41eab57ae9560e

commit a2c673285d780407b363a04676c548a0121b9c71
Author: Antonio Fernandez antonio.fernan...@aentos.es
Date:   Wed Oct 17 20:06:11 2012 +0100

Chart menu works now.

Change-Id: I95861a5af8b9c72c74840868d0530d5855b87785

commit ee17adffb824503571d32456821b45455a29adce
Author: Antonio Fernandez antonio.fernan...@aentos.es
Date:   Mon Oct 15 18:16:39 2012 +0100

Menus now work properly when opening an application from LO's main screen.

Change-Id: Ib4947f5b48f508d66beab6952098c8d27e03ad21

commit 32c2d3cdd5da00465ac0367d6065fef3dba311b4
Author: Antonio Fernandez antonio.fernan...@aentos.es
Date:   Mon Oct 15 16:03:26 2012 +0100

Added a hack to make Slide Show menu item on Slide Show menu work.

Change-Id: I6c3865227702325e7f1545be893eb05b19c2e09f

commit ff36217b41c699f10e22f99f4aaf80fbf7c28115
Author: Antonio Fernandez antonio.fernan...@aentos.es
Date:   Mon Oct 15 11:13:35 2012 +0100

Menu is always visible now.

Change-Id: Ia6153c6630af2b04f3b022051aa1f7c48e2bfc1e

commit 3fc2fc10d7ed3f2340fbf50fbce8f24c99c4a2fa
Author: Antonio Fernandez antonio.fernan...@aentos.es
Date:   Sat Oct 6 14:59:47 2012 +0100

Fixed a crash on non-Unity WM.

Change-Id: Ia8f82024e56ad83c8979d60df3c94e8209fe2552

commit 4e340d7c5c4599ef2565a9d14dd7940d6069
Author: Antonio Fernandez antonio.fernan...@aentos.es
Date:   Sat Oct 6 14:46:26 2012 +0100

Menu is properly visible on non-Unity WM.

Change-Id: If9fea1f3b700a0d957aa1ed11913b2a7982050c2

commit 091b26263d3a63d6f08733b696c7e0eeec5504e8
Author: Bjoern Michaelsen bjoern.michael...@canonical.com
Date:   Fri Oct 5 14:19:37 2012 +0200

more SolarMutexes

commit 847098005db62d4628c63133342aa33077b95fd2
Author: Bjoern Michaelsen bjoern.michael...@canonical.com
Date:   Fri Oct 5 13:50:59 2012 +0200

grab the guard early

commit 35f4774bfce7b12860de89f9854430bdb9de7c54
Author: Antonio Fernandez antonio.fernan...@aentos.es
Date:   Thu Oct 4 16:48:04 2012 +0100

Menus are now correctly 

Re: framework - Find/remove useless ifdefs and dead code within them

2012-11-12 Thread Marcos Souza
2012/11/10 Matúš Kukan matus.ku...@gmail.com

 On 10 November 2012 17:51, Marcos Souza marcos.souza@gmail.com
 wrote:
  Hi List!
 
  Some days ago, I developed a script that can show to us all ifdefs that
  don't have a #define.
 
  After run this script in the framework dir, I get this list:
 
  ifdef ENABLE_COMPONENT_SELF_CHECK without #define. This can be removed?
  ifdef DBG_UTIL without #define. This can be removed?
  ifdef fpf without #define. This can be removed?
  ifdef fpc without #define. This can be removed?
  ifdef ENABLE_SERVICEDEBUG without #define. This can be removed?
  ifdef ENABLE_TARGETINGDEBUG without #define. This can be removed?
  ifdef ENABLE_REGISTRATIONDEBUG without #define. This can be removed?
  ifdef ENABLE_PLUGINDEBUG without #define. This can be removed?
  ifdef ENABLE_MUTEXDEBUG without #define. This can be removed?
  ifdef ENABLE_FILTERDBG without #define. This can be removed?
  ifdef ENABLE_EVENTDEBUG without #define. This can be removed?
  ifdef ENABLE_GENERATEFILTERCACHE without #define. This can be removed?
 
  This is the output of my script. I belive DBG_UTIL is defined in an other
  way (a lot of code within this ifdefs around the LO) but I didn't notice
 any
  define explicitly.

 git grep DDBG_UTIL points to solenv/gbuild/gbuild.mk, where also
 others are defined (probably not from this list).
 But for some, it's not that obvious and grepping for Dname does not
 help, see for example gb_Helper_define_if_set.


Thanks Matus!

But, in this case, I will try to verify these Difdef name too, now that I
know that defines could be used in the build. Do you believe this is a
valid approach to do before talk with the list about these ifdefs?

I will ignore DBG_UTIL in my script and others defines within solenv/gbuild/
gbuild.mk with -Dmacro name

List,

What you can say about these other macros? After your comments, I believe
we can get ride of a lot of code, and make the LO better without all junk
that we can found.

Thanks a lot guys!


 All the best,
 Matus




-- 
Att,

Marcos Paulo de Souza
Acadêmico de Ciencia da Computação - FURB - SC
Github: https://github.com/marcosps/
Uma vida sem desafios é uma vida sem razão
A life without challenges, is a non reason life
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: Adding icons to the template manager

2012-11-12 Thread Alexander Wilms
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

When compiling it I get the following error, but I don't know what's
the difference to the syntax in navigatr.src:

[build srs] /home/alexander/libo/sfx2/source/doc/templatedlg.src
Warning : Can't open
/home/alexander/libo/workdir/unxlngx6.pro/CustomTarget/translations/translate/sdf/sfx2/source/doc/localize.sdf

{
^
f4101:
/home/alexander/libo/workdir/unxlngx6.pro/SrsPartMergeTarget/sfx2/source/doc/templatedlg.src,
line 242: Warning in the object (Type: ImageList):
Resources without name are ignored.

{
^
f640:
/home/alexander/libo/workdir/unxlngx6.pro/SrsPartMergeTarget/sfx2/source/doc/templatedlg.src,
line 242: Error: syntax error
f256: Error: !! 1 Error found!!
Error starting rsc2 compiler
make[2]: ***
[/home/alexander/libo/workdir/unxlngx6.pro/SrsPartTarget/sfx2/source/doc/templatedlg.src]
Fehler 1

Should it basically look like the code below?

Kind Regards

Alex

/*
 * Copyright 2012 LibreOffice contributors.
 *
 * 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/.
 */

#include doc.hrc
#include templatedlg.hrc
#include helpid.hrc

String STR_ACTION_SORT_NAME
{
Text [ en-US ] = Sort by name;
};

String STR_ACTION_REFRESH
{
Text [ en-US ] = Refresh;
};

String STR_ACTION_DEFAULT
{
Text [ en-US ] = Reset Default Template ; /* leave ending space */
};

String STR_MOVE_NEW
{
Text [ en-US ] = New folder;
};

String STR_INPUT_NEW
{
Text [ en-US ] = Enter folder name:;
};

String STR_REPOSITORY_LOCAL
{
Text [ en-US ] = Local;
};

String STR_REPOSITORY_NEW
{
Text [ en-US ] = New Repository;
};

String STR_MSG_ERROR_LOCAL_MOVE
{
Text [ en-US ] = Error moving the following templates to $1.\n$2 ;
};

String STR_MSG_ERROR_REMOTE_MOVE
{
Text [ en-US ] = Error moving the following templates from
repository $1 to folder $2.\n$3 ;
};

String STR_MSG_ERROR_EXPORT
{
Text [ en-US ] = Error exporting the following templates:\n$1;
};

String STR_MSG_ERROR_IMPORT
{
Text [ en-US ] = Error importing the following templates to
$1:\n$2;
};

String STR_MSG_ERROR_DELETE_TEMPLATE
{
Text [ en-US ] = The following templates cannot be deleted:\n$1;
};

String STR_MSG_ERROR_DELETE_FOLDER
{
Text [ en-US ] = The following folders cannot be deleted:\n$1;
};

String STR_MSG_ERROR_REPOSITORY_NAME
{
Text [ en-US ] = Failed to create repository \$1\.\nA repository
with this name may already exist.;
};

String STR_MSG_ERROR_SELECT_FOLDER
{
Text [ en-US ] = Select the destination folder(s) to save the
template.;
};

String STR_INPUT_TEMPLATE_NEW
{
Text [ en-US ] = Enter template name:;
};

String STR_QMSG_SEL_FOLDER_DELETE
{
Text [ en-US ] = Do you want to delete the selected folders?;
};

String STR_QMSG_TEMPLATE_OVERWRITE
{
Text [ en-US ] = A template named $1 already exist in $2. Do you
want to overwrite it?;
};

ModelessDialog DLG_TEMPLATE_MANAGER
{
OutputSize = TRUE;
SVLook = TRUE;
Moveable = TRUE;
Closeable = TRUE;
Hide = TRUE;
Size = MAP_APPFONT ( 290 , 250 );
Text [en-US] = Template Manager;

PushButton BTN_SELECT_ALL
{
Pos = MAP_APPFONT(10,5);
Size = MAP_APPFONT(50,14);
TabStop = TRUE;
DefButton = TRUE;
Text [en-US] = All;
};

PushButton BTN_SELECT_DOCS
{
Pos = MAP_APPFONT(60,5);
Size = MAP_APPFONT(50,14);
TabStop = TRUE;
Text [en-US] = Documents;
};

PushButton BTN_SELECT_PRESENTATIONS
{
Pos = MAP_APPFONT(110,5);
Size = MAP_APPFONT(50,14);
TabStop = TRUE;
Text [en-US] = Presentations;
};

PushButton BTN_SELECT_SHEETS
{
Pos = MAP_APPFONT(160,5);
Size = MAP_APPFONT(50,14);
TabStop = TRUE;
Text [en-US] = Spreedsheets;
};

PushButton BTN_SELECT_DRAWS
{
Pos = MAP_APPFONT(210,5);
Size = MAP_APPFONT(50,14);
TabStop = TRUE;
Text [en-US] = Drawings;
};

ImageButton BTN_SELECTION_MODE
{
Pos = MAP_APPFONT(260,5);
Size = MAP_APPFONT(20,14);
TabStop = TRUE;

ButtonImage = Image
{
ImageBitmap = Bitmap { File = select.png ; };
};

QuickHelpText [en-US] = Enables selecting items by just
clicking in the thumbnail or title.;
};

Control TEMPLATE_VIEW
{
Pos = MAP_APPFONT(5,30);
Size = MAP_APPFONT(280,220);
TabStop = TRUE;
};

Image IMG_ACTION_SORT
{
ImageBitmap = Bitmap
{
File = sortascending.png;
};
};

Image IMG_ACTION_REFRESH
{
ImageBitmap = Bitmap
{
File = reload.png;
};
};


ToolBox TBX_ACTION_VIEW
{
SVLook = TRUE ;
TabStop = TRUE ;
Pos = MAP_APPFONT ( 4 , 22 ) ;

ItemList =
{

[Libreoffice-commits] .: solver/README solver.README

2012-11-12 Thread Libreoffice Gerrit user
 solver.README |9 +
 solver/README |9 -
 2 files changed, 9 insertions(+), 9 deletions(-)

New commits:
commit 32315e1053a6172a9de477fd537e5435050232ff
Author: Bjoern Michaelsen bjoern.michael...@canonical.com
Date:   Tue Nov 13 01:30:23 2012 +0100

do not check in solver

- having solver checked in needlessly prevents it being mounted on e.g.
  tmpfs

Change-Id: Ief5e141a09b42ab9f504ca4e17bb17cff1f33a36

diff --git a/solver.README b/solver.README
new file mode 100755
index 000..b0e06ea
--- /dev/null
+++ b/solver.README
@@ -0,0 +1,9 @@
+solver means Solar Version, a weird name with only historical significance 
now
+
+It has no relation to the verb to solve.
+
+solver is the directory tree into which header files for inter-module
+use and build results (libraries, shared libraries, executables) are
+copied (delivered) during the build, and from where they are then
+picked up when constructing an installer (Windows), a RPM or deb
+package (Linux) or an app bundle (Mac).
diff --git a/solver/README b/solver/README
deleted file mode 100755
index b0e06ea..000
--- a/solver/README
+++ /dev/null
@@ -1,9 +0,0 @@
-solver means Solar Version, a weird name with only historical significance 
now
-
-It has no relation to the verb to solve.
-
-solver is the directory tree into which header files for inter-module
-use and build results (libraries, shared libraries, executables) are
-copied (delivered) during the build, and from where they are then
-picked up when constructing an installer (Windows), a RPM or deb
-package (Linux) or an app bundle (Mac).
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Bug 37361] LibreOffice 3.5 most annoying bugs

2012-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=37361

Bug 37361 depends on bug 55042, which changed state.

Bug 55042 Summary: No WINDOWS daily builds available for QA
https://bugs.freedesktop.org/show_bug.cgi?id=55042

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |WONTFIX

-- 
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] .: 2 commits - libexttextcat/ExternalPackage_exttextcat.mk libexttextcat/Module_libexttextcat.mk scp2/source

2012-11-12 Thread Libreoffice Gerrit user
 libexttextcat/ExternalPackage_exttextcat.mk |6 --
 libexttextcat/Module_libexttextcat.mk   |2 +-
 scp2/source/ooo/file_library_ooo.scp|9 -
 3 files changed, 1 insertion(+), 16 deletions(-)

New commits:
commit a2b3ee4abf39e47037fa9adbf44a8742379098f7
Author: David Tardon dtar...@redhat.com
Date:   Tue Nov 13 07:04:34 2012 +0100

do not build package unless needed

Change-Id: I7e61de3009e20aa13bdc2a333c803130eb88f36d

diff --git a/libexttextcat/ExternalPackage_exttextcat.mk 
b/libexttextcat/ExternalPackage_exttextcat.mk
index 638a741..11a2acb 100644
--- a/libexttextcat/ExternalPackage_exttextcat.mk
+++ b/libexttextcat/ExternalPackage_exttextcat.mk
@@ -9,11 +9,8 @@
 
 $(eval $(call gb_ExternalPackage_ExternalPackage,exttextcat,exttextcat))
 
-ifneq ($(COM),MSC)
-
 $(eval $(call gb_ExternalPackage_use_external_project,exttextcat,exttextcat))
 
 $(eval $(call 
gb_ExternalPackage_add_file,exttextcat,lib/libexttextcat.a,src/.libs/libexttextcat-2.0.a))
 
-endif
 # vim: set noet sw=4 ts=4:
diff --git a/libexttextcat/Module_libexttextcat.mk 
b/libexttextcat/Module_libexttextcat.mk
index bf65b04..43cc306 100644
--- a/libexttextcat/Module_libexttextcat.mk
+++ b/libexttextcat/Module_libexttextcat.mk
@@ -12,7 +12,6 @@ $(eval $(call gb_Module_Module,libexttextcat))
 ifeq ($(SYSTEM_LIBEXTTEXTCAT),NO)
 $(eval $(call gb_Module_add_targets,libexttextcat,\
UnpackedTarball_exttextcat \
-   ExternalPackage_exttextcat \
Zip_fingerprint \
 ))
 ifeq ($(COM),MSC)
@@ -21,6 +20,7 @@ $(eval $(call gb_Module_add_targets,libexttextcat,\
 ))
 else
 $(eval $(call gb_Module_add_targets,libexttextcat,\
+   ExternalPackage_exttextcat \
ExternalProject_exttextcat \
 ))
 endif
commit 7b360a456b00c914b97afaa8a6ed3c0eaffd613e
Author: David Tardon dtar...@redhat.com
Date:   Tue Nov 13 07:01:54 2012 +0100

internal libexttextcat is built statically everywhere

Change-Id: I92e42a4a677ab352e9b5a01d19c50493682eea8d

diff --git a/libexttextcat/ExternalPackage_exttextcat.mk 
b/libexttextcat/ExternalPackage_exttextcat.mk
index 6ceb585..638a741 100644
--- a/libexttextcat/ExternalPackage_exttextcat.mk
+++ b/libexttextcat/ExternalPackage_exttextcat.mk
@@ -14,9 +14,6 @@ ifneq ($(COM),MSC)
 $(eval $(call gb_ExternalPackage_use_external_project,exttextcat,exttextcat))
 
 $(eval $(call 
gb_ExternalPackage_add_file,exttextcat,lib/libexttextcat.a,src/.libs/libexttextcat-2.0.a))
-ifeq ($(OS),WNT)
-$(eval $(call 
gb_ExternalPackage_add_file,exttextcat,bin/libexttextcat.dll,src/.libs/libexttextcat.dll))
-endif
 
 endif
 # vim: set noet sw=4 ts=4:
diff --git a/scp2/source/ooo/file_library_ooo.scp 
b/scp2/source/ooo/file_library_ooo.scp
index e88cb71..6d4839d 100644
--- a/scp2/source/ooo/file_library_ooo.scp
+++ b/scp2/source/ooo/file_library_ooo.scp
@@ -1576,15 +1576,6 @@ File gid_File_Lib_Migrationoo3
   #endif
 End
 
-#if defined(WNT)  !defined(SYSTEM_LIBEXTTEXTCAT)
-File gid_File_Lib_Libtextcat
-LIB_FILE_BODY;
-Styles = (PACKED);
-Dir = SCP2_OOO_BIN_DIR;
-Name = libexttextcat.dll;
-End
-#endif
-
 STD_LIB_FILE( gid_File_Lib_Guesslang, guesslang )
 
 SPECIAL_COMPONENT_LIB_FILE( gid_File_Lib_Updatefeed , updatefeed.uno )
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Bug 54157] LibreOffice 3.7 most annoying bugs

2012-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54157

Rainer Bielefeld libreoff...@bielefeldundbuss.de changed:

   What|Removed |Added

 Depends on||57046

--- Comment #24 from Rainer Bielefeld libreoff...@bielefeldundbuss.de ---
I add Bug 57046 - No WINDOWS daily Master builds available for QA

-- 
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: [Libreoffice-qa] ToDos rename 3.7 to 4.0

2012-11-12 Thread Petr Mladek
Rainer Bielefeld píše v Ne 11. 11. 2012 v 13:19 +0100:
 Hi all,
 
 I started http://wiki.documentfoundation.org/QA/Todo_rename_3.7_to_4.0 
 for collection and discussion of all activities related to that decision.

 Please feel free to add more action items and / or comments.
 
 Discussion if necessary please here in this thread on 
 libreoffice-qa@lists.freedesktop.org or on Wiki Discussion page.
 
 When will we get the first 4.0 Master builds?

I am going to look at it. I hope that the first daily build will have
4.0 on Wednesday.

Anyway, I think that we do not need any complex planing and
synchronization. My approach would be to rename 3.7 to 4.0 anywhere you
see it in the sources, wiki, bugzilla, website...


Best Regards,
Petr

___
List Name: Libreoffice-qa mailing list
Mail address: Libreoffice-qa@lists.freedesktop.org
Change settings: http://lists.freedesktop.org/mailman/listinfo/libreoffice-qa
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://lists.freedesktop.org/archives/libreoffice-qa/

Re: [Libreoffice-qa] ToDos rename 3.7 to 4.0

2012-11-12 Thread Michael Meeks

On Sun, 2012-11-11 at 11:17 -0800, V Stuart Foote wrote:
 And in the initial wiki table you included an item:

Someone did - I have no idea where that came from.

 So just why is the project moving to a 4.0 build now?

There are a lot of reasons - we need to articulate those clearly and
publicly, that much is obvious; I've provided a few positive pointers
there now. On the other hand I am personally dead busy until the
feature-freeze - so I (for one) won't be spending the last, v. precious
three weeks writing marketing blurb for something that launches in early
Feb ;-)

 Assuming that we will make the effort to implement

I've addressed this.

 I've added an item to the 3.7 - 4.0 QA matrix to verify
 consistent a11y support.

What is developed, committed and ready by feature freeze is what we
will ship in 4.0. Post feature-freeze we will primarily be focusing on
bug fixing to get a good quality release. We do a time based release,
not a feature-based one so adding requested features to the wiki is not
a way to get a feature into a given release (sorry) though I share and
appreciate your eagerness for this feature :-)

I addressed the other aspects of the IAcc2 issues on the developers
list in response to your mail. It is a -very- sad situation there
(still) after all these years, lets hope it improves soon.

All the best,

Michael.

-- 
michael.me...@suse.com  , Pseudo Engineer, itinerant idiot

___
List Name: Libreoffice-qa mailing list
Mail address: Libreoffice-qa@lists.freedesktop.org
Change settings: http://lists.freedesktop.org/mailman/listinfo/libreoffice-qa
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://lists.freedesktop.org/archives/libreoffice-qa/


Re: [Libreoffice-qa] ToDos rename 3.7 to 4.0

2012-11-12 Thread Michael Meeks

On Sun, 2012-11-11 at 13:29 -0800, V Stuart Foote wrote:
 So, I don't know for sure, but it sure looks like the release has been made.  
 How could one find out?  Should that be an ODF BOD action?

You could go ask the Apache project :-) Until that code has clear
Apache headers on it, and (ideally) is merged into AOO master - I don't
believe we should look at it in any detail.

That's something extremely easy for IBM to do - a few simple sed
scripts; that they havn't done it thus far is itself interesting. Last I
heard they were talking about creating novel legal authorities for other
people to do the work, and/or re-checking in the whole code with new
headers etc. Either way it seems pretty clear that the ball is out of
our court here, sadly.

ATB,

Michael.

-- 
michael.me...@suse.com  , Pseudo Engineer, itinerant idiot

___
List Name: Libreoffice-qa mailing list
Mail address: Libreoffice-qa@lists.freedesktop.org
Change settings: http://lists.freedesktop.org/mailman/listinfo/libreoffice-qa
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://lists.freedesktop.org/archives/libreoffice-qa/


Re: [Libreoffice-qa] ToDos rename 3.7 to 4.0

2012-11-12 Thread Petr Mladek
Petr Mladek píše v Po 12. 11. 2012 v 09:55 +0100:
 Rainer Bielefeld píše v Ne 11. 11. 2012 v 13:19 +0100:
  Hi all,
  
  I started http://wiki.documentfoundation.org/QA/Todo_rename_3.7_to_4.0 
  for collection and discussion of all activities related to that decision.
 
  Please feel free to add more action items and / or comments.
  
  Discussion if necessary please here in this thread on 
  libreoffice-qa@lists.freedesktop.org or on Wiki Discussion page.
  
  When will we get the first 4.0 Master builds?
 
 I am going to look at it. I hope that the first daily build will have
 4.0 on Wednesday.

I have just pushed the version update into master. The upcoming daily
builds should have the version 4.0.

The first build looked fine. Let's see if there is still 3 or 3.7
hidden somewhere.


Best Regards,
Petr

___
List Name: Libreoffice-qa mailing list
Mail address: Libreoffice-qa@lists.freedesktop.org
Change settings: http://lists.freedesktop.org/mailman/listinfo/libreoffice-qa
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://lists.freedesktop.org/archives/libreoffice-qa/

[Libreoffice-bugs] [Bug 57000] UI: No context menu available in Input Line (formula bar)

2012-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=57000

Rainer Bielefeld libreoff...@bielefeldundbuss.de changed:

   What|Removed |Added

Summary|UI: No context menu in  |UI: No context menu
   |formula bar |available in Input Line
   ||(formula bar)

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


[Libreoffice-bugs] [Bug 56977] Function N with matrix argument fails

2012-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56977

GerardF gerard.farg...@orange.fr changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |WORKSFORME
 CC||gerard.farg...@orange.fr

--- Comment #1 from GerardF gerard.farg...@orange.fr ---
It was an old bug inherited from OOo.
Works as expected with version = 3.6 (at least 3.6.3, used for testing)

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


[Libreoffice-bugs] [Bug 56985] EDITING: crash when clicking a shape often and holding until program wants to , , drag''

2012-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56985

--- Comment #2 from Lennard Wasserthal wassert...@nefkom.net ---
It was 10.11.2012, about 19:00 UTC (that computer is not here)

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


[Libreoffice-bugs] [Bug 56985] EDITING: crash when clicking a shape often and holding until program wants to , , drag''

2012-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56985

--- Comment #3 from Lennard Wasserthal wassert...@nefkom.net ---
OK, that was a german date. So my master build is later than yours.
Month: November (this one).
Day: 10. (the day before yesterday)

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


[Libreoffice-bugs] [Bug 56870] FORMATTING: internet_20_link not visible in odt but in exported doc

2012-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56870

Michael Zaugg i...@oas.uzh.ch changed:

   What|Removed |Added

  Attachment #69695|0   |1
is obsolete||

--- Comment #2 from Michael Zaugg i...@oas.uzh.ch ---
Created attachment 69932
  -- https://bugs.freedesktop.org/attachment.cgi?id=69932action=edit
Testcase: Exporting to doc shows underlined text after reopen the document

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


[Libreoffice-bugs] [Bug 57005] New: Deletion Attachment 69916 and 69931 by bug 56983

2012-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=57005

  Priority: medium
Bug ID: 57005
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Deletion Attachment 69916 and 69931 by bug 56983
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: v...@xs4all.nl
  Hardware: Other
Status: UNCONFIRMED
   Version: unspecified
 Component: Spreadsheet
   Product: LibreOffice

I have placed the attachement for help find the issue, but the sheet is used as
business and isn't used for public.
I ask you to deletion the Attachment 69916 and 69931 by bug 56983, when the
issue is fixed.

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


[Libreoffice-bugs] [Bug 39613] Search does not distinguish between ß and ss

2012-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=39613

Markus Grob sno...@ilnet.ch changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|NOTABUG |---

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


[Libreoffice-bugs] [Bug 39613] Search does not distinguish between ß and ss

2012-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=39613

--- Comment #8 from Markus Grob sno...@ilnet.ch ---
I have to reopen this bug. The case is, that the ß sign doesn't exist in
Switzerland. If I have to change a text, then I have to change all the
Esszett into a normal ss.
For this, I have to find all the ß signs. For this, I think, the behavior of
the search has to be changed. A ß - ss kombination has only to be found, if
the similarity search is turned on. Without this, if a ß is given, no ss
should be found.

Greetings from Switzerland, Markus

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


[Libreoffice-bugs] [Bug 54417] SLIDESHOW: Work wrong on 2560 x 1440

2012-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54417

--- Comment #16 from tbehr...@suse.com ---
(In reply to comment #14)
 It is not fixed! The problem still exist!
 
Sorry to hear - can you re-do the blacklisting as outlined before, and post the
xcu file? Maybe the driver version changed?

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


[Libreoffice-bugs] [Bug 48775] CRASH when opening biblio.odb via tools menu without Base module installed

2012-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=48775

--- Comment #11 from Markus Grob sno...@ilnet.ch ---
Still reproducible with Version 3.6.3.2 (Build ID: 58f22d5). I have written a
document which has a few includes and one without something in it.
I think, first you have to test, if the module exists. If not, give the user a
hint, he has to install the database module. If you only hide the button, users
will be searching for it, if the have written documents using this and after
the upgrade, this button can't be found.

The case with scripting will be the same. With a clean errormessage, the user
will found out, how the problem could be fixed.

Greetings from Switzerland, Markus

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


[Libreoffice-bugs] [Bug 57008] New: EDITING: Selection: Wierd behavior using Shift+Up Arrow after Ctrl-C - Ctr-V

2012-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=57008

  Priority: medium
Bug ID: 57008
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: EDITING: Selection: Wierd behavior using Shift+Up
Arrow after Ctrl-C - Ctr-V
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: joel.tuber...@bluewin.ch
  Hardware: Other
Whiteboard: BSA
Status: UNCONFIRMED
   Version: 3.6.1.2 release
 Component: Spreadsheet
   Product: LibreOffice

Problem description: 

Steps to reproduce:
1. Copy a cell with ctrl-c
2. Move 1 cell downer with the down-arrow key
3. Paste the copied cell with ctrl-v
4. Hold shift and press the up-arrow to select the current cell and the upper
one.

Current behavior:
This selects all cells comprised betweed the last selection and A1. For
example, if I do this on B2, this will select A1, A2, B1, B2.

Expected behavior:
I was expecting this manipulation to select only 2 cells. Like if you do this
without the copy-paste steps (1-3).

Platform (if different from the browser): 

Browser: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:16.0) Gecko/20100101
Firefox/16.0

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


[Libreoffice-bugs] [Bug 57009] New: Formatting: show, where a style sheet is used in the document

2012-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=57009

  Priority: medium
Bug ID: 57009
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Formatting: show, where a style sheet is used in the
document
  Severity: enhancement
Classification: Unclassified
OS: All
  Reporter: sno...@ilnet.ch
  Hardware: All
Status: UNCONFIRMED
   Version: 3.6.3.2 release
 Component: Writer
   Product: LibreOffice

Created attachment 69937
  -- https://bugs.freedesktop.org/attachment.cgi?id=69937action=edit
Use case which shows the behaivier in word.

There exist a feature in MS-Office, which allows you to highlight all
paragraphs, where the selected style sheet is used.
For big documents is this feature very useful, because it can help to eliminate
wrong formatting in the document. Also if I receive a document from other
persons, which is bad formatted, it helps to bring a clean formatting into the
document.

In the attachement you can see the necessary of this feature and also, how it
maybe can be done.

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


[Libreoffice-bugs] [Bug 34314] [UI] Missing Ignore Option in Spellchecker Menu

2012-11-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=34314

--- Comment #7 from Markus Grob sno...@ilnet.ch ---
Still exist in Version 3.6.3.2 (Build ID: 58f22d5) (Win7).

Greetings from Switzerland, Markus

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


  1   2   3   >