Re: Package building reduces the lifetime of the SSD drives

2015-02-23 Thread Noel Grandin



On 2015-02-23 12:14 PM, Robert Antoni Buj i Gelonch wrote:

There are a lot of copy operations before to package LO. I propose you copy the 
files to package into a temporary ramdisk.

Creation of 1GB ramdisk in OS X:


And how do you propose to that under Windows and Linux?
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] core.git: Branch 'distro/collabora/viewer' - 2 commits - android/experimental solenv/bin

2015-02-23 Thread Jan Holesovsky
 android/experimental/LOAndroid3/res/layout/file_explorer_grid_item.xml |2 
+-
 solenv/bin/native-code.py  |2 
++
 2 files changed, 3 insertions(+), 1 deletion(-)

New commits:
commit 2f6bc9c5c4e9d217c9ad7217695c08da7632c93c
Author: Jan Holesovsky ke...@collabora.com
Date:   Mon Feb 23 11:58:13 2015 +0100

native-code.py: Add more missing chart services.

Fixes ab-slides.odp.

Change-Id: I9f04fb395adab986d3e6d8576d842e08c2d03538

diff --git a/solenv/bin/native-code.py b/solenv/bin/native-code.py
index da861b8..b50aea6 100755
--- a/solenv/bin/native-code.py
+++ b/solenv/bin/native-code.py
@@ -83,6 +83,8 @@ core_constructor_list = [
 com_sun_star_comp_chart2_Diagram_get_implementation,
 com_sun_star_comp_chart2_LabeledDataSequence_get_implementation,
 com_sun_star_comp_chart2_Legend_get_implementation,
+com_sun_star_comp_chart2_LinearRegressionCurve_get_implementation,
+com_sun_star_comp_chart2_Title_get_implementation,
 com_sun_star_comp_chart2_XMLFilter_get_implementation,
 # chart2/source/controller/chartcontroller.component
 com_sun_star_comp_chart2_ChartDocumentWrapper_get_implementation,
commit 2a7434f4af6ca1d656ea8de143659c39964a82c2
Author: Jan Holesovsky ke...@collabora.com
Date:   Mon Feb 23 11:56:28 2015 +0100

android: Avoid big amount of space below the icons.

[between the icon and the text]

Change-Id: I7e4d7cfc7df5d186cc721f01ff2c8f157fcbc806

diff --git 
a/android/experimental/LOAndroid3/res/layout/file_explorer_grid_item.xml 
b/android/experimental/LOAndroid3/res/layout/file_explorer_grid_item.xml
index 6e269c8..5242f8f 100644
--- a/android/experimental/LOAndroid3/res/layout/file_explorer_grid_item.xml
+++ b/android/experimental/LOAndroid3/res/layout/file_explorer_grid_item.xml
@@ -14,7 +14,7 @@
 ImageView
 android:id=@+id/grid_item_image
 android:layout_width=100dp
-android:layout_height=142dp
+android:layout_height=100dp
 android:scaleType=fitStart
 android:layout_gravity=center
 /ImageView
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 87523] Table of contents has wrong alignment of page numbers in newer version of LibreOffice - see comment #10

2015-02-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87523

--- Comment #13 from Darius Daniel Grigoras daniel.grigo...@movidius.com ---
Created attachment 113622
  -- https://bugs.documentfoundation.org/attachment.cgi?id=113622action=edit
Here's how the TOC I have in mind looks

-- 
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-commits] core.git: writerfilter/source

2015-02-23 Thread Miklos Vajna
 writerfilter/source/filter/WriterFilterDetection.cxx |  118 ++-
 writerfilter/source/filter/WriterFilterDetection.hxx |   64 --
 2 files changed, 65 insertions(+), 117 deletions(-)

New commits:
commit daa20dcadfcfc7a8d16cddc7f5a08bf3e0a5c644
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Mon Feb 23 12:38:51 2015 +0100

writerfilter: clean up WriterFilterDetection

Change-Id: I496fd710897c55b1185783e071077fa8d8509783

diff --git a/writerfilter/source/filter/WriterFilterDetection.cxx 
b/writerfilter/source/filter/WriterFilterDetection.cxx
index f7db967..c38126b 100644
--- a/writerfilter/source/filter/WriterFilterDetection.cxx
+++ b/writerfilter/source/filter/WriterFilterDetection.cxx
@@ -17,120 +17,132 @@
  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
  */
 
+#include com/sun/star/document/XExtendedFilterDetection.hpp
+#include com/sun/star/io/XInputStream.hpp
+#include com/sun/star/lang/XServiceInfo.hpp
+#include comphelper/storagehelper.hxx
+#include cppuhelper/implbase.hxx
 #include cppuhelper/implementationentry.hxx
 #include cppuhelper/supportsservice.hxx
-#include WriterFilterDetection.hxx
-#include comphelper/storagehelper.hxx
-#include com/sun/star/io/XInputStream.hpp
-#include osl/diagnose.h
 #include sot/storage.hxx
 #include unotools/ucbstreamhelper.hxx
 
 using namespace ::com::sun::star;
 
-WriterFilterDetection::WriterFilterDetection(
-const uno::Reference uno::XComponentContext  rxContext) :
-m_xContext( rxContext )
+/// File format detection service for DOCX.
+class WriterFilterDetection : public cppu::WeakImplHelper
+
+document::XExtendedFilterDetection,
+lang::XServiceInfo
+
 {
-}
+uno::Referenceuno::XComponentContext m_xContext;
 
+public:
+WriterFilterDetection(const uno::Referenceuno::XComponentContext 
rxContext);
+virtual ~WriterFilterDetection();
 
-WriterFilterDetection::~WriterFilterDetection()
-{
-}
+//XExtendedFilterDetection
+virtual OUString SAL_CALL detect(uno::Sequencebeans::PropertyValue 
Descriptor) throw (uno::RuntimeException, std::exception) SAL_OVERRIDE;
+
+// XServiceInfo
+virtual OUString SAL_CALL getImplementationName() throw 
(uno::RuntimeException, std::exception) SAL_OVERRIDE;
+virtual sal_Bool SAL_CALL supportsService(const OUString rServiceName) 
throw (uno::RuntimeException, std::exception) SAL_OVERRIDE;
+virtual uno::SequenceOUString SAL_CALL getSupportedServiceNames() throw 
(uno::RuntimeException, std::exception) SAL_OVERRIDE;
+};
 
+bool SAL_CALL WriterFilterDetection_supportsService(const OUString 
ServiceName) throw (uno::RuntimeException);
 
-OUString WriterFilterDetection_getImplementationName () throw 
(uno::RuntimeException)
+uno::SequenceOUString SAL_CALL 
WriterFilterDetection_getSupportedServiceNames() throw (uno::RuntimeException);
+
+WriterFilterDetection::WriterFilterDetection(const 
uno::Referenceuno::XComponentContext rxContext)
+: m_xContext(rxContext)
 {
-   return OUString ( com.sun.star.comp.Writer.WriterFilterDetector  );
 }
 
+WriterFilterDetection::~WriterFilterDetection()
+{
+}
 
-
-OUString WriterFilterDetection::detect( uno::Sequence beans::PropertyValue  
rDescriptor )
-   throw( uno::RuntimeException, std::exception )
+OUString WriterFilterDetection::detect(uno::Sequencebeans::PropertyValue 
rDescriptor) throw (uno::RuntimeException, std::exception)
 {
 OUString sTypeName;
 bool bWord = false;
 sal_Int32 nPropertyCount = rDescriptor.getLength();
 const beans::PropertyValue* pValues = rDescriptor.getConstArray();
 OUString sURL;
-uno::Reference  io::XStream  xStream;
-uno::Reference  io::XInputStream  xInputStream;
-for( sal_Int32 nProperty = 0; nProperty  nPropertyCount; ++nProperty )
+uno::Referenceio::XStream xStream;
+uno::Referenceio::XInputStream xInputStream;
+for (sal_Int32 nProperty = 0; nProperty  nPropertyCount; ++nProperty)
 {
-if ( pValues[nProperty].Name == TypeName )
+if (pValues[nProperty].Name == TypeName)
 rDescriptor[nProperty].Value = sTypeName;
-else if ( pValues[nProperty].Name == URL )
+else if (pValues[nProperty].Name == URL)
 pValues[nProperty].Value = sURL;
-else if ( pValues[nProperty].Name == Stream )
+else if (pValues[nProperty].Name == Stream)
 pValues[nProperty].Value = xStream;
-else if ( pValues[nProperty].Name == InputStream )
+else if (pValues[nProperty].Name == InputStream)
 pValues[nProperty].Value = xInputStream;
 }
 try
 {
-uno::Reference embed::XStorage  xDocStorage;
-if ( sURL == private:stream )
-xDocStorage = 
comphelper::OStorageHelper::GetStorageFromInputStream( xInputStream );
+uno::Referenceembed::XStorage xDocStorage;
+if (sURL == private:stream)
+xDocStorage = 
comphelper::OStorageHelper::GetStorageFromInputStream(xInputStream);

Package building reduces the lifetime of the SSD drives

2015-02-23 Thread Robert Antoni Buj i Gelonch
There are a lot of copy operations before to package LO. I propose you copy
the files to package into a temporary ramdisk.

Creation of 1GB ramdisk in OS X:
$ diskutil erasevolume HFS+ 'LORAMDisk' `hdiutil attach -nomount
ram://2097152`

Deletion:
umount -f /Volumes/LORAMDisk
hdiutl detach /Volumes/LORAMDisk


Regards,
Robert

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


[Libreoffice-bugs] [Bug 89583] FILEOPEN: Labels in diagrams from DOC files not previewed on import

2015-02-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89583

Timur gti...@gmail.com changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=89
   ||332

-- 
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 89332] FILEOPEN: WMF table text not displayed

2015-02-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89332

Timur gti...@gmail.com changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=89
   ||583

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


Re: Package building reduces the lifetime of the SSD drives

2015-02-23 Thread Jonathan Aquilina
In terms of a ram disk I have that done in particular when compiling from
source on gentoo. I think the biggest OS to ask how to do that on is
Windows.

On Mon, Feb 23, 2015 at 11:22 AM, Noel Grandin noelgran...@gmail.com
wrote:



 On 2015-02-23 12:14 PM, Robert Antoni Buj i Gelonch wrote:

 There are a lot of copy operations before to package LO. I propose you
 copy the files to package into a temporary ramdisk.

 Creation of 1GB ramdisk in OS X:


 And how do you propose to that under Windows and Linux?
 ___
 LibreOffice mailing list
 LibreOffice@lists.freedesktop.org
 http://lists.freedesktop.org/mailman/listinfo/libreoffice




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


[Libreoffice-commits] core.git: 2 commits - android/experimental solenv/bin

2015-02-23 Thread Jan Holesovsky
 android/experimental/LOAndroid3/res/layout/file_explorer_grid_item.xml |2 
+-
 solenv/bin/native-code.py  |2 
++
 2 files changed, 3 insertions(+), 1 deletion(-)

New commits:
commit 232846d4e9f12289bfda28b4a17450b84d322e00
Author: Jan Holesovsky ke...@collabora.com
Date:   Mon Feb 23 11:58:13 2015 +0100

native-code.py: Add more missing chart services.

Fixes ab-slides.odp.

Change-Id: I9f04fb395adab986d3e6d8576d842e08c2d03538

diff --git a/solenv/bin/native-code.py b/solenv/bin/native-code.py
index da861b8..b50aea6 100755
--- a/solenv/bin/native-code.py
+++ b/solenv/bin/native-code.py
@@ -83,6 +83,8 @@ core_constructor_list = [
 com_sun_star_comp_chart2_Diagram_get_implementation,
 com_sun_star_comp_chart2_LabeledDataSequence_get_implementation,
 com_sun_star_comp_chart2_Legend_get_implementation,
+com_sun_star_comp_chart2_LinearRegressionCurve_get_implementation,
+com_sun_star_comp_chart2_Title_get_implementation,
 com_sun_star_comp_chart2_XMLFilter_get_implementation,
 # chart2/source/controller/chartcontroller.component
 com_sun_star_comp_chart2_ChartDocumentWrapper_get_implementation,
commit a246ad3b46c6f34f9bbc8aca39368bda95100051
Author: Jan Holesovsky ke...@collabora.com
Date:   Mon Feb 23 11:56:28 2015 +0100

android: Avoid big amount of space below the icons.

[between the icon and the text]

Change-Id: I7e4d7cfc7df5d186cc721f01ff2c8f157fcbc806

diff --git 
a/android/experimental/LOAndroid3/res/layout/file_explorer_grid_item.xml 
b/android/experimental/LOAndroid3/res/layout/file_explorer_grid_item.xml
index 6e269c8..5242f8f 100644
--- a/android/experimental/LOAndroid3/res/layout/file_explorer_grid_item.xml
+++ b/android/experimental/LOAndroid3/res/layout/file_explorer_grid_item.xml
@@ -14,7 +14,7 @@
 ImageView
 android:id=@+id/grid_item_image
 android:layout_width=100dp
-android:layout_height=142dp
+android:layout_height=100dp
 android:scaleType=fitStart
 android:layout_gravity=center
 /ImageView
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 89587] New: Justified text lost on .pdf export, OSX

2015-02-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89587

Bug ID: 89587
   Summary: Justified text lost on .pdf export, OSX
   Product: LibreOffice
   Version: 4.0 all versions
  Hardware: x86-64 (AMD64)
OS: Mac OS X (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: tim.ri...@googlemail.com

Created attachment 113620
  -- https://bugs.documentfoundation.org/attachment.cgi?id=113620action=edit
Writer justified text exported to .pdf file

Hey there,

i've noticed that the justified text formation get lost when exporting it to an
.pdf file within writer. I can reproduce it on OS X 10.9.5 with LibreOffice
4.4.0.3 as well on the the latest 4.4.1-rc. Beside it just works fine on 4.3.6
and i can't reproduce this bug on linux.

Cheers!

-- 
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 87523] Table of contents issue with alignment of page number

2015-02-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87523

Darius Daniel Grigoras daniel.grigo...@movidius.com changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|WORKSFORME  |---

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


Re: Make under win7 breaks

2015-02-23 Thread Michael Stahl
On 19.02.2015 11:27, Juergen Funk Mailinglist wrote:
 
 checking whether D:/dev/cygwin/opt/lo/bin/make sets $(MAKE)...
 ./configure: eval: line 1853: unexpected EOF while looking for matching `'
 ./configure: eval: line 1854: syntax error: unexpected end of file
 
 D:/src/lo/lo-core/external/jpeg-turbo/ExternalProject_jpeg-turbo.mk:26:
 recipe for target
 'D:/src/lo/lo-core/workdir/ExternalProject/jpeg-turbo/configure' failed
 
 make[1]: ***
 [D:/src/lo/lo-core/workdir/ExternalProject/jpeg-turbo/configure] Error 1
 

after finally installing visual studio 2013 on the weekend i've had the
same problem, and it turns out that the AC_PROG_MAKE_SET check looks
different in jpeg-turbo than every other bundled external because
jpeg-turbo is using very old autoconf version and (according to the
changelog) the check was rewritten in autoconf 2.61a; master commit
9c6ce47eaf1a891edf7c200145de400fd1cf2871 should work around the issue.

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


[Libreoffice-bugs] [Bug 89394] FILE MENU and HYPERLINKs: Freezes/hangs when UNC path is unavailable on windows

2015-02-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89394

Jan kant...@sra.uni-hannover.de changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
Summary|FILE MENU and HYPERLINKs:   |FILE MENU and HYPERLINKs:
   |Freezes/hangs when  |Freezes/hangs when UNC path
   |insterting hyperlink or |is unavailable on windows
   |clickin File menu for the   |
   |first time  |
 Ever confirmed|0   |1

--- Comment #4 from Jan kant...@sra.uni-hannover.de ---
Unfortunately, thats more a general issue. When opening files we have to
provide some timeouts. Too small - Some slow shares will fail. Too big -
Application hangs when share is not available.

-- 
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 89394] FILE MENU and HYPERLINKs: Freezes/hangs when UNC path is unavailable on windows

2015-02-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89394

--- Comment #5 from Saren Tasciyan sarentasci...@hotmail.com ---
I see but an asynchronous approach can maybe help the issue. I am a programmer
but I never looked into LO source code so I have no idea how it is designed. I
am here as a user moreorless.

But I think the real issue here is that the hanging does not happen necessarily
only while opening a file but opening the file menu. Displaying recent
documents should not cause such an issue. Or even wierder inserting a hyperlink
from the web should definetely not cause this problem imo.

-- 
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-commits] core.git: Branch 'distro/collabora/cp-4.3' - 26 commits - connectivity/source dbaccess/source embeddedobj/source formula/source include/connectivity include/toolkit sc/inc sc/qa

2015-02-23 Thread Richard PALO
 connectivity/source/parse/sqlnode.cxx  |5 -
 dbaccess/source/ui/browser/sbagrid.cxx |1 
 dbaccess/source/ui/dlg/tablespage.cxx  |1 
 dbaccess/source/ui/querydesign/QueryDesignView.cxx |   15 
 embeddedobj/source/commonembedding/persistence.cxx |5 +
 formula/source/core/api/FormulaCompiler.cxx|2 
 include/connectivity/sqlparse.hxx  |5 +
 include/toolkit/helper/listenermultiplexer.hxx |   10 +--
 include/toolkit/helper/macros.hxx  |   10 +--
 sc/inc/compiler.hxx|2 
 sc/inc/scmatrix.hxx|9 +-
 sc/qa/unit/ucalc.hxx   |2 
 sc/qa/unit/ucalc_formula.cxx   |   17 +
 sc/source/core/tool/compiler.cxx   |   23 ++
 sc/source/core/tool/formularesult.cxx  |2 
 sc/source/core/tool/interpr1.cxx   |6 +
 sc/source/core/tool/interpr4.cxx   |   15 
 sc/source/core/tool/scmatrix.cxx   |   23 +-
 sc/source/filter/oox/sheetdatabuffer.cxx   |2 
 sc/source/ui/dbgui/PivotLayoutDialog.cxx   |9 ++
 sc/source/ui/docshell/docsh4.cxx   |7 +-
 sc/source/ui/inc/PivotLayoutDialog.hxx |1 
 solenv/gbuild/platform/solaris.mk  |5 -
 svx/source/dialog/langbox.cxx  |   24 ---
 sw/source/core/crsr/findtxt.cxx|4 -
 sw/source/core/layout/tabfrm.cxx   |2 
 sw/source/core/txtnode/ndtxt.cxx   |   28 ++--
 sw/source/core/undo/unnum.cxx  |4 -
 sw/source/core/undo/untbl.cxx  |   25 +++
 sw/source/filter/html/htmlgrin.cxx |   70 -
 sw/source/filter/ww8/rtfsdrexport.cxx  |3 
 sw/source/ui/chrdlg/drpcps.cxx |4 -
 sw/source/ui/fldui/javaedit.cxx|9 ++
 toolkit/source/helper/listenermultiplexer.cxx  |9 ++
 vcl/generic/glyphs/graphite_serverfont.cxx |4 -
 vcl/inc/graphite_layout.hxx|   18 +++--
 36 files changed, 271 insertions(+), 110 deletions(-)

New commits:
commit b5c6bae95eed4df45617ec4cadda59088261a3a1
Author: Richard PALO rich...@netbsd.org
Date:   Fri Feb 13 19:17:54 2015 +0100

Sun ld doesn't support -O1 optimize flag
reported by Gabriele Bulfon (gbulfon@sonicle)

Change-Id: Ie0ff8fe296054a7a266b4c73c30938bb2b7353ea
Reviewed-on: https://gerrit.libreoffice.org/14484
Tested-by: Michael Stahl mst...@redhat.com
Reviewed-by: Michael Stahl mst...@redhat.com
(cherry picked from commit 34a167e1bf9b478069c290dbf977c68639149852)
Signed-off-by: Michael Stahl mst...@redhat.com
(cherry picked from commit f081a415221bd8665cceebe91665e2253781b516)

diff --git a/solenv/gbuild/platform/solaris.mk 
b/solenv/gbuild/platform/solaris.mk
index 8256620..e4bc23b 100644
--- a/solenv/gbuild/platform/solaris.mk
+++ b/solenv/gbuild/platform/solaris.mk
@@ -131,11 +131,8 @@ gb_LinkTarget_LDFLAGS += \
 
 endif
 
-ifneq ($(gb_DEBUGLEVEL),0)
+# sun ld doesn't understand -O1 optimize flag
 gb_LINKEROPTFLAGS :=
-else
-gb_LINKEROPTFLAGS := -Wl,-O1
-endif
 
 ifeq ($(gb_SYMBOL),$(true))
 gb_LINKERSTRIPDEBUGFLAGS :=
commit c5420c816f3977c5f4002d66561eef8111faecbe
Author: Laurent Godard lgodard.li...@laposte.net
Date:   Thu Feb 19 10:45:26 2015 +0100

tdf#89460 test pChangeTrack before using it

Reviewed-on: https://gerrit.libreoffice.org/14553
Reviewed-by: Eike Rathke er...@redhat.com
Tested-by: Eike Rathke er...@redhat.com
(cherry picked from commit bf5c5f359cf4eb36a0a9a1110ec2aa3393bb87df)

Conflicts:
sc/source/ui/docshell/docsh4.cxx

Change-Id: Ic02351c448929daa7d4c5a9a00df9842c2c5aa91
Reviewed-on: https://gerrit.libreoffice.org/14558
Reviewed-by: Eike Rathke er...@redhat.com
Tested-by: Eike Rathke er...@redhat.com
(cherry picked from commit bf57bbef91bc40090561d614e4c2070c01aef7cb)

diff --git a/sc/source/ui/docshell/docsh4.cxx b/sc/source/ui/docshell/docsh4.cxx
index dd9eaf8..13855e6 100644
--- a/sc/source/ui/docshell/docsh4.cxx
+++ b/sc/source/ui/docshell/docsh4.cxx
@@ -590,8 +590,11 @@ void ScDocShell::Execute( SfxRequest rReq )
 
 if ( bDo )
 {
-if ( pChangeTrack-IsProtected() )
-bDo = ExecuteChangeProtectionDialog( NULL );
+if (pChangeTrack)
+{
+if ( pChangeTrack-IsProtected() )
+bDo = ExecuteChangeProtectionDialog( NULL 
);
+}
 if ( bDo )
 {
 

[Libreoffice-bugs] [Bug 88911] EDITING: Crash when dragging text from document to navigator pane

2015-02-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=88911

Beluga todven...@suomi24.fi changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #4 from Beluga todven...@suomi24.fi ---
Set to NEEDINFO.
Change back to UNCONFIRMED after you have provided the information and test
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


Re: Package building reduces the lifetime of the SSD drives

2015-02-23 Thread Robert Antoni Buj i Gelonch
We can use tempfs in Linux (mount -o size=1G -t tmpfs none /mnt/tmpfs)

2015-02-23 11:31 GMT+01:00 Jonathan Aquilina eagles051...@gmail.com:

 In terms of a ram disk I have that done in particular when compiling from
 source on gentoo. I think the biggest OS to ask how to do that on is
 Windows.

 On Mon, Feb 23, 2015 at 11:22 AM, Noel Grandin noelgran...@gmail.com
 wrote:



 On 2015-02-23 12:14 PM, Robert Antoni Buj i Gelonch wrote:

 There are a lot of copy operations before to package LO. I propose you
 copy the files to package into a temporary ramdisk.

 Creation of 1GB ramdisk in OS X:


 And how do you propose to that under Windows and Linux?
 ___
 LibreOffice mailing list
 LibreOffice@lists.freedesktop.org
 http://lists.freedesktop.org/mailman/listinfo/libreoffice




 --
 Jonathan Aquilina




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


[Libreoffice-bugs] [Bug 89427] crash when edit index

2015-02-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89427

Lionel bibi...@club-internet.fr changed:

   What|Removed |Added

   Hardware|Other   |x86-64 (AMD64)
 OS|All |Linux (All)
   Severity|normal  |major

--- Comment #2 from Lionel bibi...@club-internet.fr ---
This bug does'nt appear in relesae 4.4.1 RC2 (was still present in 4.4.1 RC1)

-- 
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 87523] Table of contents has wrong alignment of page numbers in newer version of LibreOffice - see comment #10

2015-02-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87523

Cor Nouws c...@nouenoff.nl changed:

   What|Removed |Added

   Keywords||regression
Version|4.4.1.1 rc  |4.3.4.1 release
Summary|Table of contents issue |Table of contents has wrong
   |with alignment of page  |alignment of page numbers
   |number  |in newer version of
   ||LibreOffice - see comment
   ||#10
 Whiteboard||bibisectrequest

--- Comment #10 from Cor Nouws c...@nouenoff.nl ---
Hmm, nasty. If I insert a new TOC, it just is fine. So possibly something wrong
with the older TOC definition or interpretation of that?

OK in 4.2.x
and not OK in some(?) versions of 4.3.x and 4.4.x

-- 
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 89586] New: Can't uninstall LibreOffice

2015-02-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89586

Bug ID: 89586
   Summary: Can't uninstall LibreOffice
   Product: LibreOffice
   Version: 4.4.1.1 rc
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: blocker
  Priority: highest
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: daniel.grigo...@movidius.com

Hi

I have two versions of LibreOffice installed in parallel on Ubuntu 14.04 (x64):
versions 4.3.5.2  4.4.1.1. However, I can't uninstall any of them. I used the
following commands:

sudo apt-get remove libreoffice-core
sudo apt-get remove --purge libreoffice-core

A few days ago there were some lines in the terminal that showed things being
removed, but none of the two version was removed.
On top of that, today, when I tried again to uninstall them, I received the
following messages:
Reading package lists... Done
Building dependency tree   
Reading state information... Done
Package 'libreoffice-core' is not installed, so not removed
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.

Why is it impossible to remove LibreOffice?

-- 
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 86543] reinterpret_cast of 0xffffffff to pointer does not generate invalid pointer

2015-02-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=86543

Stephan Bergmann sberg...@redhat.com changed:

   What|Removed |Added

 CC||sberg...@redhat.com
   Assignee|libreoffice-b...@lists.free |sberg...@redhat.com
   |desktop.org |
 Whiteboard|needAdvice  |

-- 
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 87523] Table of contents has wrong alignment of page numbers in newer version of LibreOffice - see comment #10

2015-02-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87523

--- Comment #11 from Darius Daniel Grigoras daniel.grigo...@movidius.com ---
(In reply to Cor Nouws from comment #10)
 Hmm, nasty. If I insert a new TOC, it just is fine. So possibly something
 wrong with the older TOC definition or interpretation of that?
 
 OK in 4.2.x
 and not OK in some(?) versions of 4.3.x and 4.4.x

Deleting and re-inserting a TOC solves the problem with the alignment of page
numbers. However, the narrow-minded people that designed the predefined
settings of the default TOC thought that having the title of the heading (Entry
or [E]) joined to its chapter number (Chapter Number or [E3]) is not a bad
thing, and didn't mind testing someone's try at amending this. Between E# and E
there should always be a T (tab), so the TOC lines should always have two tabs
(T).
The TOC's problem is with managing these two tabs.

-- 
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 87523] Table of contents has wrong alignment of page numbers in newer version of LibreOffice - see comment #10

2015-02-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87523

--- Comment #12 from Darius Daniel Grigoras daniel.grigo...@movidius.com ---
Created attachment 113621
  -- https://bugs.documentfoundation.org/attachment.cgi?id=113621action=edit
Here's the TOC I'm having in mind

-- 
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 87523] Table of contents issue with alignment of page number

2015-02-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87523

--- Comment #8 from Darius Daniel Grigoras daniel.grigo...@movidius.com ---
Created attachment 113619
  -- https://bugs.documentfoundation.org/attachment.cgi?id=113619action=edit
Printscreen of how the TOC looks in version 4.4.1.1 of LibreOffice

-- 
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 89394] FILE MENU and HYPERLINKs: Freezes/hangs when insterting hyperlink or clickin File menu for the first time

2015-02-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89394

--- Comment #3 from Saren Tasciyan sarentasci...@hotmail.com ---
Thanks for the comment. Do you think that in my case the IP-address but not
domain name can be the reason for the problem?

Now I think maybe this scenario might explain the issue.
That location 10.0.0.5 was on a local network somewhere else. I am however at
home on another local network with similar IPs delivered by the local DHCP
server.
My address was: 10.10.244.118

Can it be that LibreOffice thinks I am on the same network, tries to connect it
and thereby causing the freezing/hanging?

-- 
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 89394] FILE MENU and HYPERLINKs: Freezes/hangs when insterting hyperlink or clickin File menu for the first time

2015-02-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89394

Saren Tasciyan sarentasci...@hotmail.com changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |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 87523] Table of contents issue with alignment of page number

2015-02-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87523

Darius Daniel Grigoras daniel.grigo...@movidius.com changed:

   What|Removed |Added

Version|4.3.4.1 release |4.4.1.1 rc

--- Comment #9 from Darius Daniel Grigoras daniel.grigo...@movidius.com ---
I'm having issues again with the TOC, this time in versio 4.4.1.1 of
LibreOffice. Why can't this bug be fixed once and for all?

-- 
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 87523] Table of contents has wrong alignment of page numbers in newer version of LibreOffice - see comment #10

2015-02-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87523

--- Comment #14 from Darius Daniel Grigoras daniel.grigo...@movidius.com ---
Created attachment 113623
  -- https://bugs.documentfoundation.org/attachment.cgi?id=113623action=edit
Here's how the TOC should look in the finised product. I had to use
workarounds in LibreOffice and in Adobe Acrobat to have it looking that way.
The workarounds did not produce pefect results.

-- 
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-commits] core.git: basic/source include/vcl sw/source

2015-02-23 Thread Stephan Bergmann
 basic/source/runtime/ddectrl.cxx|2 +-
 include/vcl/dialog.hxx  |2 +-
 sw/source/core/frmedt/fedesc.cxx|4 ++--
 sw/source/filter/ww8/docxexport.cxx |2 +-
 sw/source/filter/ww8/wrtw8sty.cxx   |6 +++---
 sw/source/filter/ww8/wrtww8.cxx |2 +-
 6 files changed, 9 insertions(+), 9 deletions(-)

New commits:
commit 3b513aefa49ecc98800ff129360f04bda8405a11
Author: Stephan Bergmann sberg...@redhat.com
Date:   Mon Feb 23 13:13:11 2015 +0100

tdf#86543: reinterpret_cast -1 of appropriate width as special marker

Change-Id: Idf0d2a77a78e0e8fcbf435984b9b8f4393e4c207

diff --git a/basic/source/runtime/ddectrl.cxx b/basic/source/runtime/ddectrl.cxx
index 232008a..56603d1 100644
--- a/basic/source/runtime/ddectrl.cxx
+++ b/basic/source/runtime/ddectrl.cxx
@@ -22,7 +22,7 @@
 #include ddectrl.hxx
 #include basic/sberrors.hxx
 
-#define DDE_FREECHANNEL (reinterpret_castDdeConnection*(0x))
+#define DDE_FREECHANNEL (reinterpret_castDdeConnection*(sal_IntPtr(-1)))
 
 #define DDE_FIRSTERR0x4000
 #define DDE_LASTERR 0x4011
diff --git a/include/vcl/dialog.hxx b/include/vcl/dialog.hxx
index 0b00ebe..0568642 100644
--- a/include/vcl/dialog.hxx
+++ b/include/vcl/dialog.hxx
@@ -27,7 +27,7 @@
 
 // parameter to pass to the dialog constructor if really no parent is wanted
 // whereas NULL chooses the default dialog parent
-#define DIALOG_NO_PARENT (reinterpret_castvcl::Window*(0x))
+#define DIALOG_NO_PARENT (reinterpret_castvcl::Window*(sal_IntPtr(-1)))
 
 
 // - Dialog -
diff --git a/sw/source/core/frmedt/fedesc.cxx b/sw/source/core/frmedt/fedesc.cxx
index f4fee9a..9db4fee 100644
--- a/sw/source/core/frmedt/fedesc.cxx
+++ b/sw/source/core/frmedt/fedesc.cxx
@@ -185,7 +185,7 @@ const SwPageDesc* SwFEShell::GetSelectedPageDescs() const
 {
 const SwCntntNode* pCNd;
 const SwFrm* pMkFrm, *pPtFrm;
-const SwPageDesc* pFnd, *pRetDesc = 
reinterpret_castSwPageDesc*(0x);
+const SwPageDesc* pFnd, *pRetDesc = 
reinterpret_castSwPageDesc*(sal_IntPtr(-1));
 const Point aNulPt;
 
 for(SwPaM rPaM : GetCrsr()-GetRingContainer())
@@ -227,7 +227,7 @@ const SwPageDesc* SwFEShell::GetSelectedPageDescs() const
 }
 }
 
-if( reinterpret_castSwPageDesc*(0x) == pRetDesc )
+if( reinterpret_castSwPageDesc*(sal_IntPtr(-1)) == pRetDesc )
 pRetDesc = pFnd;
 else if( pFnd != pRetDesc )
 {
diff --git a/sw/source/filter/ww8/docxexport.cxx 
b/sw/source/filter/ww8/docxexport.cxx
index ae2fbd2..8762fd2 100644
--- a/sw/source/filter/ww8/docxexport.cxx
+++ b/sw/source/filter/ww8/docxexport.cxx
@@ -486,7 +486,7 @@ void DocxExport::OutputEndNode( const SwEndNode rEndNode )
 {
 const SwSectionFmt* pParentFmt = rSect.GetFmt()-GetParent();
 if( !pParentFmt )
-pParentFmt = reinterpret_castSwSectionFmt*(0x) ;
+pParentFmt = reinterpret_castSwSectionFmt*(sal_IntPtr(-1));
 
 sal_uLong nRstLnNum;
 if( rNd.IsCntntNode() )
diff --git a/sw/source/filter/ww8/wrtw8sty.cxx 
b/sw/source/filter/ww8/wrtw8sty.cxx
index b46f2b4..c54fd45 100644
--- a/sw/source/filter/ww8/wrtw8sty.cxx
+++ b/sw/source/filter/ww8/wrtw8sty.cxx
@@ -1140,7 +1140,7 @@ sal_uInt16 MSWordSections::NumberOfColumns( const SwDoc 
rDoc, const WW8_SepInfo
 aSet.SetParent( rSet );
 
 //0x, what the hell is going on with that!, fixme most terribly
-if ( rInfo.pSectionFmt  reinterpret_castSwSectionFmt*(0x) != 
rInfo.pSectionFmt )
+if ( rInfo.pSectionFmt  reinterpret_castSwSectionFmt*(sal_IntPtr(-1)) 
!= rInfo.pSectionFmt )
 aSet.Put( rInfo.pSectionFmt-GetFmtAttr( RES_COL ) );
 
 const SwFmtCol rCol = static_castconst SwFmtCol(aSet.Get( RES_COL ));
@@ -1327,7 +1327,7 @@ bool WW8_SepInfo::IsProtected() const
 bool bRet = false;
 if (
  pSectionFmt 
- (reinterpret_castSwSectionFmt*(0x) != pSectionFmt)
+ (reinterpret_castSwSectionFmt*(sal_IntPtr(-1)) != pSectionFmt)
)
 {
 const SwSection *pSection = pSectionFmt-GetSection();
@@ -1663,7 +1663,7 @@ void MSWordExportBase::SectionProperties( const 
WW8_SepInfo rSepInfo, WW8_PdAtt
 }
 }
 
-if ( reinterpret_castSwSectionFmt*(0x) != 
rSepInfo.pSectionFmt )
+if ( reinterpret_castSwSectionFmt*(sal_IntPtr(-1)) != 
rSepInfo.pSectionFmt )
 {
 if ( nBreakCode == 0 )
 bOutPgDscSet = false;
diff --git a/sw/source/filter/ww8/wrtww8.cxx b/sw/source/filter/ww8/wrtww8.cxx
index d5872cb..cd8b821 100644
--- a/sw/source/filter/ww8/wrtww8.cxx
+++ b/sw/source/filter/ww8/wrtww8.cxx
@@ -2621,7 +2621,7 @@ void MSWordExportBase::WriteText()
 
 const SwSectionFmt* pParentFmt = 
rSect.GetFmt()-GetParent();
 if ( !pParentFmt )
-pParentFmt = 
reinterpret_castSwSectionFmt*(0x);
+   

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

2015-02-23 Thread Stephan Bergmann
 writerfilter/source/filter/WriterFilterDetection.cxx |2 --
 1 file changed, 2 deletions(-)

New commits:
commit c4bd29e56b4b72ff0538533889c7cbaf358f27ee
Author: Stephan Bergmann sberg...@redhat.com
Date:   Mon Feb 23 13:50:53 2015 +0100

loplugin:unreffun

Change-Id: Ie32180d2ecbf7d99dde230e15f09ca3d6965483f

diff --git a/writerfilter/source/filter/WriterFilterDetection.cxx 
b/writerfilter/source/filter/WriterFilterDetection.cxx
index c38126b..f879997 100644
--- a/writerfilter/source/filter/WriterFilterDetection.cxx
+++ b/writerfilter/source/filter/WriterFilterDetection.cxx
@@ -51,8 +51,6 @@ public:
 virtual uno::SequenceOUString SAL_CALL getSupportedServiceNames() throw 
(uno::RuntimeException, std::exception) SAL_OVERRIDE;
 };
 
-bool SAL_CALL WriterFilterDetection_supportsService(const OUString 
ServiceName) throw (uno::RuntimeException);
-
 uno::SequenceOUString SAL_CALL 
WriterFilterDetection_getSupportedServiceNames() throw (uno::RuntimeException);
 
 WriterFilterDetection::WriterFilterDetection(const 
uno::Referenceuno::XComponentContext rxContext)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'feature/tiled-editing' - 3 commits - android/experimental

2015-02-23 Thread Tomaž Vajngerl
 
android/experimental/LOAndroid3/src/java/org/libreoffice/InvalidationHandler.java
   |  125 ++
 android/experimental/LOAndroid3/src/java/org/libreoffice/LOKitShell.java   
 |2 
 
android/experimental/LOAndroid3/src/java/org/libreoffice/LOKitTileProvider.java 
|  111 
 
android/experimental/LOAndroid3/src/java/org/mozilla/gecko/gfx/DrawTimingQueue.java
 |   95 ---
 
android/experimental/LOAndroid3/src/java/org/mozilla/gecko/gfx/PanningPerfAPI.java
  |   93 ---
 5 files changed, 132 insertions(+), 294 deletions(-)

New commits:
commit 922d6d1c85ef26445576b7b4b7b3d3d52cd99254
Author: Tomaž Vajngerl tomaz.vajng...@collabora.co.uk
Date:   Mon Feb 23 20:53:35 2015 +0900

android: remove DrawTimingQueue and PanningPerfAPI

Change-Id: I094c345524059030a157a940702ad47fad358176

diff --git 
a/android/experimental/LOAndroid3/src/java/org/mozilla/gecko/gfx/DrawTimingQueue.java
 
b/android/experimental/LOAndroid3/src/java/org/mozilla/gecko/gfx/DrawTimingQueue.java
deleted file mode 100644
index ce868f1..000
--- 
a/android/experimental/LOAndroid3/src/java/org/mozilla/gecko/gfx/DrawTimingQueue.java
+++ /dev/null
@@ -1,95 +0,0 @@
-/* -*- Mode: Java; c-basic-offset: 4; tab-width: 20; indent-tabs-mode: nil; -*-
- * 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/. */
-
-package org.mozilla.gecko.gfx;
-
-import android.os.SystemClock;
-
-/**
- * A custom-built data structure to assist with measuring draw times.
- *
- * This class maintains a fixed-size circular buffer of DisplayPortMetrics
- * objects and associated timestamps. It provides only three operations, which
- * is all we require for our purposes of measuring draw times. Note
- * in particular that the class is designed so that even though it is
- * accessed from multiple threads, it does not require synchronization;
- * any concurrency errors that result from this are handled gracefully.
- *
- * Assuming an unrolled buffer so that mTail is greater than mHead, the data
- * stored in the buffer at entries [mHead, mTail) will never be modified, and
- * so are safe to read. If this reading is done on the same thread that
- * owns mHead, then reading the range [mHead, mTail) is guaranteed to be safe
- * since the range itself will not shrink.
- */
-final class DrawTimingQueue {
-private static final String LOGTAG = GeckoDrawTimingQueue;
-private static final int BUFFER_SIZE = 16;
-
-private final DisplayPortMetrics[] mMetrics;
-private final long[] mTimestamps;
-
-private int mHead;
-private int mTail;
-
-DrawTimingQueue() {
-mMetrics = new DisplayPortMetrics[BUFFER_SIZE];
-mTimestamps = new long[BUFFER_SIZE];
-mHead = BUFFER_SIZE - 1;
-mTail = 0;
-}
-
-/**
- * Add a new entry to the tail of the queue. If the buffer is full,
- * do nothing. This must only be called from the Java UI thread.
- */
-boolean add(DisplayPortMetrics metrics) {
-if (mHead == mTail) {
-return false;
-}
-mMetrics[mTail] = metrics;
-mTimestamps[mTail] = SystemClock.uptimeMillis();
-mTail = (mTail + 1) % BUFFER_SIZE;
-return true;
-}
-
-/**
- * Find the timestamp associated with the given metrics, AND remove
- * all metrics objects from the start of the queue up to and including
- * the one provided. Note that because of draw coalescing, the metrics
- * object passed in here may not be the one at the head of the queue,
- * and so we must iterate our way through the list to find it.
- * This must only be called from the compositor thread.
- */
-long findTimeFor(DisplayPortMetrics metrics) {
-// keep a copy of the tail pointer so that we ignore new items
-// added to the queue while we are searching. this is fine because
-// the one we are looking for will either have been added already
-// or will not be in the queue at all.
-int tail = mTail;
-// walk through the safe range from mHead to tail; these entries
-// will not be modified unless we change mHead.
-int i = (mHead + 1) % BUFFER_SIZE;
-while (i != tail) {
-if (mMetrics[i].fuzzyEquals(metrics)) {
-// found it, copy out the timestamp to a local var BEFORE
-// changing mHead or add could clobber the timestamp.
-long timestamp = mTimestamps[i];
-mHead = i;
-return timestamp;
-}
-i = (i + 1) % BUFFER_SIZE;
-}
-return -1;
-}
-
-/**
- * Reset the buffer to empty.
- * This must only be called from the compositor thread.
- */
-void reset() {
-// we can only modify mHead on this thread.
-mHead = (mTail + BUFFER_SIZE - 1) % 

[Libreoffice-bugs] [Bug 89394] FILE MENU and HYPERLINKs: Freezes/hangs when UNC path is unavailable on windows

2015-02-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89394

Jan kant...@sra.uni-hannover.de changed:

   What|Removed |Added

   Priority|medium  |high

--- Comment #6 from Jan kant...@sra.uni-hannover.de ---
I totally agree. I can verify the problem on LO 4.4.0.3 on Windows.

Steps to reproduce:
1. Open registrymodifications.xcu and change a HistoryItemRef to
file://1.2.3.4/invalid/document.pptx.
2. Open LO (Dashboard). This will hang.
3. Open new writer document
4. Click on File Menu. This will hang.
5. Click on Insert - Hyperlink. This will also hang.

The bug is really annoying and LO will also not drop broken HistoryItemRefs.
Usability/Productivity really suffers from this. Changing importance to
high/major.

-- 
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-commits] core.git: 5 commits - vcl/source

2015-02-23 Thread Tor Lillqvist
 vcl/source/gdi/pdfwriter_impl.cxx |  260 +++---
 1 file changed, 243 insertions(+), 17 deletions(-)

New commits:
commit 7d7c2ab1dffa82cfc0e2d6b15702d965b8b0245b
Author: Tor Lillqvist t...@collabora.com
Date:   Mon Feb 23 15:27:01 2015 +0200

tdf#84881: Call NSS_CMSSignerInfo_AddSigningTime() only if not using a TSA

Something is still wrong, Adobe Reader still says the PDF is signed with the
local machine's timestamp, though.

Change-Id: Ic9ed3190901025be48e1de191df976e1aa454822

diff --git a/vcl/source/gdi/pdfwriter_impl.cxx 
b/vcl/source/gdi/pdfwriter_impl.cxx
index 3cc60d0..3ac6de7 100644
--- a/vcl/source/gdi/pdfwriter_impl.cxx
+++ b/vcl/source/gdi/pdfwriter_impl.cxx
@@ -6987,16 +6987,15 @@ bool PDFWriterImpl::finalizeSignature()
 return false;
 }
 }
-
-if (NSS_CMSSignerInfo_IncludeCerts(cms_signer, NSSCMSCM_CertChain, 
certUsageEmailSigner) != SECSuccess)
+else if (NSS_CMSSignerInfo_AddSigningTime(cms_signer, PR_Now()) != 
SECSuccess)
 {
-SAL_WARN(vcl.pdfwriter, PDF signing: can't include cert chain.);
+SAL_WARN(vcl.pdfwriter, PDF signing: can't add signing time.);
 return false;
 }
 
-if (NSS_CMSSignerInfo_AddSigningTime(cms_signer, PR_Now()) != SECSuccess)
+if (NSS_CMSSignerInfo_IncludeCerts(cms_signer, NSSCMSCM_CertChain, 
certUsageEmailSigner) != SECSuccess)
 {
-SAL_WARN(vcl.pdfwriter, PDF signing: can't add signing time.);
+SAL_WARN(vcl.pdfwriter, PDF signing: can't include cert chain.);
 return false;
 }
 
commit d1132ff3895aa67ed662446ef6f43612124455ae
Author: Tor Lillqvist t...@collabora.com
Date:   Mon Feb 23 14:55:07 2015 +0200

tdf#84881: Actually check the status of the time stamp response

Change-Id: If8d64b1e03c8318cd3329cd258131fddeb86fa7b

diff --git a/vcl/source/gdi/pdfwriter_impl.cxx 
b/vcl/source/gdi/pdfwriter_impl.cxx
index 9d14f13..3cc60d0 100644
--- a/vcl/source/gdi/pdfwriter_impl.cxx
+++ b/vcl/source/gdi/pdfwriter_impl.cxx
@@ -6941,6 +6941,13 @@ bool PDFWriterImpl::finalizeSignature()
 
 SAL_INFO(vcl.pdfwriter, TimeStampResp received and decoded, 
status=  PKIStatusInfoToString(response.status));
 
+if (response.status.status.len != 1 ||
+(response.status.status.data[0] != 0  
response.status.status.data[0] != 1))
+{
+SAL_WARN(vcl.pdfwriter, PDF signing: Timestamp request was not 
granted);
+return false;
+}
+
 NSSCMSAttribute timestamp;
 
 timestamp.type.type = siBuffer;
commit e075fec6e18b24f4037c11f015e870a470fa8ef8
Author: Tor Lillqvist t...@collabora.com
Date:   Mon Feb 23 14:51:06 2015 +0200

Copy SEC_StringToOID() and NSS_CMSSignerInfo_AddUnauthAttr() here

Despite being declared in a public header, they are not exported from
libsmime, so copy them here. Sigh.

Fix fallout from fe480d8136b204c8dc6c68916cce7e816f8b9c48.

Change-Id: I9ecba690a66c263528e5c12738d60cacec4f14ee

diff --git a/vcl/source/gdi/pdfwriter_impl.cxx 
b/vcl/source/gdi/pdfwriter_impl.cxx
index 5f1be3d..9d14f13 100644
--- a/vcl/source/gdi/pdfwriter_impl.cxx
+++ b/vcl/source/gdi/pdfwriter_impl.cxx
@@ -74,6 +74,7 @@
 #include nss.h
 #include cert.h
 #include hasht.h
+#include secerr.h
 #include sechash.h
 #include cms.h
 #include cmst.h
@@ -6399,6 +6400,221 @@ OUString PKIStatusInfoToString(const PKIStatusInfo 
rStatusInfo)
 return result;
 }
 
+// SEC_StringToOID() and NSS_CMSSignerInfo_AddUnauthAttr() are
+// not exported from libsmime, so copy them here. Sigh.
+
+SECStatus
+my_SEC_StringToOID(PLArenaPool *pool, SECItem *to, const char *from, PRUint32 
len)
+{
+PRUint32 decimal_numbers = 0;
+PRUint32 result_bytes = 0;
+SECStatus rv;
+PRUint8 result[1024];
+
+static const PRUint32 max_decimal = (0x / 10);
+static const char OIDstring[] = {OID.};
+
+if (!from || !to) {
+PORT_SetError(SEC_ERROR_INVALID_ARGS);
+return SECFailure;
+}
+if (!len) {
+len = PL_strlen(from);
+}
+if (len = 4  !PL_strncasecmp(from, OIDstring, 4)) {
+from += 4; /* skip leading OID. if present */
+len  -= 4;
+}
+if (!len) {
+bad_data:
+PORT_SetError(SEC_ERROR_BAD_DATA);
+return SECFailure;
+}
+do {
+PRUint32 decimal = 0;
+while (len  0  isdigit(*from)) {
+PRUint32 addend = (*from++ - '0');
+--len;
+if (decimal  max_decimal)  /* overflow */
+goto bad_data;
+decimal = (decimal * 10) + addend;
+if (decimal  addend)   /* overflow */
+goto bad_data;
+}
+if (len != 0  *from != '.') {
+goto bad_data;
+}
+if (decimal_numbers == 0) {
+if (decimal  2)
+goto bad_data;
+result[0] = decimal * 40;
+result_bytes = 1;
+} else if (decimal_numbers == 1) {
+if (decimal  40)
+goto bad_data;
+

[Libreoffice-commits] core.git: Branch 'feature/tiled-editing' - android/experimental

2015-02-23 Thread Miklos Vajna
 android/experimental/LOAndroid3/src/java/org/libreoffice/LOKitShell.java |
2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 7e250134b5d7e8fe7aa9fa42e2e5723f07fe1193
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Mon Feb 23 15:05:09 2015 +0100

android: enable editing by default

Change-Id: I1428c0bf5c4df8d5d0ede026d0f2e31ac48ce226

diff --git 
a/android/experimental/LOAndroid3/src/java/org/libreoffice/LOKitShell.java 
b/android/experimental/LOAndroid3/src/java/org/libreoffice/LOKitShell.java
index e3e7a36..b2b4b9d 100644
--- a/android/experimental/LOAndroid3/src/java/org/libreoffice/LOKitShell.java
+++ b/android/experimental/LOAndroid3/src/java/org/libreoffice/LOKitShell.java
@@ -61,7 +61,7 @@ public class LOKitShell {
 }
 
 public static boolean isEditingEnabled() {
-return false;
+return true;
 }
 
 public static LayerView getLayerView() {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2015-02-23 Thread Yousuf Philips
 sd/uiconfig/simpress/toolbar/toolbar.xml |   26 +-
 1 file changed, 17 insertions(+), 9 deletions(-)

New commits:
commit 66712536c68bb5a337b52ccade6193c7b2d04295
Author: Yousuf Philips philip...@hotmail.com
Date:   Sun Feb 22 05:32:44 2015 +0400

tdf#84909 rearrangement of Impress' drawing toolbar

Change-Id: I6d83b3655536142e05e56929356f89a762fd9f96
Reviewed-on: https://gerrit.libreoffice.org/14576
Tested-by: Yousuf Philips philip...@hotmail.com
Reviewed-by: Yousuf Philips philip...@hotmail.com

diff --git a/sd/uiconfig/simpress/toolbar/toolbar.xml 
b/sd/uiconfig/simpress/toolbar/toolbar.xml
index aaba0b0..6023cae 100644
--- a/sd/uiconfig/simpress/toolbar/toolbar.xml
+++ b/sd/uiconfig/simpress/toolbar/toolbar.xml
@@ -21,15 +21,16 @@
  toolbar:toolbaritem xlink:href=.uno:SelectObject toolbar:style=radio/
  toolbar:toolbarseparator/
  toolbar:toolbaritem xlink:href=.uno:Line toolbar:style=radio/
- toolbar:toolbaritem xlink:href=.uno:LineArrowEnd toolbar:style=radio/
+ toolbar:toolbaritem xlink:href=.uno:LineArrowEnd toolbar:style=radio 
toolbar:visible=false/
  toolbar:toolbaritem xlink:href=.uno:BasicShapes.rectangle 
toolbar:style=radio/
  toolbar:toolbaritem xlink:href=.uno:BasicShapes.ellipse 
toolbar:style=radio/
+ toolbar:toolbaritem xlink:href=.uno:LineToolbox toolbar:style=radio 
dropdown/
  toolbar:toolbaritem xlink:href=.uno:Text toolbar:style=radio/
  toolbar:toolbaritem xlink:href=.uno:VerticalText toolbar:style=radio/
+ toolbar:toolbaritem xlink:href=.uno:FontworkGalleryFloater/
  toolbar:toolbarseparator/
- toolbar:toolbaritem xlink:href=.uno:LineToolbox toolbar:style=radio 
dropdown/
- toolbar:toolbaritem xlink:href=.uno:ConnectorToolbox toolbar:style=radio 
dropdown/
- toolbar:toolbaritem xlink:href=.uno:ArrowsToolbox 
toolbar:helpid=.uno:ArrowsToolbox toolbar:style=radio dropdown 
toolbar:visible=false/
+ toolbar:toolbaritem xlink:href=.uno:ArrowsToolbox toolbar:style=radio 
dropdown/
+ toolbar:toolbaritem xlink:href=.uno:ConnectorToolbox toolbar:style=radio 
dropdown toolbar:visible=false/
  toolbar:toolbaritem xlink:href=.uno:Objects3DToolbox toolbar:style=radio 
dropdown toolbar:visible=false/
  toolbar:toolbaritem xlink:href=.uno:BasicShapes toolbar:style=radio 
dropdown/
  toolbar:toolbaritem xlink:href=.uno:SymbolShapes toolbar:style=radio 
dropdown/
@@ -44,13 +45,20 @@
  toolbar:toolbaritem xlink:href=.uno:ChangePolygon toolbar:visible=false/
  toolbar:toolbaritem xlink:href=.uno:ConvertInto3D toolbar:visible=false/
  toolbar:toolbaritem xlink:href=.uno:ConvertInto3DLatheFast 
toolbar:visible=false/
- toolbar:toolbarseparator/
- toolbar:toolbaritem xlink:href=.uno:FontworkGalleryFloater/
- toolbar:toolbaritem xlink:href=.uno:InsertGraphic toolbar:visible=false/
+ toolbar:toolbaritem xlink:href=.uno:ExtrusionToggle 
toolbar:helpid=10960/
  toolbar:toolbarseparator/
  toolbar:toolbaritem xlink:href=.uno:InsertToolbox toolbar:style=radio 
dropdown toolbar:visible=false/
  toolbar:toolbaritem xlink:href=.uno:Config toolbar:style=dropdown 
toolbar:visible=false/
  toolbar:toolbarseparator/
- toolbar:toolbaritem xlink:href=.uno:ExtrusionToggle 
toolbar:helpid=10960/
- toolbar:toolbaritem xlink:href=.uno:AnimationObjects toolbar:style=auto 
toolbar:visible=false/
+ toolbar:toolbaritem xlink:href=.uno:FillShadow toolbar:helpid=10299/
+ toolbar:toolbaritem xlink:href=.uno:TransformDialog 
toolbar:visible=false/
+ toolbar:toolbaritem xlink:href=.uno:ToggleObjectRotateMode/
+ toolbar:toolbarseparator/
+ toolbar:toolbaritem xlink:href=.uno:Mirror toolbar:visible=false/
+ toolbar:toolbaritem xlink:href=.uno:ObjectAlign toolbar:style=dropdown/
+ toolbar:toolbaritem xlink:href=.uno:ObjectPosition 
toolbar:style=dropdown/
+ toolbar:toolbaritem xlink:href=.uno:DistributeSelection/
+ toolbar:toolbarseparator/
+ toolbar:toolbaritem xlink:href=.uno:Crop/
+ toolbar:toolbaritem xlink:href=.uno:GraphicFilterToolbox 
toolbar:style=dropdown/
 /toolbar:toolbar
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 60064] [Feature request] define positional origin for tab stops

2015-02-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=60064

ajlittoz page74010...@yahoo.fr changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #9 from ajlittoz page74010...@yahoo.fr ---
There appears to be some magic with the ToC styles. Thanks for the tip, JBF. Is
it mentioned somewhere in the manual?

The workaround you present with an n-columns table is a solution for very
simple cases with the penalty of numerous table management (I feel, without any
proven argument, that tables induce complexity and some performance cost in a
document. Thus the fewer the better (moreover, I experienced many compatibility
problems with M$ Office).

A less simplistic use case:
---

When I prepare a specification or contract document, during the elaboration
period, I need to comment the clauses and explain the rationale behind some
choices.

Visually, the document is 2-column, but since comments, new proposals and
explanations have to be synchronised with text, tables are mandatory. The
left-hand column contains the to-be-definitive text and the right-hand column
various data with their own styles so that they are easily identified. This
styling precludes the use of built-in comment feature and revision feature
is OK for typos but not very handy when a full paragraph must be reworded.

Lay-out or style is important, it is part of communication art and you spare
time if your revised proposals are already styles as they should in the
definitive version. But in this intermediate state, the 2-column format halves
the available width and some tab stops may fall outside the table-column
margin. This is important for tabular data when you want a tab stop some
distance from the right margin (thus my simple example with ToC entry which was
the closest approximation to my need).

Another use case:
-

The same style may be use in different contexts (this may also translate to
lazyness(1) against the document author). Say style descriptive is used in
a standard section with standard margins. At some point, a table is used
with an item name or reference in first column and a description in the second
column styled as descriptive. Once again, there is a risk of tab-stopping
outside the cell.

(1) It is possible to define a hierarchical style descriptive in a table,
with modified tab stops, depending on the original descriptive, but
you must define one for each table shape and width!

This situation occurs every time your tab stop semantics is some distance from
the right margin. In the present LO implementation, this is specified as a
manual computation margin_width - desired_dist_from_right which cannot follow
margin changes because there is no way to tell LO this distance depends on some
other document characteristics.

It seems the magic for ToC styles does not apply to user styles. I tested it
for all tab flavors (left-, center-, right-aligned).

I admit that my proposal is something akin poor man's tables but tables and
tabs are not two facets of the same underlying semantic feature and cannot be
exchanged freely. In tables, you are locked in the cell geometry and overflow
splits your paragraph or word onto the next line. With tab, the text fragment
between tab characters may occupy adjacent space if it is empty; an unused
tab stop is skipped without adverse effect on lay-out.

The aim of this feature request is to decrease the document maintenance cost
and try to keep the company standard style dictionary standard, i.e. preventing
people from fiddling with it (sure, for good reasons) resulting in deviation
from the standard lay-out rules.

Are my arguments clear enough?

-- 
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 89429] build fails because of clucene module

2015-02-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89429

Beluga todven...@suomi24.fi changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||todven...@suomi24.fi
 Resolution|--- |NOTOURBUG

--- Comment #2 from Beluga todven...@suomi24.fi ---
Hey, you should post about this to the developer mailing list.

https://wiki.documentfoundation.org/QA/BugReport#Not_all_bugs_go_to_Bugzilla
http://lists.freedesktop.org/mailman/listinfo/libreoffice

I'm closing this as NOTOURBUG.

Thanks for your work!

-- 
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-commits] core.git: Branch 'feature/tiled-editing' - android/experimental

2015-02-23 Thread Tomaž Vajngerl
 
android/experimental/LOAndroid3/src/java/org/libreoffice/InvalidationHandler.java
 |   41 +-
 1 file changed, 38 insertions(+), 3 deletions(-)

New commits:
commit af0ecaa6dca6c643d1121c22d0c899492f6d3134
Author: Tomaž Vajngerl tomaz.vajng...@collabora.co.uk
Date:   Mon Feb 23 22:09:25 2015 +0900

android: add comments to InvalidationHandler

Change-Id: Ie40b711377d46a37ae7cdae1496919049b5b7736

diff --git 
a/android/experimental/LOAndroid3/src/java/org/libreoffice/InvalidationHandler.java
 
b/android/experimental/LOAndroid3/src/java/org/libreoffice/InvalidationHandler.java
index a37d3d4..ae18647b 100644
--- 
a/android/experimental/LOAndroid3/src/java/org/libreoffice/InvalidationHandler.java
+++ 
b/android/experimental/LOAndroid3/src/java/org/libreoffice/InvalidationHandler.java
@@ -7,12 +7,21 @@ import org.libreoffice.kit.Document;
 import org.mozilla.gecko.TextSelection;
 import org.mozilla.gecko.TextSelectionHandle;
 
+/**
+ * Parses (interprets) and handles invalidation messages from LibreOffice.
+ */
 public class InvalidationHandler {
 private static String LOGTAG = InvalidationHandler.class.getSimpleName();
 
 public InvalidationHandler() {
 }
 
+/**
+ * Processes invalidation message
+ *
+ * @param messageID - ID of the message
+ * @param payload - additional invalidation message payload
+ */
 public void processMessage(int messageID, String payload) {
 switch (messageID) {
 case Document.CALLBACK_INVALIDATE_TILES:
@@ -36,12 +45,18 @@ public class InvalidationHandler {
 }
 }
 
-private RectF convertCallbackMessageStringToRectF(String text) {
-if (text.equals(EMPTY)) {
+/**
+ * Parses the invalidation message text and converts to rectangle in pixel 
coordinates
+ *
+ * @param messageText - invalidation message text
+ * @return rectangle in pixel coordinates
+ */
+private RectF convertCallbackMessageStringToRectF(String messageText) {
+if (messageText.equals(EMPTY)) {
 return null;
 }
 
-String[] coordinates = text.split(,);
+String[] coordinates = messageText.split(,);
 
 if (coordinates.length != 4) {
 return null;
@@ -63,6 +78,10 @@ public class InvalidationHandler {
 return rect;
 }
 
+/**
+ * Handles the cursor invalidation message
+ * @param payload
+ */
 private void invalidateCursor(String payload) {
 RectF rect = convertCallbackMessageStringToRectF(payload);
 if (rect != null) {
@@ -77,6 +96,10 @@ public class InvalidationHandler {
 }
 }
 
+/**
+ * Handles the tile invalidation message
+ * @param payload
+ */
 private void invalidateTiles(String payload) {
 RectF rect = convertCallbackMessageStringToRectF(payload);
 if (rect != null) {
@@ -84,6 +107,10 @@ public class InvalidationHandler {
 }
 }
 
+/**
+ * Handles the selection start invalidation message
+ * @param payload
+ */
 private void invalidateSelectionStart(String payload) {
 RectF rect = convertCallbackMessageStringToRectF(payload);
 if (rect != null) {
@@ -99,6 +126,10 @@ public class InvalidationHandler {
 }
 }
 
+/**
+ * Handles the selection end invalidation message
+ * @param payload
+ */
 private void invalidateSelectionEnd(String payload) {
 RectF rect = convertCallbackMessageStringToRectF(payload);
 if (rect != null) {
@@ -114,6 +145,10 @@ public class InvalidationHandler {
 }
 }
 
+/**
+ * Handles the selection invalidation message
+ * @param payload
+ */
 private void invalidateSelection(String payload) {
 if (payload.isEmpty()) {
 TextSelection textSelection = 
LibreOfficeMainActivity.mAppContext.getTextSelection();
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 89588] New: .DOC file with password: I can draw into file without password

2015-02-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89588

Bug ID: 89588
   Summary: .DOC file with password: I can draw into file without
password
   Product: LibreOffice
   Version: 4.4.0.3 release
  Hardware: Other
OS: All
Status: UNCONFIRMED
  Severity: major
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: r...@post.cz

Created attachment 113624
  -- https://bugs.documentfoundation.org/attachment.cgi?id=113624action=edit
printscreen of bug

Steps:
open attachment from bug 89385
https://bugs.documentfoundation.org/attachment.cgi?id=113392
read-only password: a
click on menu - Basic shapes
Actual results:
draw shapes is possible. After save are this shapes saved.

Expected results
read-only file. Should not be possible to write content into this file.

LO 4.4.0.3, win7

-- 
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 89589] New: Change the size and position of the window display presentation.

2015-02-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89589

Bug ID: 89589
   Summary: Change the size and position of the window display
presentation.
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: an...@mail.ru

First, thanks to all the developers LibreOffice for a great product! 
I have a question to the developers. Is it possible to make the next version of
Impress opportunity to resize (not resolution!) Windows show presentation? Or,
please, at least not tie it programmatically to 0,0 first or second monitor to
be able to third-party tools to do it. 

I would like just to the developers added an option to edit the size and
position of the window, or removed the forced return of coordinates in 0.0.
Window display presentation PoverPoint allows you to change its position and
size. I would like very much to Impress also had the opportunity!

Thanks!

Detailed information:
http://ask.libreoffice.org/en/question/46656/resizing-the-window-presentations/

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


Re: Package building reduces the lifetime of the SSD drives

2015-02-23 Thread Ashod Nakashian
On Mon, Feb 23, 2015 at 5:14 AM, Robert Antoni Buj i Gelonch
robert@gmail.com wrote:
 There are a lot of copy operations before to package LO. I propose you copy
 the files to package into a temporary ramdisk.


I take it we're talking about 'instdir' which holds the to-be-packaged
files, then wouldn't it be easier to just hardlink to them?

There is already a configure flag to do just that: --enable-hardlink-deliver

It should do what you want, but if it doesn't, then patches are welcome!
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 89464] BUILDFROMSOURCES: collect2: error: ld returned 1 exit status

2015-02-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89464

Beluga todven...@suomi24.fi changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||todven...@suomi24.fi
 Resolution|--- |NOTOURBUG

--- Comment #1 from Beluga todven...@suomi24.fi ---
Hey, you should post about this to the developer mailing list.

https://wiki.documentfoundation.org/QA/BugReport#Not_all_bugs_go_to_Bugzilla
http://lists.freedesktop.org/mailman/listinfo/libreoffice

I'm closing this as NOTOURBUG.

Thanks!

-- 
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-commits] core.git: svtools/qa

2015-02-23 Thread Stephan Bergmann
 svtools/qa/unit/GraphicObjectTest.cxx |2 ++
 1 file changed, 2 insertions(+)

New commits:
commit c5d488bf8cd4762c6bb506c00bb525da60e2b733
Author: Stephan Bergmann sberg...@redhat.com
Date:   Mon Feb 23 14:18:41 2015 +0100

Missing dispose

Change-Id: If050113552ce331252b3046830a5583c66729531

diff --git a/svtools/qa/unit/GraphicObjectTest.cxx 
b/svtools/qa/unit/GraphicObjectTest.cxx
index cc73b5c..036df77 100644
--- a/svtools/qa/unit/GraphicObjectTest.cxx
+++ b/svtools/qa/unit/GraphicObjectTest.cxx
@@ -303,6 +303,8 @@ void GraphicObjectTest::testTdf88935()
 CPPUNIT_ASSERT(!pGraphObj1-IsSwappedOut());
 CPPUNIT_ASSERT(!pGraphObj2-IsSwappedOut());
 }
+
+xComponent-dispose();
 }
 
 CPPUNIT_TEST_SUITE_REGISTRATION(GraphicObjectTest);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: icon-themes/oxygen

2015-02-23 Thread Yousuf Philips
 icon-themes/oxygen/cmd/lc_basicshapes-alt.png|binary
 icon-themes/oxygen/cmd/lc_basicshapes.png|binary
 icon-themes/oxygen/cmd/lc_deletepage.png |binary
 icon-themes/oxygen/cmd/lc_distributeselection.png|binary
 icon-themes/oxygen/cmd/lc_drawcaption.png|binary
 icon-themes/oxygen/cmd/lc_drawtext.png   |binary
 icon-themes/oxygen/cmd/lc_drawtext.xcf.bz2   |binary
 icon-themes/oxygen/cmd/lc_formatpaintbrush.png   |binary
 icon-themes/oxygen/cmd/lc_formatpaintbrush.xcf.bz2   |binary
 icon-themes/oxygen/cmd/lc_insertannotation.png   |binary
 icon-themes/oxygen/cmd/lc_insertannotation.xcf.bz2   |binary
 icon-themes/oxygen/cmd/lc_insertfieldctrl.png|binary
 icon-themes/oxygen/cmd/lc_insertsymbol.png   |binary
 icon-themes/oxygen/cmd/lc_numberformatdate.png   |binary
 icon-themes/oxygen/cmd/lc_pagesetup.png  |binary
 icon-themes/oxygen/cmd/lc_presentation.png   |binary
 icon-themes/oxygen/cmd/lc_presentation.xcf.bz2   |binary
 icon-themes/oxygen/cmd/lc_presentationcurrentslide.png   |binary
 icon-themes/oxygen/cmd/lc_printpreview.png   |binary
 icon-themes/oxygen/cmd/lc_searchdialog.png   |binary
 icon-themes/oxygen/cmd/lc_shadowed.png   |binary
 icon-themes/oxygen/cmd/lc_shadowed.xcf.bz2   |binary
 icon-themes/oxygen/cmd/lc_slidemasterpage.png|binary
 icon-themes/oxygen/cmd/lc_toggleobjectrotatemode.png |binary
 icon-themes/oxygen/cmd/lc_viewdatasourcebrowser.png  |binary
 icon-themes/oxygen/cmd/lc_viewdatasourcebrowser.xcf.bz2  |binary
 icon-themes/oxygen/cmd/lc_zoommode.png   |binary
 icon-themes/oxygen/cmd/sc_basicshapes-alt.png|binary
 icon-themes/oxygen/cmd/sc_basicshapes.png|binary
 icon-themes/oxygen/cmd/sc_datasort.png   |binary
 icon-themes/oxygen/cmd/sc_drawtext.png   |binary
 icon-themes/oxygen/cmd/sc_drawtext.xcf.bz2   |binary
 icon-themes/oxygen/cmd/sc_insertsymbol.png   |binary
 icon-themes/oxygen/cmd/sc_printpreview.png   |binary
 icon-themes/oxygen/cmd/sc_shadowed.png   |binary
 icon-themes/oxygen/cmd/sc_shadowed.xcf.bz2   |binary
 icon-themes/oxygen/sfx2/res/symphony/sidebar-gallery-large.png   |binary
 icon-themes/oxygen/sfx2/res/symphony/sidebar-navigator-large-alt.png |binary
 icon-themes/oxygen/sfx2/res/symphony/sidebar-navigator-large.png |binary
 icon-themes/oxygen/sfx2/res/symphony/sidebar-property-large-alt.png  |binary
 icon-themes/oxygen/sfx2/res/symphony/sidebar-property-large.png  |binary
 icon-themes/oxygen/sfx2/res/symphony/sidebar-style-large.png |binary
 42 files changed

New commits:
commit 4dd3e2421786bc13aca46e65da6c0510d8a32afc
Author: Yousuf Philips philip...@hotmail.com
Date:   Mon Feb 23 18:15:59 2015 +0400

OXYGEN: Added sidebar icons as well as add icons from the original set

Change-Id: I6702815eb5deb9219cb81a4de09c22eec5a16199
Reviewed-on: https://gerrit.libreoffice.org/14591
Tested-by: Yousuf Philips philip...@hotmail.com
Reviewed-by: Yousuf Philips philip...@hotmail.com

diff --git a/icon-themes/oxygen/cmd/lc_basicshapes-alt.png 
b/icon-themes/oxygen/cmd/lc_basicshapes-alt.png
new file mode 100644
index 000..86adc2a
Binary files /dev/null and b/icon-themes/oxygen/cmd/lc_basicshapes-alt.png 
differ
diff --git a/icon-themes/oxygen/cmd/lc_basicshapes.png 
b/icon-themes/oxygen/cmd/lc_basicshapes.png
index 86adc2a..138aa5b 100644
Binary files a/icon-themes/oxygen/cmd/lc_basicshapes.png and 
b/icon-themes/oxygen/cmd/lc_basicshapes.png differ
diff --git a/icon-themes/oxygen/cmd/lc_deletepage.png 
b/icon-themes/oxygen/cmd/lc_deletepage.png
new file mode 100644
index 000..ba0a72e
Binary files /dev/null and b/icon-themes/oxygen/cmd/lc_deletepage.png differ
diff --git a/icon-themes/oxygen/cmd/lc_distributeselection.png 
b/icon-themes/oxygen/cmd/lc_distributeselection.png
new file mode 100644
index 000..421574f
Binary files /dev/null and b/icon-themes/oxygen/cmd/lc_distributeselection.png 
differ
diff --git a/icon-themes/oxygen/cmd/lc_drawcaption.png 
b/icon-themes/oxygen/cmd/lc_drawcaption.png
index 073e48a..b0ca926 100644
Binary files a/icon-themes/oxygen/cmd/lc_drawcaption.png and 
b/icon-themes/oxygen/cmd/lc_drawcaption.png differ
diff --git a/icon-themes/oxygen/cmd/lc_drawtext.png 

[Libreoffice-bugs] [Bug 89589] Change the size and position of the window display presentation.

2015-02-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89589

Andrey an...@mail.ru changed:

   What|Removed |Added

Version|unspecified |4.3.5.2 release

-- 
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-commits] core.git: 2 commits - vcl/unx

2015-02-23 Thread Jan-Marek Glogowski
 vcl/unx/kde4/KDE4FilePicker.cxx |   76 +---
 vcl/unx/kde4/KDE4FilePicker.hxx |6 +--
 2 files changed, 51 insertions(+), 31 deletions(-)

New commits:
commit b613270a730ace29dd1b16b29beb34f34a5d
Author: Jan-Marek Glogowski glo...@fbihome.de
Date:   Mon Feb 23 12:56:25 2015 +0100

KDE4: improve default load and save dialog titles

Switches from STR_SVT_FILEPICKER_ to STR_FPICKER_ resource IDs and
uses the default resource manager (ImplGetResMgr).

The STR_FPICKER_ IDs contain default translated titles for the open
and save dialogs, which KDE4 dialogs are currently missing.

Actually I want 'Save as' instead of 'Save'... but it's better
then the current - empty - default.

Change-Id: Ia43774ea66a96838f53cf6614a264d9c6a94c501

diff --git a/vcl/unx/kde4/KDE4FilePicker.cxx b/vcl/unx/kde4/KDE4FilePicker.cxx
index eb82074..ac21f81 100644
--- a/vcl/unx/kde4/KDE4FilePicker.cxx
+++ b/vcl/unx/kde4/KDE4FilePicker.cxx
@@ -58,6 +58,8 @@
 
 #include generic/geninst.h
 
+#include svids.hrc
+
 using namespace ::com::sun::star;
 using namespace ::com::sun::star::ui::dialogs;
 using namespace ::com::sun::star::ui::dialogs::TemplateDescription;
@@ -109,7 +111,6 @@ QString toQString(const OUString s)
 
 KDE4FilePicker::KDE4FilePicker( const uno::Referenceuno::XComponentContext )
 : KDE4FilePicker_Base(_helperMutex)
-, _resMgr( ResMgr::CreateResMgr(fps_office) )
 , allowRemoteUrls( false )
 {
 _extraControls = new QWidget();
@@ -201,7 +202,6 @@ void KDE4FilePicker::cleanupProxy()
 SalYieldMutexReleaser aReleaser;
 return Q_EMIT cleanupProxySignal();
 }
-delete _resMgr;
 delete _dialog;
 }
 
@@ -523,6 +523,24 @@ OUString SAL_CALL KDE4FilePicker::getLabel(sal_Int16 
controlId)
 return toOUString(label);
 }
 
+QString KDE4FilePicker::getResString( sal_Int16 aRedId )
+{
+QString aResString;
+
+if( aRedId  0 )
+return aResString;
+
+try
+{
+aResString = toQString(ResId(aRedId, *ImplGetResMgr()).toString());
+}
+catch(...)
+{
+}
+
+return aResString.replace('~', '');
+}
+
 void KDE4FilePicker::addCustomControl(sal_Int16 controlId)
 {
 QWidget* widget = 0;
@@ -531,37 +549,37 @@ void KDE4FilePicker::addCustomControl(sal_Int16 controlId)
 switch (controlId)
 {
 case CHECKBOX_AUTOEXTENSION:
-resId = STR_SVT_FILEPICKER_AUTO_EXTENSION;
+resId = STR_FPICKER_AUTO_EXTENSION;
 break;
 case CHECKBOX_PASSWORD:
-resId = STR_SVT_FILEPICKER_PASSWORD;
+resId = STR_FPICKER_PASSWORD;
 break;
 case CHECKBOX_FILTEROPTIONS:
-resId = STR_SVT_FILEPICKER_FILTER_OPTIONS;
+resId = STR_FPICKER_FILTER_OPTIONS;
 break;
 case CHECKBOX_READONLY:
-resId = STR_SVT_FILEPICKER_READONLY;
+resId = STR_FPICKER_READONLY;
 break;
 case CHECKBOX_LINK:
-resId = STR_SVT_FILEPICKER_INSERT_AS_LINK;
+resId = STR_FPICKER_INSERT_AS_LINK;
 break;
 case CHECKBOX_PREVIEW:
-resId = STR_SVT_FILEPICKER_SHOW_PREVIEW;
+resId = STR_FPICKER_SHOW_PREVIEW;
 break;
 case CHECKBOX_SELECTION:
-resId = STR_SVT_FILEPICKER_SELECTION;
+resId = STR_FPICKER_SELECTION;
 break;
 case PUSHBUTTON_PLAY:
-resId = STR_SVT_FILEPICKER_PLAY;
+resId = STR_FPICKER_PLAY;
 break;
 case LISTBOX_VERSION:
-resId = STR_SVT_FILEPICKER_VERSION;
+resId = STR_FPICKER_VERSION;
 break;
 case LISTBOX_TEMPLATE:
-resId = STR_SVT_FILEPICKER_TEMPLATES;
+resId = STR_FPICKER_TEMPLATES;
 break;
 case LISTBOX_IMAGE_TEMPLATE:
-resId = STR_SVT_FILEPICKER_IMAGE_TEMPLATE;
+resId = STR_FPICKER_IMAGE_TEMPLATE;
 break;
 case LISTBOX_VERSION_LABEL:
 case LISTBOX_TEMPLATE_LABEL:
@@ -580,16 +598,7 @@ void KDE4FilePicker::addCustomControl(sal_Int16 controlId)
 case CHECKBOX_PREVIEW:
 case CHECKBOX_SELECTION:
 {
-QString label;
-
-if (_resMgr  resId != -1)
-{
-OUString s(ResId(resId, *_resMgr).toString());
-label = toQString(s);
-label.replace(~, );
-}
-
-widget = new QCheckBox(label, _extraControls);
+widget = new QCheckBox(getResString(resId), _extraControls);
 
 // the checkbox is created even for CHECKBOX_AUTOEXTENSION to 
simplify
 // code, but the checkbox is hidden and ignored
@@ -719,6 +728,21 @@ void SAL_CALL KDE4FilePicker::initialize( const 
uno::Sequenceuno::Any args )
 }
 
 _dialog-setOperationMode( operationMode );
+
+sal_Int16 resId = -1;
+switch 

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

2015-02-23 Thread Stephan Bergmann
 sw/source/core/undo/undel.cxx |6 ++
 1 file changed, 2 insertions(+), 4 deletions(-)

New commits:
commit da57afc4d5f7168addfad5f51d5905ff64adcf60
Author: Stephan Bergmann sberg...@redhat.com
Date:   Mon Feb 23 16:41:09 2015 +0100

No need for bad SwFlyFrmFmt downcasts

Change-Id: Ie70559f344018647cbb92fe542a2278056da20e4

diff --git a/sw/source/core/undo/undel.cxx b/sw/source/core/undo/undel.cxx
index 14ec9dc..2477147 100644
--- a/sw/source/core/undo/undel.cxx
+++ b/sw/source/core/undo/undel.cxx
@@ -54,12 +54,10 @@ static void lcl_MakeAutoFrms( const SwFrmFmts rSpzArr, 
sal_uLong nMovedIndex )
 {
 if( !rSpzArr.empty() )
 {
-SwFlyFrmFmt* pFmt;
-const SwFmtAnchor* pAnchor;
 for( size_t n = 0; n  rSpzArr.size(); ++n )
 {
-pFmt = static_castSwFlyFrmFmt*(rSpzArr[n]);
-pAnchor = pFmt-GetAnchor();
+SwFrmFmt * pFmt = rSpzArr[n];
+const SwFmtAnchor* pAnchor = pFmt-GetAnchor();
 if (pAnchor-GetAnchorId() == FLY_AT_CHAR)
 {
 const SwPosition* pAPos = pAnchor-GetCntntAnchor();
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: Bad Jenkins Slave?

2015-02-23 Thread Norbert Thiebaud
On Mon, Feb 23, 2015 at 4:11 AM, Lionel Elie Mamane lio...@mamane.lu wrote:
 On Sun, Feb 22, 2015 at 02:02:07PM +, Wols Lists wrote:

 Mmmm ... so Unix that lets you delete files under a running process,
 causing a crash, is any better?

 No, it doesn't. It just lets you remove one of the file's names (it
 often has only one). If a running process has a file opened, that file
 is not deleted, and will be automatically deleted when the process
 closes it (if it has no name anymore).

Yep it 'delete' the inode, not the actual file, the file stayt there
as long as there is at least one open fd on it...
But since the original arguement was of the 'To quoque' fallacy kind,
I figured that technical precision was not paramount :-)

BTW: I narrow down the exception throwing that cause the termination
on Mac when a table view is linked to a database that do not exist...
I still need to dig a bit more down to find where that need catching...
When you set the database path it does pop up a warning dialog and
continue.. but when you load a file that reference a missing db and
right-click on a column header that exception is not caught, or more
exactly it is caught by the 'catch-all-and-die' mechanism...


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


[Libreoffice-commits] core.git: Branch 'libreoffice-4-4' - include/sal ucb/source

2015-02-23 Thread Stephan Bergmann
 include/sal/log-areas.dox |1 +
 ucb/source/ucp/file/shell.cxx |9 -
 2 files changed, 9 insertions(+), 1 deletion(-)

New commits:
commit 80a60fc02be0f94af0abc22e5b047ce4db88d87e
Author: Stephan Bergmann sberg...@redhat.com
Date:   Mon Feb 23 10:31:21 2015 +0100

file UCP: Ensure myLocalTime is initialized

When a file's time is epoch (1970-01-01 00:00:00, i.e., TimeValue temp is 
all
zero) and the TZ is UTC or westward, osl_getLocalTimeFromSystemTime returns
false and leaves myLocalTime uninitialized.  That e.g. confuses 
getModuleByUrl
(scripting/source/pyprov/pythonscript.py), potentially re-loading a Python
script with epoch time (as happens e.g. for the share/Scripts/python/ files 
in
an xdg-app installation of LO) every time it is accessed, falsely assuming 
it
has changed on disk since last load.

Change-Id: I8d4228feb28e2697a7021e3488ae2c09e8439ed8
(cherry picked from commit 94c9206399954d018aae8a1bd4e4b33354b9cdaf)
Reviewed-on: https://gerrit.libreoffice.org/14587
Reviewed-by: Caolán McNamara caol...@redhat.com
Tested-by: Caolán McNamara caol...@redhat.com

diff --git a/include/sal/log-areas.dox b/include/sal/log-areas.dox
index 9b55f74..baea1d4 100644
--- a/include/sal/log-areas.dox
+++ b/include/sal/log-areas.dox
@@ -345,6 +345,7 @@ certain functionality.
 @li @c ucb.ucp
 @li @c ucb.ucp.cmis
 @li @c ucb.ucp.ext
+@li @c ucb.ucp.file
 @li @c ucb.ucp.ftp
 @li @c ucb.ucp.gio
 @li @c ucb.ucp.gvfs
diff --git a/ucb/source/ucp/file/shell.cxx b/ucb/source/ucp/file/shell.cxx
index c07e97d..36eb82d 100644
--- a/ucb/source/ucp/file/shell.cxx
+++ b/ucb/source/ucp/file/shell.cxx
@@ -2440,7 +2440,14 @@ shell::commit( const shell::ContentMap::iterator it,
 
 // Convert system time to local time (for EA)
 TimeValue myLocalTime;
-osl_getLocalTimeFromSystemTime( temp, myLocalTime );
+if (!osl_getLocalTimeFromSystemTime( temp, myLocalTime ))
+{
+SAL_WARN(
+ucb.ucp.file,
+cannot convert (  temp.Seconds  ,   temp.Nanosec
+ ) to local time);
+myLocalTime = temp;
+}
 
 oslDateTime myDateTime;
 osl_getDateTimeFromTimeValue( myLocalTime, myDateTime );
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2015-02-23 Thread Tomaž Vajngerl
 sc/source/ui/inc/tabsplit.hxx  |1 
 sc/source/ui/view/gridwin.cxx  |   82 +++--
 sc/source/ui/view/tabsplit.cxx |   56 +---
 sc/source/ui/view/tabview.cxx  |6 ++-
 4 files changed, 78 insertions(+), 67 deletions(-)

New commits:
commit 8c693312f211a2046e433079cddaca811cae4a78
Author: Tomaž Vajngerl tomaz.vajng...@collabora.co.uk
Date:   Mon Feb 23 23:47:12 2015 +0900

simplify drawing of splitter, add more flat look

Change-Id: Ie5040c2932715b2505635ff3cb909ccfeb4b7fa0

diff --git a/sc/source/ui/view/tabsplit.cxx b/sc/source/ui/view/tabsplit.cxx
index 073aaf1..cebbeb0 100644
--- a/sc/source/ui/view/tabsplit.cxx
+++ b/sc/source/ui/view/tabsplit.cxx
@@ -65,17 +65,10 @@ void ScTabSplitter::Paint( const Rectangle rRect )
 {
 case SC_SPLIT_NONE:
 {
-// Draw 3D border
 
SetLineColor(GetSettings().GetStyleSettings().GetShadowColor());
-DrawLine(rRect.TopRight(), rRect.BottomRight());
-DrawLine(rRect.BottomLeft(), rRect.BottomRight());
-SetLineColor(GetSettings().GetStyleSettings().GetLightColor());
-DrawLine(rRect.TopLeft(), rRect.TopRight());
-DrawLine(rRect.TopLeft(), rRect.BottomLeft());
-// Fill internal rectangle
-SetLineColor();
-SetFillColor(GetSettings().GetStyleSettings().GetFaceColor());
-DrawRect(Rectangle(rRect.Left()+1, rRect.Top()+1, 
rRect.Right()-1, rRect.Bottom()-1));
+
SetFillColor(GetSettings().GetStyleSettings().GetShadowColor());
+DrawRect(Rectangle(rRect.Left(), rRect.Top(), rRect.Right(), 
rRect.Bottom()));
+
 // Draw handle
 SetLineColor(Color(COL_BLACK));
 SetFillColor(Color(COL_BLACK));
@@ -87,13 +80,9 @@ void ScTabSplitter::Paint( const Rectangle rRect )
 break;
 }
 case SC_SPLIT_NORMAL:
-SetLineColor(GetSettings().GetStyleSettings().GetLightColor());
-DrawLine(rRect.TopLeft(), rRect.BottomLeft());
 
SetLineColor(GetSettings().GetStyleSettings().GetShadowColor());
-DrawLine(rRect.TopRight(), rRect.BottomRight());
-SetLineColor();
-SetFillColor(GetSettings().GetStyleSettings().GetFaceColor());
-DrawRect(Rectangle(Point(rRect.Left()+1, rRect.Top()), 
Point(rRect.Right()-1, rRect.Bottom(;
+
SetFillColor(GetSettings().GetStyleSettings().GetShadowColor());
+DrawRect(Rectangle(rRect.Left(), rRect.Top(), rRect.Right(), 
rRect.Bottom()));
 break;
 case SC_SPLIT_FIX:
 // Nothing to draw
@@ -106,18 +95,11 @@ void ScTabSplitter::Paint( const Rectangle rRect )
 {
 case SC_SPLIT_NONE:
 {
-// Draw 3D border
 
SetLineColor(GetSettings().GetStyleSettings().GetShadowColor());
-DrawLine(rRect.TopRight(), rRect.BottomRight());
-DrawLine(rRect.BottomLeft(), rRect.BottomRight());
-SetLineColor(GetSettings().GetStyleSettings().GetLightColor());
-DrawLine(rRect.TopLeft(), rRect.TopRight());
-DrawLine(rRect.TopLeft(), rRect.BottomLeft());
-// Fill internal rectangle
-SetLineColor();
-SetFillColor(GetSettings().GetStyleSettings().GetFaceColor());
-DrawRect(Rectangle(rRect.Left()+1, rRect.Top()+1, 
rRect.Right()-1, rRect.Bottom()-1));
-// Draw handle
+
SetFillColor(GetSettings().GetStyleSettings().GetShadowColor());
+DrawRect(Rectangle(rRect.Left(), rRect.Top(), rRect.Right(), 
rRect.Bottom()));
+
+ // Draw handle
 SetLineColor(Color(COL_BLACK));
 SetFillColor(Color(COL_BLACK));
 const long yc = rRect.Top()+rRect.Bottom();
@@ -128,13 +110,9 @@ void ScTabSplitter::Paint( const Rectangle rRect )
 break;
 }
 case SC_SPLIT_NORMAL:
-SetLineColor(GetSettings().GetStyleSettings().GetLightColor());
-DrawLine(rRect.TopLeft(), rRect.TopRight());
 
SetLineColor(GetSettings().GetStyleSettings().GetShadowColor());
-DrawLine(rRect.BottomLeft(), rRect.BottomRight());
-SetLineColor();
-SetFillColor(GetSettings().GetStyleSettings().GetFaceColor());
-DrawRect(Rectangle(Point(rRect.Left(), rRect.Top()+1), 
Point(rRect.Right(), rRect.Bottom()-1)));
+
SetFillColor(GetSettings().GetStyleSettings().GetShadowColor());
+DrawRect(Rectangle(rRect.Left(), rRect.Top(), rRect.Right(), 
rRect.Bottom()));
 break;
 case 

[Libreoffice-commits] core.git: 4 commits - connectivity/source desktop/source include/comphelper

2015-02-23 Thread Bjoern Michaelsen
 connectivity/source/commontools/dbtools.cxx   |   10 +-
 desktop/source/deployment/registry/component/dp_component.cxx |   34 
 include/comphelper/propertysequence.hxx   |   40 ++
 3 files changed, 64 insertions(+), 20 deletions(-)

New commits:
commit f9632ab04288909c9ff4de56171c31acb7f2c573
Author: Bjoern Michaelsen bjoern.michael...@canonical.com
Date:   Mon Feb 23 02:38:18 2015 +0100

use init lists for property sequences

Change-Id: I8b3b2b839c37b584e1a4036e49af7ff2737ea7f6

diff --git a/connectivity/source/commontools/dbtools.cxx 
b/connectivity/source/commontools/dbtools.cxx
index b385eb7..f5d564c 100644
--- a/connectivity/source/commontools/dbtools.cxx
+++ b/connectivity/source/commontools/dbtools.cxx
@@ -68,6 +68,7 @@
 #include comphelper/interaction.hxx
 #include comphelper/processfactory.hxx
 #include comphelper/property.hxx
+#include comphelper/propertysequence.hxx
 #include connectivity/conncleanup.hxx
 #include connectivity/dbconversion.hxx
 #include connectivity/dbexception.hxx
@@ -410,11 +411,10 @@ SharedConnection lcl_connectRowSet(const Reference 
XRowSet _rxRowSet, const R
 
xRowSetProps-getPropertyValue(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_PASSWORD))
 = sPwd;
 if (!sUser.isEmpty())
 {   // use user and pwd together with the url
-Sequence PropertyValue aInfo(2);
-aInfo.getArray()[0].Name = user;
-aInfo.getArray()[0].Value = sUser;
-aInfo.getArray()[1].Name = password;
-aInfo.getArray()[1].Value = sPwd;
+auto aInfo(::comphelper::InitPropertySequence({
+{ user, makeAny(sUser) },
+{ password, makeAny(sPwd) }
+}));
 xPureConnection = xDriverManager-getConnectionWithInfo( 
sURL, aInfo );
 }
 else
diff --git a/include/comphelper/propertysequence.hxx 
b/include/comphelper/propertysequence.hxx
new file mode 100644
index 000..ce28e4f
--- /dev/null
+++ b/include/comphelper/propertysequence.hxx
@@ -0,0 +1,40 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/*
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+
+#ifndef INCLUDED_COMPHELPER_PROPERTYSEQUENCE_HXX
+#define INCLUDED_COMPHELPER_PROPERTYSEQUENCE_HXX
+
+#include utility
+#include initializer_list
+#include com/sun/star/uno/Any.hxx
+#include com/sun/star/uno/Sequence.hxx
+#include com/sun/star/beans/PropertyValue.hpp
+
+namespace comphelper
+{
+::com::sun::star::uno::Sequence ::com::sun::star::beans::PropertyValue  
InitPropertySequence(
+::std::initializer_list ::std::pair OUString, 
::com::sun::star::uno::Any   vInit)
+{
+::com::sun::star::uno::Sequence 
::com::sun::star::beans::PropertyValue 
vResult{static_castsal_Int32(vInit.size())};
+size_t nCount{0};
+for(auto aEntry : vInit)
+{
+vResult[nCount].Name = std::move(aEntry.first);
+vResult[nCount].Value = std::move(aEntry.second);
+++nCount;
+}
+return std::move(vResult);
+}
+}   // namespace comphelper
+
+
+
+#endif // INCLUDED_COMPHELPER_PROPERTYSEQUENCE_HXX
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
commit caebcd5d12f8d2798f32f72fd0bcfdc12f9f2c4f
Author: Bjoern Michaelsen bjoern.michael...@canonical.com
Date:   Fri Feb 20 01:55:12 2015 +0100

related lp#1419836: provide decent error message

Change-Id: I95387ae6b2ca8f49af87945954e4c418322860be

diff --git a/desktop/source/deployment/registry/component/dp_component.cxx 
b/desktop/source/deployment/registry/component/dp_component.cxx
index b3ee90f..d859d04 100644
--- a/desktop/source/deployment/registry/component/dp_component.cxx
+++ b/desktop/source/deployment/registry/component/dp_component.cxx
@@ -1101,8 +1101,17 @@ ReferenceXComponentContext raise_uno_process(
 ::std::vectorOUString bootvars = getCmdBootstrapVariables();
 args.insert(args.end(), bootvars.begin(), bootvars.end());
 
-oslProcess hProcess = raiseProcess(
-url, comphelper::containerToSequence(args) );
+oslProcess hProcess;
+try {
+hProcess = raiseProcess(
+url, comphelper::containerToSequence(args) );
+}
+catch (...) {
+OUString sMsg = error starting process:  + url;
+for(auto arg : args)
+sMsg +=   + arg;
+throw uno::RuntimeException(sMsg);
+}
 try {
 return ReferenceXComponentContext(
 resolveUnoURL( connectStr, xContext, abortChannel.get() ),
commit d30b8f9357e9eb505ebff133b24a3d1ce0bdd58f
Author: Bjoern 

[Libreoffice-bugs] [Bug 89110] LibreOffice Calc crashes when soffice.bin reaches 1.600.000 K RAM in Taskmanager (out of memory)

2015-02-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89110

--- Comment #10 from Jonas Müller fors...@mailbox.org ---
Downloaded
libo-master64~2015-02-23_01.55.33_LibreOfficeDev_4.5.0.0.alpha0_Win_x64 and
tried it again.

This version reaches about 2.115.000 K memory and does NOT crash when editing a
cell or closing the file while the memory allocation is at this level! So far I
couldn't get it to crash.

(Also this version runs quite a bit smoother while scrolling trough all the
images and it responds very quickly. The x86 4.4.0.3 version is dropping some
frames and lagging a bit while skimming through the file while the x86-64
version is silky-smooth at all times on my 120 hz screen)

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


[Bug 57950] Replace chained O(U)StringBuffer::append() with operator+

2015-02-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=57950

--- Comment #51 from Commit Notification 
libreoffice-comm...@lists.freedesktop.org ---
Bjoern Michaelsen committed a patch related to this issue.
It has been pushed to master:

http://cgit.freedesktop.org/libreoffice/core/commit/?id=f8c745d1c060312c03fa020e52acd1337b6e81d9

fdo#57950: skip verbose OUStringBuffer

It will be available in 4.5.0.

The patch should be included in the daily builds available at
http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
http://wiki.documentfoundation.org/Testing_Daily_Builds
Affected users are encouraged to test the fix and report feedback.

-- 
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-bugs] [Bug 89591] New users are unable to download LibreOffice from the Norwegian web site

2015-02-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89591

--- Comment #1 from sro...@gmail.com ---
By the way, it's unclear which Component is the right to choose for issues
regarding the web sites.

-- 
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-ux-advise] [Bug 89566] SIDEBAR: Improving the navigator tab

2015-02-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89566

--- Comment #9 from Jay Philips philip...@hotmail.com ---
(In reply to Heiko Tietze from comment #5)
 Your proposal is much better but has still a lot of controls in the header.
 Why not restrict it to functions that tweak the view below and not the
 document.

Well the mockup has the main three parts in it - the navigation controls so you
can jump up and down between various objects, the page number controls, and the
headers manipulation controls.

 Unclear to me
 * List box on/off
 * Toggle
 * Navigation (looks like a menu button but isn't)
 * Drag mode

Listbox can be removed as its only usable in the floating window. toogle can
likely be removed as its always disabled for me. navigation is already
integrated in the mockup and drag mode can be removed as its available in the
context menu.

(In reply to Cor Nouws from comment #6)
 The the Navigator is floating, that shows/hides the content.

The 'Listbox On/Off' is what shows/hides the content when its floating, the
'Toggle' button is always dimmed no matter what i do.

 You can drag to paste/link parts from one document to another and within the
 document. That offers the choice copy/link/...

Interesting idea. :D

 temporary bookmark. You can have 5 IIRC. Can via the Navigation button
 choose to jump to those. 

Another interesting idea. :D

  anchor-text.

As you have to interact with the document in order to do this, how is this
slower than just clicking the foot/end note number?

(In reply to Cor Nouws from comment #8)
 Missing the controls there that you didn't know the working of ;)

Had to start with the ones i understood first and add the others. :D

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


[Libreoffice-bugs] [Bug 89563] fonts not usable in Ubuntu 14.10 LibreOffice Writer

2015-02-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89563

--- Comment #4 from e.tre...@gmx.net ---
In addition to this description:
On my homepage
http://www.skytower.org/~ernstjtremel/Ahuramazda/AvestanToLatinAndViceversa.htm
I made two Macros
http://www.skytower.org/~ernstjtremel/Ahuramazda/Makro-AnleitungTAB.pdf
a) one for for transforming Avesten script into LatinTranscription script 
b) the other for transforming LatinTranscription into Avestan script.

Both are working fine in OpenOffice Writer.
But only Macro b) is working in LibreOffice Writer Version: 4.3.3.2
Build-ID: 430m0(Build:2) wheras Macro a) is not working in
LibreOffice Writer Version: 4.3.3.2 Build-ID: 430m0(Build:2).
The reason is that LibreOffice Writer Version: 4.3.3.2
Build-ID: 430m0(Build:2) cannot handle the font AhuramazdaPlusTranslit.

-- 
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 89566] SIDEBAR: Improving the navigator tab

2015-02-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89566

--- Comment #9 from Jay Philips philip...@hotmail.com ---
(In reply to Heiko Tietze from comment #5)
 Your proposal is much better but has still a lot of controls in the header.
 Why not restrict it to functions that tweak the view below and not the
 document.

Well the mockup has the main three parts in it - the navigation controls so you
can jump up and down between various objects, the page number controls, and the
headers manipulation controls.

 Unclear to me
 * List box on/off
 * Toggle
 * Navigation (looks like a menu button but isn't)
 * Drag mode

Listbox can be removed as its only usable in the floating window. toogle can
likely be removed as its always disabled for me. navigation is already
integrated in the mockup and drag mode can be removed as its available in the
context menu.

(In reply to Cor Nouws from comment #6)
 The the Navigator is floating, that shows/hides the content.

The 'Listbox On/Off' is what shows/hides the content when its floating, the
'Toggle' button is always dimmed no matter what i do.

 You can drag to paste/link parts from one document to another and within the
 document. That offers the choice copy/link/...

Interesting idea. :D

 temporary bookmark. You can have 5 IIRC. Can via the Navigation button
 choose to jump to those. 

Another interesting idea. :D

  anchor-text.

As you have to interact with the document in order to do this, how is this
slower than just clicking the foot/end note number?

(In reply to Cor Nouws from comment #8)
 Missing the controls there that you didn't know the working of ;)

Had to start with the ones i understood first and add the others. :D

-- 
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 60237] : Bug in API call StoreAsURL (or in the OO Basic API description)

2015-02-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=60237

Aron Budea ba...@caesar.elte.hu changed:

   What|Removed |Added

 CC||ba...@caesar.elte.hu

--- Comment #12 from Aron Budea ba...@caesar.elte.hu ---
I'm by no means an expert, but after debugging this issue, the following piece
of code looks really suspicious:

In method SfxMedium::TransactedTransferForFS_Impl, here
http://opengrok.libreoffice.org/xref/core/sfx2/source/doc/docfile.cxx#1586 :

SFX_ITEMSET_ARG( GetItemSet(), pOverWrite, SfxBoolItem, SID_OVERWRITE, false );
SFX_ITEMSET_ARG( GetItemSet(), pRename, SfxBoolItem, SID_RENAME, false );
bool bRename = pRename  pRename-GetValue();
bool bOverWrite = pOverWrite ? pOverWrite-GetValue() : !bRename;

The possibilities:
-SID_OVERWRITE is set: that value is used
-SID_OVERWRITE is not set:
-SID_RENAME is set: the opposite of SID_RENAME is used
-SID_RENAME is not set (bRename is false): bOverWrite becomes true =
this is what happens in example 3

I hope that helps. :)

-- 
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-commits] core.git: external/python3

2015-02-23 Thread Stephan Bergmann
 external/python3/ExternalProject_python3.mk |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 6a150d772f6192579af95bef314cae7fca592d5b
Author: Stephan Bergmann sberg...@redhat.com
Date:   Mon Feb 23 18:06:32 2015 +0100

Clang -fsanitize=vptr: ensure __ubsan_vptr_type_cache in python.bin

Change-Id: I7b08b7b6376db29b392243f24f6ad3ccf2ee8655

diff --git a/external/python3/ExternalProject_python3.mk 
b/external/python3/ExternalProject_python3.mk
index 12a88c1..29179d5 100644
--- a/external/python3/ExternalProject_python3.mk
+++ b/external/python3/ExternalProject_python3.mk
@@ -81,7 +81,7 @@ $(call gb_ExternalProject_get_state_target,python3,build) :
$(if $(SYSBASE), -I$(SYSBASE)/usr/include) \
) \
$(if $(python3_cflags),CFLAGS='$(python3_cflags)') \
-   $(if $(filter -fsanitize=address,$(CC)),LINKCC=$(CXX)) \
+   $(if $(filter -fsanitize=%,$(CC)),LINKCC=$(CXX)) \
LDFLAGS=$(strip $(LDFLAGS) \
$(if $(SYSTEM_OPENSSL),,-L$(call 
gb_UnpackedTarball_get_dir,openssl)) \
$(if $(SYSTEM_EXPAT),,-L$(gb_StaticLibrary_WORKDIR)) \
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'feature/tiled-editing' - libreofficekit/qa

2015-02-23 Thread Miklos Vajna
 libreofficekit/qa/gtktiledviewer/gtktiledviewer.cxx |3 +++
 1 file changed, 3 insertions(+)

New commits:
commit 92f5970cec8799bf2278d04605f8b3f85d48439a
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Mon Feb 23 16:11:17 2015 +0100

gtktiledviewer: map GDK_Tab to css::awt::Key::TAB

Change-Id: Icfd38ea4bc4fb470e3eb3eb1a3d48c6607d6a999

diff --git a/libreofficekit/qa/gtktiledviewer/gtktiledviewer.cxx 
b/libreofficekit/qa/gtktiledviewer/gtktiledviewer.cxx
index 65bfb7d..5337cc4 100644
--- a/libreofficekit/qa/gtktiledviewer/gtktiledviewer.cxx
+++ b/libreofficekit/qa/gtktiledviewer/gtktiledviewer.cxx
@@ -156,6 +156,9 @@ static void signalKey(GtkWidget* /*pWidget*/, GdkEventKey* 
pEvent, gpointer /*pD
 case GDK_Escape:
 nKeyCode = com::sun::star::awt::Key::ESCAPE;
 break;
+case GDK_Tab:
+nKeyCode = com::sun::star::awt::Key::TAB;
+break;
 default:
 if (pEvent-keyval = GDK_F1  pEvent-keyval = GDK_F26)
 nKeyCode = com::sun::star::awt::Key::F1 + (pEvent-keyval - 
GDK_F1);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 89557] UI: keyboard shortcut to move to end of document does not work if cursor within table of contents

2015-02-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89557

--- Comment #3 from Alex Thurgood ipla...@yahoo.co.uk ---
I'm using OSX 10.10.2 and a bluetooth Mac keyboard with French locale layout

-- 
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-commits] core.git: framework/inc framework/source

2015-02-23 Thread Stephan Bergmann
 framework/inc/uielement/menubarmanager.hxx|   15 +++
 framework/source/uielement/menubarmanager.cxx |   33 +-
 2 files changed, 11 insertions(+), 37 deletions(-)

New commits:
commit 2fa63547313852f0190f1d00099ac5a8de477845
Author: Stephan Bergmann sberg...@redhat.com
Date:   Mon Feb 23 17:21:41 2015 +0100

Avoid unnecessary bad downcasts from PopupMenu to AddonPopupMenu

Change-Id: I87e03eaac0fe4e078d8fee09bf2ffca374bff6d8

diff --git a/framework/inc/uielement/menubarmanager.hxx 
b/framework/inc/uielement/menubarmanager.hxx
index 3f3e362..f985b36 100644
--- a/framework/inc/uielement/menubarmanager.hxx
+++ b/framework/inc/uielement/menubarmanager.hxx
@@ -81,17 +81,10 @@ class MenuBarManager : public 
com::sun::star::frame::XStatusListener
 const ::com::sun::star::uno::Reference 
::com::sun::star::uno::XComponentContext  xContext,
 const ::com::sun::star::uno::Reference 
com::sun::star::frame::XFrame  rFrame,
 const ::com::sun::star::uno::Reference 
::com::sun::star::util::XURLTransformer  _xURLTransformer,
-AddonMenu*  pAddonMenu,
+Menu*   pAddonMenu,
 boolbDelete,
-boolbDeleteChildren );
-
-MenuBarManager(
-const ::com::sun::star::uno::Reference 
::com::sun::star::uno::XComponentContext  xContext,
-const ::com::sun::star::uno::Reference 
com::sun::star::frame::XFrame  rFrame,
-const ::com::sun::star::uno::Reference 
::com::sun::star::util::XURLTransformer  _xURLTransformer,
-AddonPopupMenu* pAddonMenu,
-boolbDelete,
-boolbDeleteChildren );
+boolbDeleteChildren,
+bool popup);
 
 public:
 MenuBarManager(
@@ -211,7 +204,7 @@ class MenuBarManager : public 
com::sun::star::frame::XStatusListener
 bool CreatePopupMenuController( MenuItemHandler* 
pMenuItemHandler );
 void AddMenu(MenuBarManager* pSubMenuManager,const 
OUString _sItemCommand,sal_uInt16 _nItemId);
 sal_uInt16   FillItemCommand(OUString _rItemCommand, Menu* 
_pMenu,sal_uInt16 _nIndex) const;
-void Init(const ::com::sun::star::uno::Reference 
::com::sun::star::frame::XFrame  rFrame,AddonMenu* pAddonMenu,bool 
bDelete,bool bDeleteChildren,bool _bHandlePopUp = false);
+void Init(const ::com::sun::star::uno::Reference 
::com::sun::star::frame::XFrame  rFrame,Menu* pAddonMenu,bool bDelete,bool 
bDeleteChildren,bool _bHandlePopUp);
 void SetHdl();
 
 bool   
m_bDisposed : 1,
diff --git a/framework/source/uielement/menubarmanager.cxx 
b/framework/source/uielement/menubarmanager.cxx
index de1b06b..8cfe80c 100644
--- a/framework/source/uielement/menubarmanager.cxx
+++ b/framework/source/uielement/menubarmanager.cxx
@@ -153,9 +153,10 @@ MenuBarManager::MenuBarManager(
 const Reference XComponentContext  rxContext,
 const Reference XFrame  rFrame,
 const Reference XURLTransformer  _xURLTransformer,
-AddonMenu* pAddonMenu,
+Menu* pAddonMenu,
 bool bDelete,
-bool bDeleteChildren ):
+bool bDeleteChildren,
+bool popup):
 OWeakObject()
 , m_bDisposed( false )
 , m_bRetrieveImages( true )
@@ -166,27 +167,7 @@ MenuBarManager::MenuBarManager(
 , m_xURLTransformer(_xURLTransformer)
 , m_sIconTheme( SvtMiscOptions().GetIconTheme() )
 {
-Init(rFrame,pAddonMenu,bDelete,bDeleteChildren);
-}
-
-MenuBarManager::MenuBarManager(
-const Reference XComponentContext  rxContext,
-const Reference XFrame  rFrame,
-const Reference XURLTransformer  _xURLTransformer,
-AddonPopupMenu* pAddonPopupMenu,
-bool bDelete,
-bool bDeleteChildren ):
-OWeakObject()
-, m_bDisposed( false )
-, m_bRetrieveImages( true )
-, m_bAcceleratorCfg( false )
-, m_bModuleIdentified( false )
-, m_aListenerContainer( m_mutex )
-, m_xContext(rxContext)
-, m_xURLTransformer(_xURLTransformer)
-, m_sIconTheme( SvtMiscOptions().GetIconTheme() )
-{
-Init(rFrame,pAddonPopupMenu,bDelete,bDeleteChildren,true);
+Init(rFrame,pAddonMenu,bDelete,bDeleteChildren, popup);
 }
 
 Any SAL_CALL MenuBarManager::queryInterface( const Type  rType ) throw ( 
RuntimeException, std::exception )
@@ -1247,7 +1228,7 @@ void MenuBarManager::FillMenuManager( Menu* pMenu, const 
Reference XFrame  rF
 {
 // A special addon popup menu, must be created with a 
different ctor
 MenuBarManager* pSubMenuManager = new MenuBarManager( 
m_xContext, m_xFrame, m_xURLTransformer,
-  
static_castAddonPopupMenu *(pPopup), bDeleteChildren, bDeleteChildren );
+  

[Libreoffice-ux-advise] [Bug 89566] SIDEBAR: Improving the navigator tab

2015-02-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89566

--- Comment #10 from Jay Philips philip...@hotmail.com ---
Created attachment 113625
  -- https://bugs.documentfoundation.org/attachment.cgi?id=113625action=edit
second mockup

So taking into consideration what Cor had explained about the buttons missing
from my last mockup, i've inserted the ones that i felt were important, which
was just one - reminder.

Drag mode and shown outline levels are available in the context menu, so there
isnt a need for them taking up space in the toolbar. The display context
submenu should be removed as there is a combobox with its features at the
bottom of the list.

The mockup lines up quite well on both rows, so if we want to add the toggle
and anchor-text it still can be aligned.

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


[Libreoffice-bugs] [Bug 39316] Data corruption in array formulas

2015-02-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=39316

Winfried Donkers winfrieddonk...@libreoffice.org changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=34
   ||242

-- 
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 89585] interpunct following an «l» become an upperpoint even if replacement table is empty

2015-02-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89585

Adolfo Jayme f...@libreoffice.org changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||f...@libreoffice.org
 Ever confirmed|0   |1

--- Comment #1 from Adolfo Jayme f...@libreoffice.org ---
What is your locale information (since LibreOffice 4.4 it’s displayed in Help 
About)? Check also in Tools  Options  Language Settings  Languages.

-- 
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 89394] FILE MENU and HYPERLINKs: Freezes/hangs when insterting hyperlink or clickin File menu for the first time

2015-02-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89394

Jan kant...@sra.uni-hannover.de changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||kant...@sra.uni-hannover.de
 Ever confirmed|0   |1

--- Comment #2 from Jan kant...@sra.uni-hannover.de ---
I can confirm that slashes in hyperlinks to UNC paths are truncated in the link
and in registrymodifications.xcu. \\your-server\path becomes
file://your-server/path while intuitively should be file:///your-server/path
instead.

Nevertheless, I cannot confirm the freeze/hang with my samba setup in Windows 7
with LO 4.2.4.2. I know similar hang problems with MS Word/Excel when UNC paths
become unavailable but this does not seem to be the case here.

My steps: 
1. Open new writer document
2. Create Hyperlink to document on share \\your-server\path\doc.xlsx
3. Create another Hyperlink (no hang here)
3. Close writer
4. Start LO again
5. Use open dialog to open a document from a samba share (no hang)
6. Open previous document and add another hyperlink (no hang)

I verified that the path is in registrymodifications.xcu. Did I miss anything?

Setting to NEEDINFO. Please change back to UNCONFIRMED if you can provide more
informations or steps to reproduce.

-- 
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 89110] LibreOffice Calc crashes when soffice.bin reaches 1.600.000 K RAM in Taskmanager (out of memory)

2015-02-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89110

--- Comment #9 from Beluga todven...@suomi24.fi ---
Jonas: this would be an interesting case to try with the 64-bit Windows build.

http://dev-builds.libreoffice.org/daily/master/Win-x86_64@42/
https://wiki.documentfoundation.org/Development/msvc-x86_64

-- 
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 88396] Using “More...” in Dropdown Menu “Apply style” Closes “Styles and Formatting” Window

2015-02-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=88396

--- Comment #9 from Keymasher gordon1dr...@yahoo.com ---
This behaviour is happening in 4.4.0.3.  Clicking on More Styles... from the
Apply Style drop down is the same as clicking on the Styles and Formatting
button in the Foramtting toolbar or the Sidebar--it hides/closes the already
open Styles and Formatting window in the Sidebar.

I suspect it doesn't test to see the state of the window--if it's open, keep it
open--but just does the opposite of whatever state it's in.

-- 
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 89600] Deadlock creating cell names using Insert - Names - Create

2015-02-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89600

raal r...@post.cz changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||r...@post.cz
 Resolution|--- |WORKSFORME

--- Comment #1 from raal r...@post.cz ---
Thank you for reporting the bug. I can confirm bug in LO 4.3.3 but cannot
confirm with Version: 4.5.0.0.alpha0+
Build ID: 52fa2e97dfef1a5f27aaee6af7ed80800641b86c
TinderBox: Linux-rpm_deb-x86_64@46-TDF, Branch:master, Time:
2015-02-22_01:03:18

It's fixed in newer version. Set again to unconfirmed if you're able to
reproduce crash in dev version.

-- 
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 89228] Allow to use Apache OpenOffice 4.0+ extensions

2015-02-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89228

--- Comment #3 from Lukas Jelinek de...@aiken.cz ---
Probably all extensions built for Apache OpenOffice 4.0+ don't work with
LibreOffice. API changes are described here:
https://wiki.openoffice.org/wiki/Extensions/Extensions_and_Apache_OpenOffice_4.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


[Bug 30425] Making Icon Themes is Far too Difficult

2015-02-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=30425

--- Comment #14 from Commit Notification 
libreoffice-comm...@lists.freedesktop.org ---
Andrew committed a patch related to this issue.
It has been pushed to master:

http://cgit.freedesktop.org/libreoffice/core/commit/?id=b940df4d1901a912acde714932387d1d8b5c3ec7

tdf#30425 Remove old icons -2

It will be available in 4.5.0.

The patch should be included in the daily builds available at
http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
http://wiki.documentfoundation.org/Testing_Daily_Builds
Affected users are encouraged to test the fix and report feedback.

-- 
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-bugs] [Bug 88911] EDITING: Crash when dragging text from document to navigator pane

2015-02-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=88911

raal r...@post.cz changed:

   What|Removed |Added

   Keywords||have-backtrace
   Priority|medium  |high
 Whiteboard||bibisectRequest
 OS|Windows (All)   |All
   Severity|normal  |major

--- Comment #8 from raal r...@post.cz ---
I can reproduce crash on linux, Version: 4.5.0.0.alpha0+
Build ID: 52fa2e97dfef1a5f27aaee6af7ed80800641b86c
TinderBox: Linux-rpm_deb-x86_64@46-TDF, Branch:master, Time:
2015-02-22_01:03:18

I can reproduce crash with 4.3.3.2, linux

-- 
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 89110] LibreOffice Calc crashes when soffice.bin reaches 1.600.000 K RAM in Taskmanager (out of memory)

2015-02-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89110

--- Comment #12 from Jonas Müller fors...@mailbox.org ---
(In reply to Beluga from comment #11)
 Very nice! I guess if you are satisfied with the performance after some days
 of testing, you can close this as RESOLVED WORKSFORME.

Well, I'm satisfied with the improved performance and increased stability for
now however as there seem to be no plans to release a stable 64-bit version it
isn't really resolved for me as I can't use an experimental nightly alpha 0
version at work.

Also LibreOffice x86 still crashes because it runs out of memory which could be
avoided with more aggressive memory management as ~50% of the memory is used
for unneeded cached objects.

-- 
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 89596] New: Auto update of contents table

2015-02-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89596

Bug ID: 89596
   Summary: Auto update of contents table
   Product: LibreOffice
   Version: 4.5.0.0.alpha0+ Master
  Hardware: x86-64 (AMD64)
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: kostya.ryabi...@gmail.com

The problem is that the table of contents does not update automatically if the
headers are moved to the new pages. The cross-references do update, so it seems
to be achievable in principal. IMHO this feature is BADLY needed! Moreover,
this would beat the MS Word, coz they have no auto-update too (I tested their
OS X version). If the realtime auto-update is complicated, the auto-update by
export to PDF would be also acceptable (like MS Word does). If these two things
are not possible for some reason, at least PLEASE add the alert by exporting to
PDF like You've got table of contents, dude, check it twice before moving on!

-- 
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 89493] PRINTING: paper size doesn't respect printer's default settings

2015-02-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89493

--- Comment #1 from Paolo Benvenuto paolobe...@gmail.com ---
Actually you can change the paper setting when you are going to print, and
apparently the setting changes, but the printer receives the document with US
letter size

-- 
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 89597] New: General input output error on calc opening XLSX

2015-02-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89597

Bug ID: 89597
   Summary: General input output error on calc opening XLSX
   Product: LibreOffice
   Version: 4.3.2.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: marcel.delap...@dirsamexico.com

Created attachment 113629
  -- https://bugs.documentfoundation.org/attachment.cgi?id=113629action=edit
xlsx pivot tables

General Error. General input/output error. when opening an XLSX file on
Windows with several pivot table reports(both 32 and 64 bit versions of windows
tested)

Tried LibreOffice stable 4.3.2.2 AND 4.4.0.3

Might be a regression of
https://bugs.documentfoundation.org/show_bug.cgi?id=57732

-- 
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-ux-advise] [Bug 89566] SIDEBAR: Improving the navigator tab

2015-02-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89566

--- Comment #12 from Cor Nouws c...@nouenoff.nl ---
(In reply to Jay Philips from comment #10)
 Created attachment 113625 [details]
 second mockup

What is the Navigator icon for, top left, in front of the list?
What is the document icon for, top close to right, in front of the page nr?

I'm lost on the use of the combined buttons on row #2. |   number  | ..

The reminder icon is bottom right. Since navigating to the various reminders is
with the arrows on row #1, a position near there, is possible, would feel more
natural.

 So taking into consideration what Cor had explained about the buttons
 missing from my last mockup, i've inserted the ones that i felt were
 important, which was just one - reminder.

Indeed, toggle is needed.

 Drag mode and shown outline levels are available in the context menu, so
 there isnt a need for them taking up space in the toolbar. 

There are so many things in the tool bars that are in context menu's too :) But
in this case, it's a natural place, related to handling the very headings where
the context menu is.

 The display context submenu should be removed as there is a combobox 
 with its features at the bottom of the list.

Mwah.. It's faster access there, when you are mousing. But OK, not a big deal -
used not that often after all ;)

 The mockup lines up quite well on both rows, so if we want to add the toggle
 and anchor-text it still can be aligned.

Yes, I'd appreciate those two.

Cheers - Cor

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


Re: Package building reduces the lifetime of the SSD drives

2015-02-23 Thread Robert Antoni Buj i Gelonch
First, I'm going to do manually;

PHASE 1: Inital Ram Disk

1.- Create Ram Disk  symlink to workdir
$ diskutil erasevolume HFS+ 'RAM Disk' `hdiutil attach -nomount
ram://1200`
$ ln -s /Volumes/RAM\ Disk /path_to_git_folder/workdir

2.- Build

3.- Backup Ramdisk = dmg file
$ mount
. . .
/dev/{device number} on /Volumes/RAM Disk (hfs, local, nodev, nosuid,
noowners, mounted by tb)
$ sudo hdiutil create /path_to_dmg_file/RAM\ Disk.dmg -srcdevice
/dev/{device number}

4.- Delete Ram Disk:
$ umount -f /Volumes/RAM\ Disk
$ hdiutl detach /Volumes/RAM\ Disk

PHASE 2

5.- Do [1]

6.- Restore dmg file = RAM\ Disk Volume
$ sudo asr restore -source /path_to_dmg_file/RAM\ Disk.dmg --target
/Volumes/RAM\ Disk -noprompt -noverify -erase

7.- Repeat [2]

8.- Do [3]

2015-02-23 22:55 GMT+01:00 Norbert Thiebaud nthieb...@gmail.com:

 On Mon, Feb 23, 2015 at 3:44 PM, Robert Antoni Buj i Gelonch
 robert@gmail.com wrote:
  Does we still use [1] for OS X tinderboxes?

 nope.. not for 3 years or so...

 but its replacement 'tb' is quite flexible and I have used the
 possibilities to customize the different 'phases' to indeed use a
 ramdisk (or do pretty much anything you fancy really)

 I also use a massive ramdisk (23GB)  to build release version for the
 32 bits release... not for fear of harming my ssd, but because
 localization build where horrendously slow without it (14 hours build
 = 2 hours build), due to HFS sucking very hard.

 Norbert




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


[Libreoffice-bugs] [Bug 38343] Behaviour of Advanced Filter in Calc/Spreadsheet is incorrect. Produced not working formulas

2015-02-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=38343

--- Comment #17 from fury...@arcor.de ---
Uhh, that's a very professional representation of your organisation, Joel.

LO is deleted from my PC and won't be advocated any more at my customers. 
There are quite a few alternatives who can presumably react on feedback
appropriately.

Please, delete my account with your organization right away.

Have a nice day,
fury

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


Re: error during build of mork_helper, on illumos/xstreamos

2015-02-23 Thread Gabriele Bulfon
Yes, this way is much better than replicating the LINUX part into SOLARIS.
I had to do the same on some other mk.
I'll send you the full patch zip as soon as I reach a full build with no errors.
--
Da: Richard PALO
A: libreoffice
Data: 22 febbraio 2015 9.13.14 CET
Oggetto: Re: error during build of mork_helper, on illumos/xstreamos
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Le 21/02/15 08:29, Richard PALO a écrit :
In pkgsrc this is patched as follows:
$NetBSD: patch-vcl_Library__vcl.mk,v 1.1 2015/02/04 18:19:34 ryoon Exp $
--- vcl/Library_vcl.mk.orig 2015-01-22 20:05:28.0 +
+++ vcl/Library_vcl.mk
@@ -703,7 +703,7 @@ endif
endif
endif
-ifeq ($(OS),LINUX)
+ifeq ($(GUIBASE),unx)
$(eval $(call gb_Library_add_libs,vcl,\
-lm \
-ldl \
If this works for you, I'll prepare to upstream this patch.
The author of this patch responded to me that he'll upstream this himself as 
well as
a few others of the same sort (in pkgsrc) soon.
As to the '-Wl,-Bdirect' and '-Wl,-zdefs' in solaris.mk I'm testing if this 
passes, if so
I'll upstream that as well.. (builds/runs here without it, at least on gcc49)
As hoped, I had no fallout from this so will submit the reintegration of this 
bit to gerritt today.
- --
Richard PALO
-BEGIN PGP SIGNATURE-
Version: GnuPG v1
Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/
iQEcBAEBAgAGBQJU6Y+aAAoJECAB22fHtp27oOYIAIBtDwPr7U2HfCrbFNNSOsbU
zZZj+qfLv4DbLUm3ZdCS5zwYUwl/agEkltsO+tolzhTT6YFIMXqxNffMbFrITh9z
TmMu6PgR8JtXhnfzyWhT9gxNucNphKiwc2wwvWNDyxe5bOPYWIZTDtkGKWNbPjuE
+sLGGIZ7YBaiFazRww/3cFKy+YwmOyXBFCsS3LhHEw8bgn/UnwdA0kmgBsSkYmKw
YTwPd4iqm0kKis54jnr8CElzUb/Unzv6Sjz6JmNdbZc+OpSsQhFrela7IZJWSs7N
oNe2TmDZrNv8XGLTlsvipA4lZNCSWJ5fiPOp19NkX0YezrEFTFmP8uL3uL2w3hA=
=SRUy
-END PGP SIGNATURE-
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 84726] LibreOffice for Android most annoying bugs

2015-02-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84726
Bug 84726 depends on bug 88926, which changed state.

Bug 88926 Summary: android: Tiles are updating from bottom-right, instead of 
top-left
https://bugs.documentfoundation.org/show_bug.cgi?id=88926

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |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 88926] android: Tiles are updating from bottom-right, instead of top-left

2015-02-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=88926

Jan Holesovsky ke...@collabora.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED

--- Comment #1 from Jan Holesovsky ke...@collabora.com ---
This is now fixed thanks to Tomaž.

-- 
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 72735] EDITING: slow Paste of Conditional formatting

2015-02-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=72735

--- Comment #15 from Mikeyy - L10n HR miho...@miho.im ---
(In reply to Cor Nouws from comment #13)
 Hi reporters :)
 
 How is this on recent versions of LibreOffice?

I'm testing it on work computer which is much faster (intel i5, 8GB of ram)
then one in comment #1, and everything is much faster now.
- Coping of cell from b2 to whole sheet now lasts around 3 seconds.
- Inserting new letters/numbers after that is instant, no lag.
Not sure if it's fixed or just because I'm on faster computer.

When I go Format - Conditional formatting - Manage after paste, I see ranges
only for column B (B2, B3, B4, ..., B41), but conditional formatting is working
for all cells affected by paste.

LO 4.4.1.1

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


cppunit errors in vcl_app_test, on illumos/xstreamos

2015-02-23 Thread Gabriele Bulfon
I almost have it done.
All libs compile, binaries too, but I get this:
terminate called after throwing an instance of 
'CppUnit::DynamicLibraryManagerException'
what():  Failed to load dynamic library: 
/sources/sonicle/xstream-desktop-gate/components/libreoffice/libreoffice/libreoffice-4.4.0.3/workdir/LinkTarget/CppunitTest/libtest_vcl_app_test.so
It looks like 
/sources/sonicle/xstream-desktop-gate/components/libreoffice/libreoffice/libreoffice-4.4.0.3/workdir/LinkTarget/Executable/cppunittester
 generated a core file at 
/sources/sonicle/xstream-desktop-gate/components/libreoffice/libreoffice/libreoffice-4.4.0.3/workdir/CppunitTest/vcl_app_test.test.core/core
Backtraces:
[New LWP 1]
[New LWP 1]
...
...
What I noticed is that many of the libs, built before vcl lib, shows a correct 
linking with ldd.
Some others, just after vcl lib and vcl lib itself, shows the strange gcc link 
problem:
libstdc++.so.6 =/usr/sfw/lib/libstdc++.so.6
libstdc++.so.6 (GLIBCXX_3.4.15) =(version not found)
libstdc++.so.6 (CXXABI_1.3) =(version not found)
and elfdump shows why:
[67]  RUNPATH   0x428ac4
/usr/sfw/lib:/usr/gcc/4.7/lib:$ORIGIN:$ORIGIN/../ure-link/lib:/usr/lib/mps
[68]  RPATH 0x428ac4
/usr/sfw/lib:/usr/gcc/4.7/lib:$ORIGIN:$ORIGIN/../ure-link/lib:/usr/lib/mps
why /usr/sfw/lib is placed before /usr/gcc/4.7/lib?? who is doing this??
I have forced -Wl,-rpath,/usr/gcc/4.7/lib -L/usr/gcc/4.7/lib in LDFLAGS 
during configure and make.
I believe /usr/sfw/lib is taken automagically by the build system because 
there's a libstdc++.so.6 (an old 3.4 for compatibiliy).
Maybe this is causing the cppunit failure?
--
Da: Richard PALO
A: libreoffice
Data: 22 febbraio 2015 9.13.14 CET
Oggetto: Re: error during build of mork_helper, on illumos/xstreamos
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Le 21/02/15 08:29, Richard PALO a écrit :
In pkgsrc this is patched as follows:
$NetBSD: patch-vcl_Library__vcl.mk,v 1.1 2015/02/04 18:19:34 ryoon Exp $
--- vcl/Library_vcl.mk.orig 2015-01-22 20:05:28.0 +
+++ vcl/Library_vcl.mk
@@ -703,7 +703,7 @@ endif
endif
endif
-ifeq ($(OS),LINUX)
+ifeq ($(GUIBASE),unx)
$(eval $(call gb_Library_add_libs,vcl,\
-lm \
-ldl \
If this works for you, I'll prepare to upstream this patch.
The author of this patch responded to me that he'll upstream this himself as 
well as
a few others of the same sort (in pkgsrc) soon.
As to the '-Wl,-Bdirect' and '-Wl,-zdefs' in solaris.mk I'm testing if this 
passes, if so
I'll upstream that as well.. (builds/runs here without it, at least on gcc49)
As hoped, I had no fallout from this so will submit the reintegration of this 
bit to gerritt today.
- --
Richard PALO
-BEGIN PGP SIGNATURE-
Version: GnuPG v1
Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/
iQEcBAEBAgAGBQJU6Y+aAAoJECAB22fHtp27oOYIAIBtDwPr7U2HfCrbFNNSOsbU
zZZj+qfLv4DbLUm3ZdCS5zwYUwl/agEkltsO+tolzhTT6YFIMXqxNffMbFrITh9z
TmMu6PgR8JtXhnfzyWhT9gxNucNphKiwc2wwvWNDyxe5bOPYWIZTDtkGKWNbPjuE
+sLGGIZ7YBaiFazRww/3cFKy+YwmOyXBFCsS3LhHEw8bgn/UnwdA0kmgBsSkYmKw
YTwPd4iqm0kKis54jnr8CElzUb/Unzv6Sjz6JmNdbZc+OpSsQhFrela7IZJWSs7N
oNe2TmDZrNv8XGLTlsvipA4lZNCSWJ5fiPOp19NkX0YezrEFTFmP8uL3uL2w3hA=
=SRUy
-END PGP SIGNATURE-
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: cppunit errors in vcl_app_test, on illumos/xstreamos

2015-02-23 Thread Gabriele Bulfon
Oh yes, I found this in Library_vcl.mk:
ifeq ($(CPUNAME),SPARC64)
$(eval $(call gb_Library_add_ldflags,vcl,\
-R/usr/sfw/lib/64 \
))
else
$(eval $(call gb_Library_add_ldflags,vcl,\
-R/usr/sfw/lib \
))
endif
My system fall into the else section...and this is breaking my build.
I will try commenting out this and rebuild from scratch.
There should be a better way to patch this.
Gabriele.
Da:
Gabriele Bulfon
A:
Richard PALO
libreoffice
Data:
23 febbraio 2015 9.27.01 CET
Oggetto:
cppunit errors in vcl_app_test, on illumos/xstreamos
I almost have it done.
All libs compile, binaries too, but I get this:
terminate called after throwing an instance of 
'CppUnit::DynamicLibraryManagerException'
what():  Failed to load dynamic library: 
/sources/sonicle/xstream-desktop-gate/components/libreoffice/libreoffice/libreoffice-4.4.0.3/workdir/LinkTarget/CppunitTest/libtest_vcl_app_test.so
It looks like 
/sources/sonicle/xstream-desktop-gate/components/libreoffice/libreoffice/libreoffice-4.4.0.3/workdir/LinkTarget/Executable/cppunittester
 generated a core file at 
/sources/sonicle/xstream-desktop-gate/components/libreoffice/libreoffice/libreoffice-4.4.0.3/workdir/CppunitTest/vcl_app_test.test.core/core
Backtraces:
[New LWP 1]
[New LWP 1]
...
...
What I noticed is that many of the libs, built before vcl lib, shows a correct 
linking with ldd.
Some others, just after vcl lib and vcl lib itself, shows the strange gcc link 
problem:
libstdc++.so.6 =/usr/sfw/lib/libstdc++.so.6
libstdc++.so.6 (GLIBCXX_3.4.15) =(version not found)
libstdc++.so.6 (CXXABI_1.3) =(version not found)
and elfdump shows why:
[67]  RUNPATH   0x428ac4
/usr/sfw/lib:/usr/gcc/4.7/lib:$ORIGIN:$ORIGIN/../ure-link/lib:/usr/lib/mps
[68]  RPATH 0x428ac4
/usr/sfw/lib:/usr/gcc/4.7/lib:$ORIGIN:$ORIGIN/../ure-link/lib:/usr/lib/mps
why /usr/sfw/lib is placed before /usr/gcc/4.7/lib?? who is doing this??
I have forced -Wl,-rpath,/usr/gcc/4.7/lib -L/usr/gcc/4.7/lib in LDFLAGS 
during configure and make.
I believe /usr/sfw/lib is taken automagically by the build system because 
there's a libstdc++.so.6 (an old 3.4 for compatibiliy).
Maybe this is causing the cppunit failure?
--
Da: Richard PALO
A: libreoffice
Data: 22 febbraio 2015 9.13.14 CET
Oggetto: Re: error during build of mork_helper, on illumos/xstreamos
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Le 21/02/15 08:29, Richard PALO a écrit :
In pkgsrc this is patched as follows:
$NetBSD: patch-vcl_Library__vcl.mk,v 1.1 2015/02/04 18:19:34 ryoon Exp $
--- vcl/Library_vcl.mk.orig 2015-01-22 20:05:28.0 +
+++ vcl/Library_vcl.mk
@@ -703,7 +703,7 @@ endif
endif
endif
-ifeq ($(OS),LINUX)
+ifeq ($(GUIBASE),unx)
$(eval $(call gb_Library_add_libs,vcl,\
-lm \
-ldl \
If this works for you, I'll prepare to upstream this patch.
The author of this patch responded to me that he'll upstream this himself as 
well as
a few others of the same sort (in pkgsrc) soon.
As to the '-Wl,-Bdirect' and '-Wl,-zdefs' in solaris.mk I'm testing if this 
passes, if so
I'll upstream that as well.. (builds/runs here without it, at least on gcc49)
As hoped, I had no fallout from this so will submit the reintegration of this 
bit to gerritt today.
- --
Richard PALO
-BEGIN PGP SIGNATURE-
Version: GnuPG v1
Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/
iQEcBAEBAgAGBQJU6Y+aAAoJECAB22fHtp27oOYIAIBtDwPr7U2HfCrbFNNSOsbU
zZZj+qfLv4DbLUm3ZdCS5zwYUwl/agEkltsO+tolzhTT6YFIMXqxNffMbFrITh9z
TmMu6PgR8JtXhnfzyWhT9gxNucNphKiwc2wwvWNDyxe5bOPYWIZTDtkGKWNbPjuE
+sLGGIZ7YBaiFazRww/3cFKy+YwmOyXBFCsS3LhHEw8bgn/UnwdA0kmgBsSkYmKw
YTwPd4iqm0kKis54jnr8CElzUb/Unzv6Sjz6JmNdbZc+OpSsQhFrela7IZJWSs7N
oNe2TmDZrNv8XGLTlsvipA4lZNCSWJ5fiPOp19NkX0YezrEFTFmP8uL3uL2w3hA=
=SRUy
-END PGP SIGNATURE-
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice
___LibreOffice mailing 
listLibreOffice@lists.freedesktop.orghttp://lists.freedesktop.org/mailman/listinfo/libreoffice
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 89582] New feature: Autofilter condition background color

2015-02-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89582

raal r...@post.cz changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||r...@post.cz
 Resolution|--- |DUPLICATE

--- Comment #1 from raal r...@post.cz ---
Hello wabik,

Thank you for reporting the bug. This issue has previously been reported, so
this bug will be resolved as a duplicate of the earlier report. You will
automatically be added to the CC list of the other bug.

*** This bug has been marked as a duplicate of bug 76258 ***

-- 
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 76258] [Filter][Enchancement] Filter by colors in LibO Calc

2015-02-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=76258

raal r...@post.cz changed:

   What|Removed |Added

 CC||wa...@wp.pl

--- Comment #6 from raal r...@post.cz ---
*** Bug 89582 has been marked as a duplicate of this bug. ***

-- 
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 88911] EDITING: Crash when dragging text from document to navigator pane

2015-02-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=88911

raal r...@post.cz changed:

   What|Removed |Added

 CC||r...@post.cz

--- Comment #3 from raal r...@post.cz ---
I can not confirm with LO 4.4.0.3, win7. Can you provide test document and
exact steps how to reproduce error? Thank you.

-- 
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 34171] Bad user reported when file is locked

2015-02-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=34171

s...@stefanofraccaro.org changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #15 from s...@stefanofraccaro.org ---
I tried today with LibreOffice 4.4 (Windows) and Excel 2000 : the bug is still
present. LibreOffice tell me that the file in locked by Unknow user

-- 
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 87695] SIDEBAR: Improvements to new track changes sidebar tab

2015-02-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87695

Heiko Tietze heiko.tie...@user-prompt.com changed:

   What|Removed |Added

 Blocks||89232

-- 
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-ux-advise] [Bug 89232] Track changes and commenting additional work needed on look and function

2015-02-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89232

Heiko Tietze heiko.tie...@user-prompt.com changed:

   What|Removed |Added

 Depends on||87695

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


[Libreoffice-bugs] [Bug 89232] Track changes and commenting additional work needed on look and function

2015-02-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89232

Heiko Tietze heiko.tie...@user-prompt.com changed:

   What|Removed |Added

 Depends on||87695

-- 
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 89553] NAVIGATOR: Reverse the behaviour of the page number control

2015-02-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89553

--- Comment #1 from mahfiaz mahf...@gmail.com ---
Changing this would be just as confusing to other people, since spinboxes
usually work only one way.

-- 
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-ux-advise] [Bug 89553] NAVIGATOR: Reverse the behaviour of the page number control

2015-02-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89553

--- Comment #1 from mahfiaz mahf...@gmail.com ---
Changing this would be just as confusing to other people, since spinboxes
usually work only one way.

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


[Libreoffice-bugs] [Bug 89531] UPDATE ALL option: hard recalc + update external links + update databases + update pivot tables

2015-02-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89531

raal r...@post.cz changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||r...@post.cz
 Ever confirmed|0   |1

--- Comment #1 from raal r...@post.cz ---
Setting to NEW. At least hard recalc can solve lots of bugs, so make it visible
helps a lot.

-- 
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-commits] core.git: 52 commits - android/Bootstrap android/experimental desktop/source editeng/source include/editeng include/LibreOfficeKit include/svx include/tools include/vcl libreoffi

2015-02-23 Thread Miklos Vajna
 Makefile.in
|2 
 README.Android 
|   34 -
 android/Bootstrap/src/org/libreoffice/kit/DirectBufferAllocator.java   
|2 
 android/Bootstrap/src/org/libreoffice/kit/Document.java
|2 
 android/Bootstrap/src/org/libreoffice/kit/Office.java  
|5 
 android/experimental/LOAndroid3/src/java/org/libreoffice/LOAbout.java  
|4 
 android/experimental/LOAndroid3/src/java/org/libreoffice/LOEvent.java  
|   12 
 android/experimental/LOAndroid3/src/java/org/libreoffice/LOEventFactory.java   
|   39 -
 
android/experimental/LOAndroid3/src/java/org/libreoffice/LOKitInputConnectionHandler.java
  |8 
 android/experimental/LOAndroid3/src/java/org/libreoffice/LOKitShell.java   
|   50 +-
 android/experimental/LOAndroid3/src/java/org/libreoffice/LOKitThread.java  
|  103 ++--
 
android/experimental/LOAndroid3/src/java/org/libreoffice/LOKitTileProvider.java 
   |  154 +--
 
android/experimental/LOAndroid3/src/java/org/libreoffice/LibreOfficeMainActivity.java
  |   33 +
 android/experimental/LOAndroid3/src/java/org/libreoffice/MockTileProvider.java 
|   14 
 android/experimental/LOAndroid3/src/java/org/libreoffice/TileProvider.java 
|   38 -
 android/experimental/LOAndroid3/src/java/org/mozilla/gecko/TextSelection.java  
|6 
 
android/experimental/LOAndroid3/src/java/org/mozilla/gecko/TextSelectionHandle.java
|   13 
 
android/experimental/LOAndroid3/src/java/org/mozilla/gecko/ZoomConstraints.java 
   |3 
 
android/experimental/LOAndroid3/src/java/org/mozilla/gecko/gfx/ComposedTileLayer.java
  |  181 +---
 
android/experimental/LOAndroid3/src/java/org/mozilla/gecko/gfx/DisplayPortCalculator.java
  |2 
 
android/experimental/LOAndroid3/src/java/org/mozilla/gecko/gfx/DisplayPortMetrics.java
 |1 
 android/experimental/LOAndroid3/src/java/org/mozilla/gecko/gfx/FloatSize.java  
|3 
 
android/experimental/LOAndroid3/src/java/org/mozilla/gecko/gfx/GeckoLayerClient.java
   |  120 +
 
android/experimental/LOAndroid3/src/java/org/mozilla/gecko/gfx/InputConnectionHandler.java
 |2 
 
android/experimental/LOAndroid3/src/java/org/mozilla/gecko/gfx/LayerRenderer.java
  |  212 --
 android/experimental/LOAndroid3/src/java/org/mozilla/gecko/gfx/LayerView.java  
|   53 --
 
android/experimental/LOAndroid3/src/java/org/mozilla/gecko/gfx/RenderControllerThread.java
 |   37 -
 
android/experimental/LOAndroid3/src/java/org/mozilla/gecko/gfx/ScreenshotLayer.java
|  200 -
 
android/experimental/LOAndroid3/src/java/org/mozilla/gecko/gfx/SimpleScaleGestureDetector.java
 |1 
 android/experimental/LOAndroid3/src/java/org/mozilla/gecko/gfx/SubTile.java
|2 
 
android/experimental/LOAndroid3/src/java/org/mozilla/gecko/gfx/TouchEventHandler.java
  |3 
 
android/experimental/LOAndroid3/src/java/org/mozilla/gecko/util/FloatUtils.java 
   |2 
 desktop/source/lib/init.cxx
|   17 
 desktop/source/lib/lokandroid.cxx  
|6 
 editeng/source/editeng/editview.cxx
|   10 
 editeng/source/editeng/impedit.cxx 
|   11 
 editeng/source/editeng/impedit.hxx 
|4 
 editeng/source/editeng/impedit3.cxx
|3 
 editeng/source/outliner/outlvw.cxx 
|4 
 include/LibreOfficeKit/LibreOfficeKit.h
|  111 -
 include/LibreOfficeKit/LibreOfficeKit.hxx  
|9 
 include/LibreOfficeKit/LibreOfficeKitEnums.h   
|  124 +
 include/LibreOfficeKit/LibreOfficeKitGtk.h 
|2 
 include/editeng/editview.hxx   
|3 
 include/editeng/outliner.hxx   
|3 
 include/svx/svdmodel.hxx   
|   15 
 include/tools/gen.hxx  
  

[Libreoffice-bugs] [Bug 88760] Accessibility: Calc crashes when Orca speaks some cells

2015-02-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=88760

raal r...@post.cz changed:

   What|Removed |Added

 Whiteboard||have-backtrace

-- 
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 82641] Currency drop-down ...

2015-02-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=82641

--- Comment #20 from Michael Meeks michael.me...@collabora.com ---
Sounds sensible to me =) thanks Jay - I guess http://www.xe.com/ has a
common-currencies list based on their use-cases.

Having said that - it should be ~trivial to add the currencies used in the
document to the list (assuming there are just a few of them - which is common),
and of course any used 'recently' =) into some hybrid scoring thing.

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


Re: Singleton is never a service?

2015-02-23 Thread sberg
On 02/22/2015 05:42 PM, julien2412 [via Document Foundation Mail 
Archive] wrote:
 Noticing by chance
 http://cgit.freedesktop.org/libreoffice/core/log/?qt=rangeq=a94390d20c50125e25e29431ca15ca2ca6683d17,
 I noticed with Opengrok that there were some similar cases, see
 http://opengrok.libreoffice.org/search?q=%22singleton+name%22project=coredefs=refs=path=hist=
 eg:
 http://opengrok.libreoffice.org/xref/core/framework/util/fwk.component#33

 Should we clean these too or we can't generalize this rule?

No, a94390d20c50125e25e29431ca15ca2ca6683d17 is about cases where the 
name of a UNOIDL singleton (cf. the .idl files in offapi) is erroneously 
also used for a service declaration in a .component file.

In general, in implementation described in a .component file can list an 
arbitrary number of services and singletons.





--
View this message in context: 
http://nabble.documentfoundation.org/Singleton-is-never-a-service-tp4141020p4141072.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-ux-advise] [Bug 89566] SIDEBAR: Improving the navigator tab

2015-02-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89566

--- Comment #5 from Heiko Tietze heiko.tie...@user-prompt.com ---
Your proposal is much better but has still a lot of controls in the header. Why
not restrict it to functions that tweak the view below and not the document.

Document related
* Promote/Demote chapter
* Promote/Demote level
(Do we need to structure the document from the navigation pane? And there would
be the context menu too.)
* Header/Footer
* Anchor-Text
* Previous/Next page
* Page number
(Just one click away in the document)

Navigator related
* Content view
* Heading levels

Unclear to me
* List box on/off
* Toggle
* Navigation (looks like a menu button but isn't)
* Drag mode

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


  1   2   >