[Libreoffice-bugs] [Bug 75825] Other: Send Document as E-Mail not working -- (while sending as attachment works)

2015-01-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75825

--- Comment #13 from Charu Tyagi charu.tyag...@gmail.com ---
I have pushed a patch that fixes the issue. The link to the patch is :
https://gerrit.libreoffice.org/#/c/13786/

-- 
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 71988] FILEOPEN: xlsx file - long open, incorrect displaying

2015-01-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=71988

Beluga todven...@suomi24.fi changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||todven...@suomi24.fi
 Resolution|--- |WORKSFORME

--- Comment #4 from Beluga todven...@suomi24.fi ---
Tested on 4.5 alpha and no hanging. I'm closing this as WFM. Performance
improvements to conditional formatting is a nice to have, but not a bug (at
least not this one).

Win 7 64-bit Version: 4.5.0.0.alpha0+
Build ID: 8c7f6830e767897d3a0e88f75fc8d7ef7fca95dc
TinderBox: Win-x86@42, Branch:master, Time: 2015-01-06_00:47:25

-- 
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 67657] FILEOPEN: No border for table (.docx)

2015-01-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=67657

Beluga todven...@suomi24.fi changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||todven...@suomi24.fi
 Resolution|--- |WORKSFORME

--- Comment #3 from Beluga todven...@suomi24.fi ---
Working fine with 4.5. Closing as WFM.

Win 7 64-bit Version: 4.5.0.0.alpha0+
Build ID: 8c7f6830e767897d3a0e88f75fc8d7ef7fca95dc
TinderBox: Win-x86@42, Branch:master, Time: 2015-01-06_00:47:25

-- 
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: editeng/source filter/source sot/source sot/workben sw/qa sw/source vcl/qa vcl/unx vcl/win

2015-01-07 Thread Noel Grandin
 editeng/source/xml/xmltxtexp.cxx |2 +-
 filter/source/msfilter/msdffimp.cxx  |4 ++--
 sot/source/sdstor/stg.cxx|2 +-
 sot/workben/testsot.cxx  |2 +-
 sw/qa/core/uwriter.cxx   |2 +-
 sw/source/uibase/dochdl/swdtflvr.cxx |2 +-
 vcl/qa/cppunit/outdev.cxx|2 +-
 vcl/unx/gtk/gdi/salprn-gtk.cxx   |2 +-
 vcl/win/source/gdi/salgdi3.cxx   |2 +-
 9 files changed, 10 insertions(+), 10 deletions(-)

New commits:
commit 006e59a25e6396b05cf6da39c94a3a7a5c48eeb3
Author: Noel Grandin n...@peralex.com
Date:   Wed Jan 7 11:47:47 2015 +0200

fix windows build

and a handful of other currently uncompiled spots,
after my commit 7f8f277b94704a289fbbd1b836e4e5d66311580d
fdo#84938: convert STREAM_ #defines to 'enum class'

Change-Id: I550f6fb850e1d71a6f08767eeb222a18071b89d5

diff --git a/editeng/source/xml/xmltxtexp.cxx b/editeng/source/xml/xmltxtexp.cxx
index 5d72034..dbec0da 100644
--- a/editeng/source/xml/xmltxtexp.cxx
+++ b/editeng/source/xml/xmltxtexp.cxx
@@ -417,7 +417,7 @@ void SvxWriteXML( EditEngine rEditEngine, SvStream 
rStream, const ESelection
 
 /* testcode
 const OUString aURL( file:///e:/test.xml );
-SfxMedium aMedium( aURL, StreamMode::WRITE | STREAM_TRUNC, 
sal_True );
+SfxMedium aMedium( aURL, StreamMode::WRITE | StreamMode::TRUNC, 
sal_True );
 uno::Referenceio::XOutputStream xOut( new 
utl::OOutputStreamWrapper( *aMedium.GetOutStream() ) );
 */
 
diff --git a/filter/source/msfilter/msdffimp.cxx 
b/filter/source/msfilter/msdffimp.cxx
index ba30b8a..cc19ec8 100644
--- a/filter/source/msfilter/msdffimp.cxx
+++ b/filter/source/msfilter/msdffimp.cxx
@@ -6360,7 +6360,7 @@ bool SvxMSDffManager::GetBLIPDirect( SvStream 
rBLIPStream, Graphic rData, Rect
 
 SAL_INFO(filter.ms, dumping   aURLStr);
 
-boost::scoped_ptrSvStream 
pDbgOut(::utl::UcbStreamHelper::CreateStream(aURLStr, StreamMode::TRUNC | 
STREAM_WRITE));
+boost::scoped_ptrSvStream 
pDbgOut(::utl::UcbStreamHelper::CreateStream(aURLStr, StreamMode::TRUNC | 
StreamMode::WRITE));
 
 if( pDbgOut )
 {
@@ -6914,7 +6914,7 @@ com::sun::star::uno::Reference  
com::sun::star::embed::XEmbeddedObject   SvxMS
 OUString aTmpName(/tmp/embedded_stream_);
 aTmpName += OUString::number(nOleCount++);
 aTmpName += .bin;
-SvFileStream 
aTmpStream(aTmpName,STREAM_READ|STREAM_WRITE|STREAM_TRUNC);
+SvFileStream 
aTmpStream(aTmpName,StreamMode::READ|StreamMode::WRITE|StreamMode::TRUNC);
 xMemStream-Seek(0);
 *xMemStream  aTmpStream;
 aTmpStream.Close();
diff --git a/sot/source/sdstor/stg.cxx b/sot/source/sdstor/stg.cxx
index 1d6c222..a199f2e 100644
--- a/sot/source/sdstor/stg.cxx
+++ b/sot/source/sdstor/stg.cxx
@@ -34,7 +34,7 @@
 
 static long nTmpCount = 0;
 
-// The internal open mode is StreamMode::READ | STREAM_TRUNC, which is silly
+// The internal open mode is StreamMode::READ | StreamMode::TRUNC, which is 
silly
 // by itself. It inhibits the checking of sharing modes and is used
 // during CopyTo() and MoveTo() for opening a stream in read mode
 // although it may be open in DENYALL mode
diff --git a/sot/workben/testsot.cxx b/sot/workben/testsot.cxx
index a674b4e..1d6185b 100644
--- a/sot/workben/testsot.cxx
+++ b/sot/workben/testsot.cxx
@@ -31,7 +31,7 @@ int main (int argc, sal_Char **argv)
 SotStorageRef xStor = new SotStorage( c:\\temp\\video.sdb );
 SotStorageRef x2Stor = xStor-OpenSotStorage( 1117 );
 
-SotStorageStreamRef xStm = x2Stor-OpenSotStream( Genres, 
STREAM_STD_READWRITE | STREAM_TRUNC);
+SotStorageStreamRef xStm = x2Stor-OpenSotStream( Genres, 
STREAM_STD_READWRITE | StreamMode::TRUNC);
 //BYTE szData[100];
 //xStm-Write( szData, 100 );
 UINT32 nSize = xStm-GetSize();
diff --git a/sw/qa/core/uwriter.cxx b/sw/qa/core/uwriter.cxx
index 80c4ce4..9d52233 100644
--- a/sw/qa/core/uwriter.cxx
+++ b/sw/qa/core/uwriter.cxx
@@ -945,7 +945,7 @@ void SwDocTest::testGraphicAnchorDeletion()
 
 #ifdef DEBUG_AS_HTML
 {
-SvFileStream aPasteDebug(OUString(cppunitDEBUG.html), 
STREAM_WRITE|STREAM_TRUNC);
+SvFileStream aPasteDebug(OUString(cppunitDEBUG.html), 
StreamMode::WRITE|StreamMode::TRUNC);
 WriterRef xWrt;
 GetHTMLWriter( String(), String(), xWrt );
 SwWriter aDbgWrt( aPasteDebug, *m_pDoc );
diff --git a/sw/source/uibase/dochdl/swdtflvr.cxx 
b/sw/source/uibase/dochdl/swdtflvr.cxx
index ea65e3f..08a025b 100644
--- a/sw/source/uibase/dochdl/swdtflvr.cxx
+++ b/sw/source/uibase/dochdl/swdtflvr.cxx
@@ -743,7 +743,7 @@ bool SwTransferable::WriteObject( SotStorageStreamRef 
xStream,
 
 #if defined(DEBUGPASTE)
 SvFileStream aPasteDebug(OUString(
-PASTEBUFFER.debug), STREAM_WRITE|STREAM_TRUNC);
+PASTEBUFFER.debug), StreamMode::WRITE|StreamMode::TRUNC);
 SwWriter aDbgWrt( 

[Libreoffice-commits] core.git: vcl/win

2015-01-07 Thread Noel Grandin
 vcl/win/source/window/salframe.cxx |1 -
 1 file changed, 1 deletion(-)

New commits:
commit 27e60b6d526fb42ee3df519c73f06699d162ec92
Author: Noel Grandin n...@peralex.com
Date:   Wed Jan 7 11:49:47 2015 +0200

fix windows build

after my commit 079590c9097a9491b31f1ef1b30d67d42bd0139a
fdo#84938: convert INDICATOR_ #defines to 'enum class'

Change-Id: Icc78ad4671fa1cdfc4110a9101f5ad45b931064d

diff --git a/vcl/win/source/window/salframe.cxx 
b/vcl/win/source/window/salframe.cxx
index e900213..cba75f1 100644
--- a/vcl/win/source/window/salframe.cxx
+++ b/vcl/win/source/window/salframe.cxx
@@ -2887,7 +2887,6 @@ SalFrame::SalPointerState WinSalFrame::GetPointerState()
 KeyIndicatorState WinSalFrame::GetIndicatorState()
 {
 KeyIndicatorState aState = KeyIndicatorState::NONE;
-aState.mnState = 0;
 if (::GetKeyState(VK_CAPITAL))
 aState |= KeyIndicatorState::CAPSLOCK;
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 69246] FILEOPEN: page breaks are not reproduced with certain docx documents

2015-01-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=69246

Beluga todven...@suomi24.fi changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||todven...@suomi24.fi
 Resolution|--- |WORKSFORME

--- Comment #6 from Beluga todven...@suomi24.fi ---
Page break works in 4.5 as well. Closing as WFM.

Win 7 64-bit Version: 4.5.0.0.alpha0+
Build ID: 8c7f6830e767897d3a0e88f75fc8d7ef7fca95dc
TinderBox: Win-x86@42, Branch:master, Time: 2015-01-06_00:47:25

-- 
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 88148] New: Image caption management forces to insert a category and numbering even if you do not need it

2015-01-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=88148

Bug ID: 88148
   Summary: Image caption management forces to insert a category
and numbering even if you do not need it
   Product: LibreOffice
   Version: 4.4.0.1 rc
  Hardware: x86 (IA32)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: silva...@katamail.com

Here we go:

Open a writer doc, insert any image. In the context menu, choose insert
caption

The category list allows to add a repeating word automatically, like table
etc.; there is also the item none which is needed when you want to create a
caption with no repeating word or numbering.

The problem n. 1 is, if you choose the latter option, the OK button is
deactivated and you actually cannot insert the caption without a repeating
starting word.

Problem n.2 is as follows: in the dialog window, open the category list and
choose none: the OK button is greyed out. Then reopen the list and choose any
other category. After this, if you try to choose none again, this is
impossible, and the category reverts to the last one right after you try and
fail to select none with the mouse.

Problem n.3 is that even if it would be possible to actually select none in
the category list, there is no none item in the numbering list, so it
appears that avoinding a numbering would be impossible all the same

I know that the rule is one problem, one bug report, but here the issues are
so closely related that filing 3 distinct reports seemed inappropriate.

Workaround: you can leave the default category, insert the caption with the
unwanted word at the beginning, and then manually delete the word and the
numbering in each caption for each picture if you do not want them. This is of
course a burdensome process. 
Note that the categorized captions are commonplace in scientific
publications, but they are almost never used in other kind of documents (in a
magazine or newsletter for example, most of the times captions are not
categorized nor numbered).

-- 
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 51668] FILEOPEN particular .xls with 3D CHART needs very long time

2015-01-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=51668

Beluga todven...@suomi24.fi changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||todven...@suomi24.fi
 Resolution|--- |WORKSFORME

--- Comment #5 from Beluga todven...@suomi24.fi ---
Doesn't hang on 4.5 either. Closing as WFM.

Win 7 64-bit Version: 4.5.0.0.alpha0+
Build ID: 8c7f6830e767897d3a0e88f75fc8d7ef7fca95dc
TinderBox: Win-x86@42, Branch:master, Time: 2015-01-06_00:47:25

-- 
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 87840] checkboxes for not-supported-by-driver advanced settings are present (but have no effect)

2015-01-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87840

--- Comment #17 from Commit Notification 
libreoffice-comm...@lists.freedesktop.org ---
Caolán McNamara committed a patch related to this issue.
It has been pushed to master:

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

Resolves: fdo#87840 by default hide all feature checkboxes

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 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: dbaccess/source dbaccess/uiconfig

2015-01-07 Thread Caolán McNamara
 dbaccess/source/ui/dlg/advancedsettings.cxx |1 
 dbaccess/uiconfig/ui/specialsettingspage.ui |   76 +---
 2 files changed, 60 insertions(+), 17 deletions(-)

New commits:
commit fef5c2b81d1ac7d64e01521da792f470b03a1841
Author: Caolán McNamara caol...@redhat.com
Date:   Wed Jan 7 09:55:46 2015 +

Resolves: fdo#87840 by default hide all feature checkboxes

and explicitly show the supported ones

Change-Id: I93d998472a82085da9bd5a8ec7ad4cb39998e198

diff --git a/dbaccess/source/ui/dlg/advancedsettings.cxx 
b/dbaccess/source/ui/dlg/advancedsettings.cxx
index 905465e..65288cd 100644
--- a/dbaccess/source/ui/dlg/advancedsettings.cxx
+++ b/dbaccess/source/ui/dlg/advancedsettings.cxx
@@ -97,6 +97,7 @@ namespace dbaui
 {
 get((*setting-ppControl), setting-sControlId);
 (*setting-ppControl)-SetClickHdl( getControlModifiedLink() );
+(*setting-ppControl)-Show();
 
 // check whether this must be a tristate check box
 const SfxPoolItem rItem = _rCoreAttrs.Get( nItemId );
diff --git a/dbaccess/uiconfig/ui/specialsettingspage.ui 
b/dbaccess/uiconfig/ui/specialsettingspage.ui
index 41ff83b..b6ef198 100644
--- a/dbaccess/uiconfig/ui/specialsettingspage.ui
+++ b/dbaccess/uiconfig/ui/specialsettingspage.ui
@@ -1,5 +1,5 @@
 ?xml version=1.0 encoding=UTF-8?
-!-- Generated with glade 3.18.3 --
+!-- Generated with glade 3.16.1 --
 interface
   requires lib=gtk+ version=3.0/
   object class=GtkBox id=SpecialSettingsPage
@@ -16,9 +16,9 @@
 child
   object class=GtkCheckButton id=usesql92
 property name=label translatable=yesUse SQL92 naming 
constraints/property
-property name=visibleTrue/property
 property name=can_focusTrue/property
 property name=receives_defaultFalse/property
+property name=no_show_allTrue/property
 property name=use_underlineTrue/property
 property name=xalign0/property
 property name=draw_indicatorTrue/property
@@ -26,14 +26,16 @@
   packing
 property name=left_attach0/property
 property name=top_attach0/property
+property name=width1/property
+property name=height1/property
   /packing
 /child
 child
   object class=GtkCheckButton id=append
 property name=label translatable=yesAppend the table alias 
name on SELECT statements/property
-property name=visibleTrue/property
 property name=can_focusTrue/property
 property name=receives_defaultFalse/property
+property name=no_show_allTrue/property
 property name=use_underlineTrue/property
 property name=xalign0/property
 property name=draw_indicatorTrue/property
@@ -41,14 +43,16 @@
   packing
 property name=left_attach0/property
 property name=top_attach1/property
+property name=width1/property
+property name=height1/property
   /packing
 /child
 child
   object class=GtkCheckButton id=useas
 property name=label translatable=yesUse keyword AS before 
table alias names/property
-property name=visibleTrue/property
 property name=can_focusTrue/property
 property name=receives_defaultFalse/property
+property name=no_show_allTrue/property
 property name=use_underlineTrue/property
 property name=xalign0/property
 property name=draw_indicatorTrue/property
@@ -56,14 +60,16 @@
   packing
 property name=left_attach0/property
 property name=top_attach2/property
+property name=width1/property
+property name=height1/property
   /packing
 /child
 child
   object class=GtkCheckButton id=useoj
 property name=label translatable=yesUse Outer Join syntax 
'{oj }'/property
-property name=visibleTrue/property
 property name=can_focusTrue/property
 property name=receives_defaultFalse/property
+property name=no_show_allTrue/property
 property name=use_underlineTrue/property
 property name=xalign0/property
 property name=draw_indicatorTrue/property
@@ -71,14 +77,16 @@
   packing
 property name=left_attach0/property
 property name=top_attach3/property
+property name=width1/property
+property name=height1/property
   /packing
 /child
 child
   object class=GtkCheckButton id=ignoreprivs
 property name=label translatable=yesIgnore the privileges 
from the database driver/property
-property name=visibleTrue/property
 property name=can_focusTrue/property
 property 

[Libreoffice-bugs] [Bug 87840] checkboxes for not-supported-by-driver advanced settings are present (but have no effect)

2015-01-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87840

Commit Notification libreoffice-comm...@lists.freedesktop.org changed:

   What|Removed |Added

 Whiteboard|| target:4.5.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 88149] New: Impress causes java and itself to crash when copying a table created in the Inspiration template

2015-01-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=88149

Bug ID: 88149
   Summary: Impress causes java and itself to crash when copying a
table created in the Inspiration template
   Product: LibreOffice
   Version: 4.3.5.2 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Presentation
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: shimi.c...@gmail.com

Created attachment 111897
  -- https://bugs.freedesktop.org/attachment.cgi?id=111897action=edit
Java crash log file

Steps to reproduce:
1. Select the inspiration template included in LibreOffice.
2. Insert - Table - OK
3. Cntl+C to copy the selected table

Result:
LibreOffice crashes and a crash log file is generated by java. An example log
file is attached. It does not matter if the template is changed after the fact,
the table remembers it was made in the Inspiration template and will cause a
crash when copying is attempted. An odp file with such a table is also
attached.

-- 
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 88149] Impress causes java and itself to crash when copying a table created in the Inspiration template

2015-01-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=88149

--- Comment #1 from Shimi Chen shimi.c...@gmail.com ---
Created attachment 111898
  -- https://bugs.freedesktop.org/attachment.cgi?id=111898action=edit
Example odp

-- 
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 60611] FILEOPEN Word 95 document opened with Shift-JIS encoding

2015-01-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=60611

Beluga todven...@suomi24.fi changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |WORKSFORME

--- Comment #8 from Beluga todven...@suomi24.fi ---
Still fine on 4.5. Closing as WFM.

Win 7 64-bit Version: 4.5.0.0.alpha0+
Build ID: 8c7f6830e767897d3a0e88f75fc8d7ef7fca95dc
TinderBox: Win-x86@42, Branch:master, Time: 2015-01-06_00:47:25

-- 
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 87727] Backup copy not working on Calc 4.2.8.2

2015-01-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87727

raal r...@post.cz changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |WORKSFORME

--- Comment #8 from raal r...@post.cz ---
(In reply to Walfred from comment #7)
 (In reply to raal from comment #5)
  You can check it - create new file, save file, look at the backup
  directory.Filename in backup directory is the same.
 
 I had performed that verification and result is weird.
 First, I did as you suggested: I activated the backup copy, created a new
 file, saved it and closed the file. Then, I reopened it, modified it and
 that file was on backup dir with same name and .bak extension.
 
 I noticed backup dir had .bak files as expected, but some .ods as well. The
 .ods were named in a different pattern:
 file namesuffix number starting from 0.ods

I think .bak are regular backup files and .ods are files from recovery (when LO
crash).

 
 I decided to remove them all (recycle bin) and problem was somehow fixed.
 Now there is no error message.
 
 An important remark is the workstation is shared by many users, they work on
 those files on a Public folder. I suspect some of those old files were
 affecting the backup routine.
 
 I would suggest the upgrade procedure on LO should clean up backup
 directories on first run, just after upgrade.
 I believe that wouldn't be an impact task.

I think shouldn't, because we cannot delete user's backups.

 
 Right now, I'll upgrade to 4.3.5.2, but that wouldn't change much.
 I left the status as UNCONFIRMED as suggested previously.
 Would you close it or need me in order to do it?

I'll close the bug. 

 
 Thank you all in advance.

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

2015-01-07 Thread Stephan Bergmann
 vcl/unx/gtk/app/gtkinst.cxx |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

New commits:
commit fbe26ca557fc9dfd1ed904d08251b6cd34e6ce5d
Author: Stephan Bergmann sberg...@redhat.com
Date:   Wed Jan 7 11:04:16 2015 +0100

VclInputFlags fix

Change-Id: I60c989a86ad94d35c7bfa650a0bd993a23b26c0d

diff --git a/vcl/unx/gtk/app/gtkinst.cxx b/vcl/unx/gtk/app/gtkinst.cxx
index c93dbe2..99efa22 100644
--- a/vcl/unx/gtk/app/gtkinst.cxx
+++ b/vcl/unx/gtk/app/gtkinst.cxx
@@ -115,9 +115,9 @@ extern C
 }
 
 #if GTK_CHECK_VERSION(3,0,0)
-static sal_uInt16 categorizeEvent(const GdkEvent *pEvent)
+static VclInputFlags categorizeEvent(const GdkEvent *pEvent)
 {
-sal_uInt16 nType = 0;
+VclInputFlags nType = VclInputFlags::NONE;
 switch( pEvent-type )
 {
 case GDK_MOTION_NOTIFY:
@@ -425,8 +425,8 @@ bool GtkInstance::AnyInput( VclInputFlags nType )
 while ((pEvent = gdk_event_get()))
 {
 aEvents.push(pEvent);
-sal_uInt16 nEventType = categorizeEvent(pEvent);
-if ( (nEventType  nType) || ( ! nEventType  (nType  
VclInputFlags::OTHER) ) )
+VclInputFlags nEventType = categorizeEvent(pEvent);
+if ( (nEventType  nType) || ( nEventType == VclInputFlags::NONE  
(nType  VclInputFlags::OTHER) ) )
 {
 bRet = true;
 break;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 53148] UI: Stock MOVE cursor is not being used

2015-01-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53148

Caolán McNamara caol...@redhat.com changed:

   What|Removed |Added

 OS|All |Windows (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-commits] core.git: Branch 'libreoffice-4-3' - sw/source

2015-01-07 Thread Zolnai Tamás
 sw/source/core/layout/fly.cxx |7 ++-
 1 file changed, 6 insertions(+), 1 deletion(-)

New commits:
commit 32dce67106c9f6ddbb91daf4dd84308974ebe309
Author: Zolnai Tamás zolnaitamas2...@gmail.com
Date:   Wed Jan 7 02:14:33 2015 +0100

fdo#83354: Chart is truncated - moved down outside the margins of the object

Handle the case when the content height is unitialized (0).
When content height is 0 it means there is no content (so
we don't need to calculate adjustment) or the content height is
uninitialized which leads to wrong calculated value.

Regression from:
cb19042f4395c97d123a27c6960d5e30d666c010

(cherry picked from commit 89a81a6610cf31291750e7300bcd1a97d062)

Change-Id: I45570a71f0597847820ce77e8dcec4a5b0c6785d
Reviewed-on: https://gerrit.libreoffice.org/13783
Reviewed-by: Caolán McNamara caol...@redhat.com
Tested-by: Caolán McNamara caol...@redhat.com

diff --git a/sw/source/core/layout/fly.cxx b/sw/source/core/layout/fly.cxx
index 6c541c7..2a119b5 100644
--- a/sw/source/core/layout/fly.cxx
+++ b/sw/source/core/layout/fly.cxx
@@ -1705,7 +1705,12 @@ void SwFlyFrm::MakeContentPos( const SwBorderAttrs 
rAttrs )
 const SdrTextVertAdjust nAdjust = 
GetFmt()-GetTextVertAdjust().GetValue();
 if( nAdjust != SDRTEXTVERTADJUST_TOP )
 {
-SwTwips nDiff = (Prt().*fnRect-fnGetHeight)() - 
CalcContentHeight(rAttrs, nMinHeight, nUL);
+const SwTwips nContentHeight = CalcContentHeight(rAttrs, 
nMinHeight, nUL);
+SwTwips nDiff = 0;
+
+if( nContentHeight != 0)
+nDiff = (Prt().*fnRect-fnGetHeight)() - nContentHeight;
+
 if( nDiff  0 )
 {
 if( nAdjust == SDRTEXTVERTADJUST_CENTER )
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 83354] REPORTBUILDER: Chart is truncated - moved down outside the margins of the object

2015-01-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83354

Commit Notification libreoffice-comm...@lists.freedesktop.org changed:

   What|Removed |Added

 Whiteboard|BSA bibisected target:4.5.0 |BSA bibisected target:4.5.0
   ||target:4.3.6

-- 
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 83354] REPORTBUILDER: Chart is truncated - moved down outside the margins of the object

2015-01-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83354

--- Comment #12 from Commit Notification 
libreoffice-comm...@lists.freedesktop.org ---
Zolnai Tamás committed a patch related to this issue.
It has been pushed to libreoffice-4-3:

http://cgit.freedesktop.org/libreoffice/core/commit/?id=32dce67106c9f6ddbb91daf4dd84308974ebe309h=libreoffice-4-3

fdo#83354: Chart is truncated - moved down outside the margins of the object

It will be available in 4.3.6.

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 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 88150] New: inserting graphics from Draw in a writer document makes results in saving impossible error

2015-01-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=88150

Bug ID: 88150
   Summary: inserting graphics from Draw in a writer document
makes results in saving impossible error
   Product: LibreOffice
   Version: 4.4.0.1 rc
  Hardware: x86 (IA32)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: major
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: silva...@katamail.com

Created attachment 111899
  -- https://bugs.freedesktop.org/attachment.cgi?id=111899action=edit
Draw file with the graphic to be pasted into a writer doc and blocking its save

Open an empty writer file. 

Then open the attached Draw file, select the map inside this and copy it (it is
a grouped object with a bitmap and some draw objects like arrows and text
captions).

Now go back to the writer file, and paste the graphics in the first page.
Everything seems to be ok.

However, when you try to save the writer file, you get the saving error errore
di scrittura nel sotto-documento content.xml, that in english would be
writing error in the content.xml sub-document.

There is no way to save the writer document, I could not find any workaround
for this. The only option is to give up the original format of the graphic and
paste special as a metafile.

-- 
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 'libreoffice-4-3' - sc/source

2015-01-07 Thread Julien Nabet
 sc/source/core/data/funcdesc.cxx |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 3cc529ccfb91444c13c771d0f8b2c1292452002f
Author: Julien Nabet serval2...@yahoo.fr
Date:   Mon Feb 2 21:02:42 2015 +0100

Better fix for fdo#87558: Duplication in Last Used Functions sidebar list

Advantage compared to previous fix: in sidebar, last used function is put 
at the top

Still function from menu is sorted, the pb is we use InsertEntry, see
0  ImplEntryList::InsertEntry (this=0x32d0910, nPos=2147483647, 
pNewEntry=0x326f620, bSort=true)
at 
/home/julien/compile-libreoffice/libreoffice/vcl/source/control/ilstbox.cxx:144
1  0x2aaab1b2444e in ImplListBoxWindow::InsertEntry (this=0x3287358, 
nPos=2147483647, pNewEntry=0x326f620)
at 
/home/julien/compile-libreoffice/libreoffice/vcl/source/control/ilstbox.cxx:750
2  0x2aaab1b2a138 in ImplListBox::InsertEntry (this=0x3287100, 
nPos=2147483647, rStr=ACOT)
at 
/home/julien/compile-libreoffice/libreoffice/vcl/source/control/ilstbox.cxx:2182
3  0x2aaab1b47d51 in ListBox::InsertEntry (this=0x32e9ca0, rStr=ACOT, 
nPos=2147483647)
at 
/home/julien/compile-libreoffice/libreoffice/vcl/source/control/lstbox.cxx:1001
4  0x2aaad0c05d84 in formula::FuncPage::UpdateFunctionList 
(this=0x3217110) at 
/home/julien/compile-libreoffice/libreoffice/formula/source/ui/dlg/funcpage.cxx:153
should we create a new InsertEntry to force bSort=false?

Change-Id: Iba1b020aeea09951dead30f6781b24993aac98e0
Reviewed-on: https://gerrit.libreoffice.org/13725
Reviewed-by: Eike Rathke er...@redhat.com
Tested-by: Eike Rathke er...@redhat.com
(cherry picked from commit 585ab75a9344e140c876cb7565d3525a62fb8a73)
Reviewed-on: https://gerrit.libreoffice.org/13781
Reviewed-by: Julien Nabet serval2...@yahoo.fr
(cherry picked from commit 689afb19dc399ff3fcea07a6d264b61d10313a1e)
Reviewed-on: https://gerrit.libreoffice.org/13782
Reviewed-by: Caolán McNamara caol...@redhat.com
Tested-by: Caolán McNamara caol...@redhat.com

diff --git a/sc/source/core/data/funcdesc.cxx b/sc/source/core/data/funcdesc.cxx
index cdc6171..24c80fe 100644
--- a/sc/source/core/data/funcdesc.cxx
+++ b/sc/source/core/data/funcdesc.cxx
@@ -779,13 +779,13 @@ void 
ScFunctionMgr::fillLastRecentlyUsedFunctions(::std::vector const formula::
 const ScAppOptions rAppOpt = SC_MOD()-GetAppOptions();
 sal_uInt16 nLRUFuncCount = std::min( rAppOpt.GetLRUFuncListCount(), 
(sal_uInt16)LRU_MAX );
 sal_uInt16* pLRUListIds = rAppOpt.GetLRUFuncList();
+_rLastRUFunctions.clear();
 
 if ( pLRUListIds )
 {
 for (sal_uInt16 i = 0; i  nLRUFuncCount; ++i)
 {
-if (std::find(_rLastRUFunctions.begin(), _rLastRUFunctions.end(), 
Get(pLRUListIds[i])) == _rLastRUFunctions.end())
-_rLastRUFunctions.push_back( Get( pLRUListIds[i] ) );
+_rLastRUFunctions.push_back( Get( pLRUListIds[i] ) );
 }
 }
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-4-3' - connectivity/source

2015-01-07 Thread Lionel Elie Mamane
 connectivity/source/drivers/file/FResultSet.cxx |1 +
 1 file changed, 1 insertion(+)

New commits:
commit 2414f02ff0d087d144b472b5b4b1f93d6e3e2960
Author: Lionel Elie Mamane lio...@mamane.lu
Date:   Mon Jan 5 15:08:22 2015 +0100

fdo#80968 file resultset seek table to before beginning on opening resultset

Change-Id: I73abbc7cfe0804e729a711a247b6e085b4e41d95
Reviewed-on: https://gerrit.libreoffice.org/13742
Reviewed-by: Caolán McNamara caol...@redhat.com
Tested-by: Caolán McNamara caol...@redhat.com

diff --git a/connectivity/source/drivers/file/FResultSet.cxx 
b/connectivity/source/drivers/file/FResultSet.cxx
index aece696..221e588 100644
--- a/connectivity/source/drivers/file/FResultSet.cxx
+++ b/connectivity/source/drivers/file/FResultSet.cxx
@@ -1294,6 +1294,7 @@ bool OResultSet::OpenImpl()
 m_nRowPos = -1;
 m_nFilePos  = 0;
 m_nRowCountResult = -1;
+m_pTable-seekRow(IResultSetHelper::ABSOLUTE, 0, m_nFilePos);
 
 m_nLastVisitedPos = m_pTable-getCurrentLastPos();
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 87840] checkboxes for not-supported-by-driver advanced settings are present (but have no effect)

2015-01-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87840

Caolán McNamara caol...@redhat.com changed:

   What|Removed |Added

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

--- Comment #18 from Caolán McNamara caol...@redhat.com ---
presumably we can close this now. 4-4 and 4-3 backports of above fix in gerrit

-- 
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 79261] FILEOPEN: SVG not rendered correctly

2015-01-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79261

Beluga todven...@suomi24.fi changed:

   What|Removed |Added

 CC||todven...@suomi24.fi

--- Comment #9 from Beluga todven...@suomi24.fi ---
Tested on 4.5: now it opens and the only problem is that the 1s and *s next to
the connectors have switched from right to left.

Win 7 64-bit Version: 4.5.0.0.alpha0+
Build ID: 8c7f6830e767897d3a0e88f75fc8d7ef7fca95dc
TinderBox: Win-x86@42, Branch:master, Time: 2015-01-06_00:47:25

-- 
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 88150] inserting graphics from Draw in a writer document makes results in saving impossible error

2015-01-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=88150

--- Comment #1 from Andy silva...@katamail.com ---
Created attachment 111900
  -- https://bugs.freedesktop.org/attachment.cgi?id=111900action=edit
The screenshot of the writer doc with the pasted graphic and the error message
when trying to save

-- 
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 84296] FILEOPEN: Opening svg on Windows gives error

2015-01-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=84296

Beluga todven...@suomi24.fi changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |WORKSFORME

--- Comment #10 from Beluga todven...@suomi24.fi ---
Opens now - WFM.

Win 7 64-bit 4.3.5.2 and Version: 4.5.0.0.alpha0+
Build ID: 8c7f6830e767897d3a0e88f75fc8d7ef7fca95dc
TinderBox: Win-x86@42, Branch:master, Time: 2015-01-06_00:47:25

-- 
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 87927] Ribbon-like UI

2015-01-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87927

myp1lteandr...@gmail.com changed:

   What|Removed |Added

Version|4.5.0.0.alpha0+ Master  |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: javaunohelper/source

2015-01-07 Thread Caolán McNamara
 javaunohelper/source/javaunohelper.cxx |   15 +++
 1 file changed, 7 insertions(+), 8 deletions(-)

New commits:
commit 8eda0f7b07f8fb09b11c577882b5cd4a548e1423
Author: Caolán McNamara caol...@redhat.com
Date:   Wed Jan 7 10:16:18 2015 +

WaE: -Werror=unused-variable with #define DISABLE_DYNLOADING

and also a leak in that mode with a missing ReleaseStringChars after
GetStringChars in one use, and a use after free in the other use where
ReleaseStringChars is called

Change-Id: I2da0310429daf8519554fd7aaf47bba9f6f0e85c

diff --git a/javaunohelper/source/javaunohelper.cxx 
b/javaunohelper/source/javaunohelper.cxx
index 05ad4c0..99a9252 100644
--- a/javaunohelper/source/javaunohelper.cxx
+++ b/javaunohelper/source/javaunohelper.cxx
@@ -54,16 +54,16 @@ jboolean 
Java_com_sun_star_comp_helper_SharedLibraryLoader_component_1writeInfo(
 {
 bool bRet = false;
 
-const jchar* pJLibName = pJEnv-GetStringChars( jLibName, NULL );
-OUString aLibName( pJLibName );
-pJEnv-ReleaseStringChars( jLibName, pJLibName);
+const jchar* pJLibName = pJEnv-GetStringChars(jLibName, NULL);
+OUString aLibName(pJLibName);
+pJEnv-ReleaseStringChars(jLibName, pJLibName);
 
 #ifdef DISABLE_DYNLOADING
 (void) jSMgr;
 (void) jRegKey;
 (void) loader;
 
-fprintf(stderr, Hmm, %s called for %s\n, __PRETTY_FUNCTION__, 
OUStringToOString(pJLibName, RTL_TEXTENCODING_JAVA_UTF8).getStr());
+fprintf(stderr, Hmm, %s called for %s\n, __PRETTY_FUNCTION__, 
OUStringToOString(aLibName, osl_getThreadTextEncoding()).getStr());
 #else
 osl::Module lib(aLibName, SAL_LOADMODULE_LAZY | SAL_LOADMODULE_GLOBAL);
 if (lib.is())
@@ -140,6 +140,8 @@ jobject 
Java_com_sun_star_comp_helper_SharedLibraryLoader_component_1getFactory(
 jobject jSMgr, jobject jRegKey, jobject loader )
 {
 const jchar* pJLibName = pJEnv-GetStringChars(jLibName, NULL);
+OUString aLibName(pJLibName);
+pJEnv-ReleaseStringChars(jLibName, pJLibName);
 
 #ifdef DISABLE_DYNLOADING
 (void) jImplName;
@@ -147,12 +149,9 @@ jobject 
Java_com_sun_star_comp_helper_SharedLibraryLoader_component_1getFactory(
 (void) jRegKey;
 (void) loader;
 
-fprintf(stderr, Hmm, %s called for %s\n, __PRETTY_FUNCTION__, 
OUStringToOString(pJLibName, RTL_TEXTENCODING_JAVA_UTF8).getStr());
+fprintf(stderr, Hmm, %s called for %s\n, __PRETTY_FUNCTION__, 
OUStringToOString(aLibName, osl_getThreadTextEncoding()).getStr());
 #endif
 
-OUString aLibName( pJLibName );
-pJEnv-ReleaseStringChars( jLibName, pJLibName);
-
 aLibName += OUString( SAL_DLLEXTENSION );
 
 jobject joSLL_cpp = 0;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 77855] FILEOPEN: ODF tables showing crushed flat

2015-01-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=77855

Beluga todven...@suomi24.fi changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||todven...@suomi24.fi
 Resolution|--- |WORKSFORME

--- Comment #7 from Beluga todven...@suomi24.fi ---
Crushing gone - WFM.

Win 7 64-bit 4.3.5.2 and Version: 4.5.0.0.alpha0+
Build ID: 8c7f6830e767897d3a0e88f75fc8d7ef7fca95dc
TinderBox: Win-x86@42, Branch:master, Time: 2015-01-06_00:47:25

-- 
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: 3 commits - drawinglayer/source jvmfwk/plugins scaddins/source

2015-01-07 Thread Miklos Vajna
 drawinglayer/source/primitive2d/polygonprimitive2d.cxx |4 ++--
 jvmfwk/plugins/sunmajor/pluginlib/sunjavaplugin.cxx|2 +-
 scaddins/source/analysis/analysis.cxx  |3 ++-
 3 files changed, 5 insertions(+), 4 deletions(-)

New commits:
commit 5a94bc910aa4418326aef894fc412ab71b24bd31
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Wed Jan 7 11:23:53 2015 +0100

drawinglayer: fix Android build

Change-Id: Ie214c91f59780db9baa40cea01b6ddef3019febf

diff --git a/drawinglayer/source/primitive2d/polygonprimitive2d.cxx 
b/drawinglayer/source/primitive2d/polygonprimitive2d.cxx
index a4f667e..c6bbfd2 100644
--- a/drawinglayer/source/primitive2d/polygonprimitive2d.cxx
+++ b/drawinglayer/source/primitive2d/polygonprimitive2d.cxx
@@ -29,7 +29,7 @@
 #include comphelper/random.hxx
 
 using namespace com::sun::star;
-
+using namespace std;
 
 
 namespace drawinglayer
@@ -217,7 +217,7 @@ namespace drawinglayer
 {
 double getRandomColorRange()
 {
-return comphelper::rng::uniform_real_distribution(0.0, 
std::nextafter(1.0, DBL_MAX));
+return comphelper::rng::uniform_real_distribution(0.0, 
nextafter(1.0, DBL_MAX));
 }
 }
 
commit 05850304c98b9365dbd5c5210d06e24ee9c5e13f
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Wed Jan 7 11:12:48 2015 +0100

jvmfwk: fix Android build

Change-Id: Ib183158e51f7bebbb6add92e460a33fa132c1c9d

diff --git a/jvmfwk/plugins/sunmajor/pluginlib/sunjavaplugin.cxx 
b/jvmfwk/plugins/sunmajor/pluginlib/sunjavaplugin.cxx
index d3ac151..de1d979 100644
--- a/jvmfwk/plugins/sunmajor/pluginlib/sunjavaplugin.cxx
+++ b/jvmfwk/plugins/sunmajor/pluginlib/sunjavaplugin.cxx
@@ -83,7 +83,7 @@ namespace {
 
 struct PluginMutex: public ::rtl::Staticosl::Mutex, PluginMutex {};
 
-#if defined UNX
+#if defined(UNX)  !defined(ANDROID)
 OString getPluginJarPath(
 const OUString  sVendor,
 const OUString sLocation,
commit f4fadeb63b902fd09227b8a4128c76f6e32a0b71
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Wed Jan 7 11:07:30 2015 +0100

scaddins: fix Android build

_GLIBCXX_USE_C99_MATH_TR1 is defined on Linux, so nextafter() is
imported into the std namespace, but it isn't defined on Android. So
just import the whole namespace to make both happy.

Change-Id: I8a94198ff65557e64d4ea9f833e3eee5e1aa26ec

diff --git a/scaddins/source/analysis/analysis.cxx 
b/scaddins/source/analysis/analysis.cxx
index d124a79..20edfc6 100644
--- a/scaddins/source/analysis/analysis.cxx
+++ b/scaddins/source/analysis/analysis.cxx
@@ -38,6 +38,7 @@
 #define MY_IMPLNAME com.sun.star.sheet.addin.AnalysisImpl
 
 using namespace ::com::sun::star;
+using namespace std;
 
 extern C SAL_DLLPUBLIC_EXPORT void* SAL_CALL analysis_component_getFactory(
 const sal_Char* pImplName, void* pServiceManager, void* /*pRegistryKey*/ )
@@ -702,7 +703,7 @@ double SAL_CALL AnalysisAddIn::getRandbetween( double fMin, 
double fMax ) throw(
 if( fMin  fMax )
 throw lang::IllegalArgumentException();
 
-double fRet = floor(comphelper::rng::uniform_real_distribution(fMin, 
std::nextafter(fMax+1, -DBL_MAX)));
+double fRet = floor(comphelper::rng::uniform_real_distribution(fMin, 
nextafter(fMax+1, -DBL_MAX)));
 RETURN_FINITE( fRet );
 }
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 75465] [FILEOPEN] RTF filter: General error when opening .rtf file

2015-01-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75465

Beluga todven...@suomi24.fi changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||todven...@suomi24.fi
 Resolution|--- |WORKSFORME

--- Comment #5 from Beluga todven...@suomi24.fi ---
Closing this as WFM.

Burak: you should open a new report for your file and mention the CRM.

Win 7 64-bit Version: 4.5.0.0.alpha0+
Build ID: 8c7f6830e767897d3a0e88f75fc8d7ef7fca95dc
TinderBox: Win-x86@42, Branch:master, Time: 2015-01-06_00:47:25

-- 
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 88142] New: Press delete after select all is not deleting the objects

2015-01-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=88142

Bug ID: 88142
   Summary: Press delete after select all is not deleting the
objects
   Product: LibreOffice
   Version: 4.3.5.1 rc
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: s.abines...@gmail.com

Created attachment 111891
  -- https://bugs.freedesktop.org/attachment.cgi?id=111891action=edit
Document with the objects and corresponding steps

Steps to Reproduce:

1. Insert some draw functions.
2. Place the cursor below of these draw functions and select all by press Ctrl
+ A
   and Copy it by press Ctrl + C.
3. Paste it to another document  Ctrl + V. Here, select the draw functions by  
   press Ctrl + A.
4. Press Delete.
5. It does not delete the draw functions and the cursor move over to the first  
   line.

Actual Result:
Pressing Delete after select all does not delete the draw functions.

Expected Result:
Pressing Delete should delete the draw functions after select 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 42029] can't access pickers with smaller LO window

2015-01-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42029

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

   What|Removed |Added

 CC||jim.av...@gmail.com

--- Comment #28 from Adolfo Jayme f...@libreoffice.org ---
*** Bug 88078 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


Re: tubes/source/conference.cxx:251:79: error: 'OSL_ENSURE' was not declared in this scope

2015-01-07 Thread Tor Lillqvist
 there's a Clang plugin to flag uses of log areas not mentioned in
 log-areas.dox, but for one that plugin has been deactivated


I deactivated it because I got tired of having to add log areas to
log-areas.dox after other people came up with new ones (but they had no
interest in, or knowledge of, mainaining log-areas.dox).

My rationale was that if people just come up with new log areas anyway,
without bothering to check if there already is some suitable one, or what
style of log areas we have in general (as if there would be any
consistency, haha...), then the plugin is pointless.

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


[Libreoffice-bugs] [Bug 88078] Color-selector drop-downs inaccessible from non-visible toolbar icons (in the menu)

2015-01-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=88078

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

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #1 from Adolfo Jayme f...@libreoffice.org ---
Thanks for your bug report. This is a known problem and is already reported as
bug 42029, so I’m marking this one as a duplicate.

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

-- 
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 88122] Easy access to switch between native and LO's custom dialogs

2015-01-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=88122

David Tardon dtar...@redhat.com changed:

   What|Removed |Added

 Status|NEW |NEEDINFO
 CC||dtar...@redhat.com

--- Comment #1 from David Tardon dtar...@redhat.com ---
What is the use case for this?

-- 
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 88122] Easy access to switch between native and LO's custom dialogs

2015-01-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=88122

David Tardon dtar...@redhat.com changed:

   What|Removed |Added

 Status|NEW |NEEDINFO
 CC||dtar...@redhat.com

--- Comment #1 from David Tardon dtar...@redhat.com ---
What is the use case for this?

-- 
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 78854] EDITING: Undoing layout change causes it to crash

2015-01-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=78854

David Tardon dtar...@redhat.com changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|libreoffice-b...@lists.free |dtar...@redhat.com
   |desktop.org |

-- 
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 88144] New: click handling when selecting frames with formulas is inconsistent (crippled)

2015-01-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=88144

Bug ID: 88144
   Summary: click handling when selecting frames with formulas is
inconsistent (crippled)
   Product: LibreOffice
   Version: 4.3.5.2 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: yury.tarasiev...@gmail.com

Suppose you have created a doc with one formula. Then you can't get the
right-click on this object to show the popup menu with `Frame` item. Instead
you get a popup menu with `Object` and `Caption` items (middle of the list).

Simple right-click in the state of NO formula object having selection marker
active (eight little green squares on the frame) gives a popup menu with
`Object` and `Caption` items.

On the other hand, if you have AT LEAST two formulas in the doc, then you can
right-click-select one of them, and then right-click (sic! for the previous
selection to remain active) anywhere in the doc for the popup to close, and
then right-click on another formula, and then you get the popup with the
`Frame` item. Same sequence of right-clicks now gets you a popup with the
`Frame` item for any other formula object.

But if you have only one formula object, you'll never get that kind of popup (I
didn't try for any impossible-to-reproduce workarounds).

And the `Object` and `Frame` dialogs are actually different as to what frame
settings they allow to edit (which is a subject for another ticket).

Replication of the issue: as described.

-- 
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 88145] New: frame position inaccessible for editing

2015-01-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=88145

Bug ID: 88145
   Summary: frame position inaccessible for editing
   Product: LibreOffice
   Version: 4.3.5.2 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: yury.tarasiev...@gmail.com

Formula frame, after it's created, has `position` settings inaccessible for
editing.

You can open the frame settings dialog either via 'Object' path or 'Frame' path
(see https://bugs.freedesktop.org/show_bug.cgi?id=88144), but in both cases
`Position` settings block (bottom of the `Type` tab content) is grayed out. If
dialog is open via 'Object' path, then `Size` block is also inaccessible for
edit (grayed out).

Because of that, https://bugs.freedesktop.org/show_bug.cgi?id=88139 cannot be
trivially worked around.

Replication: as described. Blank doc, one formula with anything in it.

-- 
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 88139] math formulas imported incorrectly from file saved in 3.6.7.2

2015-01-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=88139

Yury yury.tarasiev...@gmail.com changed:

   What|Removed |Added

   See Also||https://bugs.freedesktop.or
   ||g/show_bug.cgi?id=88145

-- 
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 88144] click handling when selecting frames with formulas is inconsistent (crippled)

2015-01-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=88144

Yury yury.tarasiev...@gmail.com changed:

   What|Removed |Added

   See Also||https://bugs.freedesktop.or
   ||g/show_bug.cgi?id=88139

-- 
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 88144] click handling when selecting frames with formulas is inconsistent (crippled)

2015-01-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=88144

Yury yury.tarasiev...@gmail.com changed:

   What|Removed |Added

   See Also||https://bugs.freedesktop.or
   ||g/show_bug.cgi?id=88145

-- 
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 88145] frame position inaccessible for editing

2015-01-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=88145

Yury yury.tarasiev...@gmail.com changed:

   What|Removed |Added

   See Also||https://bugs.freedesktop.or
   ||g/show_bug.cgi?id=88144

-- 
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 84938] replace #defined constants with ‘enum class’

2015-01-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=84938

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

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

fdo#84938: convert INDICATOR_ #defines to 'enum class'

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 88139] math formulas imported incorrectly from file saved in 3.6.7.2

2015-01-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=88139

Yury yury.tarasiev...@gmail.com changed:

   What|Removed |Added

   See Also||https://bugs.freedesktop.or
   ||g/show_bug.cgi?id=88144

-- 
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 88145] frame position inaccessible for editing

2015-01-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=88145

Yury yury.tarasiev...@gmail.com changed:

   What|Removed |Added

   See Also||https://bugs.freedesktop.or
   ||g/show_bug.cgi?id=88139

-- 
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 84938] replace #defined constants with ‘enum class’

2015-01-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=84938

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

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

fdo#84938: convert STREAM_ #defines to 'enum class'

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 the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Bug 84938] replace #defined constants with ‘enum class’

2015-01-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=84938

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

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

fdo#84938: convert STREAM_ #defines to 'enum class'

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 88139] math formulas imported incorrectly from file saved in 3.6.7.2

2015-01-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=88139

Yury yury.tarasiev...@gmail.com changed:

   What|Removed |Added

   See Also||https://bugs.freedesktop.or
   ||g/show_bug.cgi?id=88140

-- 
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 84938] replace #defined constants with ‘enum class’

2015-01-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=84938

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

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

fdo#84938: convert VCL_INPUT_ #defines to 'enum class'

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 the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Bug 84938] replace #defined constants with ‘enum class’

2015-01-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=84938

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

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

fdo#84938: convert VCL_INPUT_ #defines to 'enum class'

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 84938] replace #defined constants with ‘enum class’

2015-01-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=84938

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

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

fdo#84938: convert INDICATOR_ #defines to 'enum class'

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 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 88140] writer 3.6.7.2 fails to open big file with lots of formulas (saved previously in that same writer)

2015-01-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=88140

Yury yury.tarasiev...@gmail.com changed:

   What|Removed |Added

   See Also||https://bugs.freedesktop.or
   ||g/show_bug.cgi?id=88139

-- 
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 88146] New: In Writer, text frames do not save their color and will always turn back to white

2015-01-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=88146

Bug ID: 88146
   Summary: In Writer, text frames do not save their color and
will always turn back to white
   Product: LibreOffice
   Version: 4.4.0.1 rc
  Hardware: x86 (IA32)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: silva...@katamail.com

Created attachment 111894
  -- https://bugs.freedesktop.org/attachment.cgi?id=111894action=edit
The doc contains a frame, try setting any backgorund color, save close and
re-open and the color is gone

When you create a text frame in a Writer document, you can assign a background
color to it, which is correctly applied.

However, after saving (in .odt format) and closing the doc, upon reopening it
the text frame will invariably revert to white background, whatever the colour
you had set in the previous section.

This problem persists on any number of subsequent closing and reopening of the
file.

Notice that other type of frame background (gradients, etc.) are instead
correctly saved.

Moreover, notice that if you save the file in other formats (e.g. word .doc),
the frame background color is instead retained correctly

-- 
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 88122] Easy access to switch between native and LO's custom dialogs

2015-01-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=88122

Jay Philips philip...@hotmail.com changed:

   What|Removed |Added

 Status|NEEDINFO|NEW

--- Comment #2 from Jay Philips philip...@hotmail.com ---
Use cases:

1) A user opens the native dialog and wants to connect to a CMIS as he/she was
informed that it was possible but doesnt know how to do it.

2) A user opens the LO dialog and prefers to have access to various native OS
dialog features (e.g. deleting a file).

Being able to switch from one to another is a long process when it can be quite
easy. By default on windows, i keep it on the OS dialog, but sometimes i want
to connect to Google Drive which is only accessible through LO's native dialog,
so i need to switch to that, but of course i want to switch back after that.

-- 
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 88122] Easy access to switch between native and LO's custom dialogs

2015-01-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=88122

Jay Philips philip...@hotmail.com changed:

   What|Removed |Added

 Status|NEEDINFO|NEW

--- Comment #2 from Jay Philips philip...@hotmail.com ---
Use cases:

1) A user opens the native dialog and wants to connect to a CMIS as he/she was
informed that it was possible but doesnt know how to do it.

2) A user opens the LO dialog and prefers to have access to various native OS
dialog features (e.g. deleting a file).

Being able to switch from one to another is a long process when it can be quite
easy. By default on windows, i keep it on the OS dialog, but sometimes i want
to connect to Google Drive which is only accessible through LO's native dialog,
so i need to switch to that, but of course i want to switch back after that.

-- 
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 76952] Frames are not displayed

2015-01-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=76952

Matthew Francis fdb...@neosheffield.co.uk changed:

   What|Removed |Added

 CC||fdb...@neosheffield.co.uk

--- Comment #6 from Matthew Francis fdb...@neosheffield.co.uk ---
Created attachment 111895
  -- https://bugs.freedesktop.org/attachment.cgi?id=111895action=edit
Before and after

Image showing how the attached document looked before the problem commit (left)
and how it has looked ever since (right)

-- 
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 76952] Frames are not displayed

2015-01-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=76952

Matthew Francis fdb...@neosheffield.co.uk changed:

   What|Removed |Added

   Keywords||bisected
 CC||caol...@redhat.com

--- Comment #7 from Matthew Francis fdb...@neosheffield.co.uk ---
The behaviour seems to have changed as of the below commit.

Adding Cc: to caol...@redhat.com. It's not obvious why this commit should have
broken the import of the attached document, but it does seem to have (I built
back and forth across the commit twice to check). Could you possibly take a
look? Thanks


commit e0cce521f1ad0cc384d30ce2f1077ea229fffe62
Author: Armin Le Grand a...@apache.org
AuthorDate: Thu Jan 10 16:28:40 2013 +
Commit: Caolán McNamara caol...@redhat.com
CommitDate: Thu Jun 13 14:50:46 2013 +0100

Resolves: #i121504# Support for alpha channel in clipboard for all systems

(cherry picked from commit ef3931ff410117e1237b3bef7bc090e8b83b9519)

-- 
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 88128] Unevaluated variable (Undo: Delete $1) appears in UNDO list after cutting text

2015-01-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=88128

--- Comment #3 from Jay Philips philip...@hotmail.com ---
@Rob: It would be good to also check the undo/redo drop down menus in the
toolbar to check if the problem is in there as well.

-- 
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: tools/source

2015-01-07 Thread Noel Grandin
 tools/source/stream/strmwnt.cxx |   16 
 1 file changed, 8 insertions(+), 8 deletions(-)

New commits:
commit 4e89a3e012458fd123d8a962e16aad2838286f36
Author: Noel Grandin n...@peralex.com
Date:   Wed Jan 7 11:33:18 2015 +0200

fix windows build

after my commit 7f8f277b94704a289fbbd1b836e4e5d66311580d
fdo#84938: convert STREAM_ #defines to 'enum class'

Change-Id: I82c5b7812687b6f080bea281485e9ad2ecc5353c

diff --git a/tools/source/stream/strmwnt.cxx b/tools/source/stream/strmwnt.cxx
index 886724d..dd49f6d 100644
--- a/tools/source/stream/strmwnt.cxx
+++ b/tools/source/stream/strmwnt.cxx
@@ -275,7 +275,7 @@ void SvFileStream::Open( const OUString rFilename, 
StreamMode nMode )
 SvStream::ClearBuffer();
 
 eStreamMode = nMode;
-eStreamMode = ~STREAM_TRUNC; // don't truncate on reopen
+eStreamMode = ~StreamMode::TRUNC; // don't truncate on reopen
 
 aFilename = aParsedFilename;
 OString aFileNameA(OUStringToOString(aFilename, 
osl_getThreadTextEncoding()));
@@ -286,25 +286,25 @@ void SvFileStream::Open( const OUString rFilename, 
StreamMode nMode )
 DWORD   nAccessMode = 0L;
 UINTnOldErrorMode = SetErrorMode( 
SEM_FAILCRITICALERRORS|SEM_NOOPENFILEERRORBOX );
 
-if( nMode  STREAM_SHARE_DENYREAD)
+if( nMode  StreamMode::SHARE_DENYREAD)
 nShareMode = ~FILE_SHARE_READ;
 
-if( nMode  STREAM_SHARE_DENYWRITE)
+if( nMode  StreamMode::SHARE_DENYWRITE)
 nShareMode = ~FILE_SHARE_WRITE;
 
-if( nMode  STREAM_SHARE_DENYALL)
+if( nMode  StreamMode::SHARE_DENYALL)
 nShareMode = 0;
 
 if( (nMode  StreamMode::READ) )
 nAccessMode |= GENERIC_READ;
-if( (nMode  STREAM_WRITE) )
+if( (nMode  StreamMode::WRITE) )
 nAccessMode |= GENERIC_WRITE;
 
 if( nAccessMode == GENERIC_READ )   // ReadOnly ?
-nMode |= STREAM_NOCREATE;   // Don't create if readonly
+nMode |= StreamMode::NOCREATE;   // Don't create if readonly
 
 // Assignment based on true/false table above
-if( !(nMode  STREAM_NOCREATE) )
+if( !(nMode  StreamMode::NOCREATE) )
 {
 if( nMode  StreamMode::TRUNC )
 nOpenAction = CREATE_ALWAYS;
@@ -347,7 +347,7 @@ void SvFileStream::Open( const OUString rFilename, 
StreamMode nMode )
 sal_Size nErr = ::GetSvError( GetLastError() );
 if(nErr==SVSTREAM_ACCESS_DENIED || nErr==SVSTREAM_SHARING_VIOLATION)
 {
-nMode = (~STREAM_WRITE);
+nMode = (~StreamMode::WRITE);
 nAccessMode = GENERIC_READ;
 // OV, 28.1.97: Win32 sets file to length 0
 // if Openaction is CREATE_ALWAYS
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: external/jpeg-turbo

2015-01-07 Thread Stephan Bergmann
 external/jpeg-turbo/UnpackedTarball_jpeg-turbo.mk |3 ++
 external/jpeg-turbo/ubsan.patch   |   31 ++
 2 files changed, 34 insertions(+)

New commits:
commit 01c7e2c246e231d70bb7c1c9b5ad7fd5e4614951
Author: Stephan Bergmann sberg...@redhat.com
Date:   Wed Jan 7 10:40:37 2015 +0100

external/jpeg-turbo: Work around -fsanitize=shift

Change-Id: I9ba85592a0d4d2052dd05abb8f4d2976ec1c95cc

diff --git a/external/jpeg-turbo/UnpackedTarball_jpeg-turbo.mk 
b/external/jpeg-turbo/UnpackedTarball_jpeg-turbo.mk
index 2cb2aa4..7f97422 100644
--- a/external/jpeg-turbo/UnpackedTarball_jpeg-turbo.mk
+++ b/external/jpeg-turbo/UnpackedTarball_jpeg-turbo.mk
@@ -11,9 +11,12 @@ $(eval $(call gb_UnpackedTarball_UnpackedTarball,jpeg-turbo))
 
 $(eval $(call gb_UnpackedTarball_set_tarball,jpeg-turbo,$(JPEG_TURBO_TARBALL)))
 
+$(eval $(call gb_UnpackedTarball_set_patchlevel,jpeg-turbo,0))
+
 $(eval $(call gb_UnpackedTarball_add_patches,jpeg-turbo,\
external/jpeg-turbo/jpeg-turbo.build.patch.1 \
$(if $(filter 
WNT,$(OS)),external/jpeg-turbo/jpeg-turbo.win_build.patch.1) \
+   external/jpeg-turbo/ubsan.patch \
 ))
 
 # vim: set noet sw=4 ts=4:
diff --git a/external/jpeg-turbo/ubsan.patch b/external/jpeg-turbo/ubsan.patch
new file mode 100644
index 000..fcd5bcf
--- /dev/null
+++ b/external/jpeg-turbo/ubsan.patch
@@ -0,0 +1,31 @@
+--- jdhuff.c
 jdhuff.c
+@@ -489,7 +489,7 @@
+ #define AVOID_TABLES
+ #ifdef AVOID_TABLES
+ 
+-#define HUFF_EXTEND(x,s)  ((x) + x) - (1((s)-1)))  31)  (((-1)(s)) 
+ 1)))
++#define HUFF_EXTEND(x,s)  ((x) + x) - (1((s)-1)))  31)  
(((unsigned)-1(s)) + 1)))
+ 
+ #else
+ 
+--- jdphuff.c
 jdphuff.c
+@@ -201,7 +201,7 @@
+ #define AVOID_TABLES
+ #ifdef AVOID_TABLES
+ 
+-#define HUFF_EXTEND(x,s)  ((x)  (1((s)-1)) ? (x) + (((-1)(s)) + 1) : (x))
++#define HUFF_EXTEND(x,s)  ((x)  (1((s)-1)) ? (x) + (((unsigned)-1(s)) + 
1) : (x))
+ 
+ #else
+ 
+@@ -334,7 +334,7 @@
+   s += state.last_dc_val[ci];
+   state.last_dc_val[ci] = s;
+   /* Scale and output the coefficient (assumes jpeg_natural_order[0]=0) */
+-  (*block)[0] = (JCOEF) (s  Al);
++  (*block)[0] = (JCOEF) ((unsigned)s  Al);
+ }
+ 
+ /* Completed MCU, so update state */
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 88140] New: writer 3.6.7.2 fails to open big file with lots of formulas (saved previously in that same writer)

2015-01-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=88140

Bug ID: 88140
   Summary: writer 3.6.7.2 fails to open big file with lots of
formulas (saved previously in that same writer)
   Product: LibreOffice
   Version: 3.6.7.2 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: major
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: yury.tarasiev...@gmail.com

I'm working on a big document with lots of formulas in 3.6.7.2 (linux/amd64). 

Today writer began to crash on opening the document. It shows the line of
squares in the statusbar, progress comes to about 65-70% then everything in
writer stops (including the window redraws), `top` tool shows 101% cpu usage
and about 40% mem usage for a couple of minutes, and finally writer crashes
with the following output in the console:

terminate called after throwing an instance of 'std::bad_alloc'
  what():  std::bad_alloc

What do I do and am I ultimately screwed??

I can't migrate to 4.* series because of
https://bugs.freedesktop.org/show_bug.cgi?id=88139 (I can open the doc there --
yet)

I can't attach the doc in question, as that is unpublished etc. The doc itself
is ~4M in size, its zip structure is uncorrupted.

-- 
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 88016] font color is not getting changed in Calc

2015-01-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=88016

Robinson Tryon (qubit) qu...@runcibility.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||qu...@runcibility.com
 Ever confirmed|0   |1

--- Comment #3 from Robinson Tryon (qubit) qu...@runcibility.com ---
(In reply to tommy27 from comment #2)
 @sarojinip
 you reported the bug against 4.3.2.2
 consider upgrading to 4.3.5.2 [or later:]
https://www.libreoffice.org/download/

Status - NEEDINFO

(Please change status to UNCONFIRMED if you can still reproduce the bug with
one of our current versions. 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


Re: tubes/source/conference.cxx:251:79: error: 'OSL_ENSURE' was not declared in this scope

2015-01-07 Thread Stephan Bergmann

On 01/06/2015 11:58 PM, ungifted wrote:

Is tubes area into other section good?


yes


And I found using SAL_INFO( tubes.method... in /tubes/source/conference.cxx 
and manager.cxx
May be it should be added too?


yes, should also be added; there's a Clang plugin to flag uses of log 
areas not mentioned in log-areas.dox, but for one that plugin has been 
deactivated, and for another hardly anybody builds the tubes code, so 
this went unnoticed

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


[Libreoffice-bugs] [Bug 88034] Ruler toobar scaling on HIDPI

2015-01-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=88034

Robinson Tryon (qubit) qu...@runcibility.com changed:

   What|Removed |Added

 CC||ke...@collabora.com,
   ||qu...@runcibility.com
 Whiteboard||NeedsHIDPI

--- Comment #1 from Robinson Tryon (qubit) qu...@runcibility.com ---
Hi Darcy,
It's great to hear that you're working on improving our HIDPI support!

I'm cc'ing one of our Design Team devs; hopefully he'll be able to give you
some pointers.

You can also try asking questions on the Dev mailing list and on the Dev IRC
channel:
https://wiki.documentfoundation.org/Development/Mailing_List
#libreoffice-dev on Freenode.

Best,
--R

-- 
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 87958] VIEWING Spinning writing with shadow and textbox disappearing

2015-01-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87958

R.Yu. ogldel...@mail.ru changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #3 from R.Yu. ogldel...@mail.ru ---
Using PowerPoint Viewer I saw that big pixels.

Confirmed - New definitely

-- 
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 87959] VIEWING: Impress Too big Pixels and displayed incorrectly

2015-01-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87959

R.Yu. ogldel...@mail.ru changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #3 from R.Yu. ogldel...@mail.ru ---
Using PowerPoint Viewer I saw that big pixels.

Confirmed - New definitely

-- 
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: No rule to make target `vs2012-ide-integraion'

2015-01-07 Thread Tor Lillqvist
 Is that the LibreOffice don't support vs2012-ide-integraion any more?


Any more? You are building a branch that is about a year old. The 4.2
branch probably never had any VS integration attempts, at least I can't see
any traces of such in the bin/gbuild-to-ide script.

To experiment with such leading-edge experimental features, that very few
people have ever worked on, you should be working on the master branch, and
be prepared to fix any problem you come across yourself. Sorry if you have
got the wrong impression about the state VS integration from some
over-enthusiastic writings somewhere on the net.

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


[Libreoffice-bugs] [Bug 88100] FILESAVE: Resolution problems when exporting to PNG

2015-01-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=88100

Robinson Tryon (qubit) qu...@runcibility.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||qu...@runcibility.com
Summary|export .png |FILESAVE: Resolution
   ||problems when exporting to
   ||PNG
 Ever confirmed|0   |1
 Whiteboard||filter:png

--- Comment #1 from Robinson Tryon (qubit) qu...@runcibility.com ---
TESTING with LO 4.3.5.2 + Ubuntu 14.04

(In reply to renn0xtek9 from comment #0)
 1)Draw whatever with libreoffice

I drew a big smiley face

 2)Export it to png with default settings.

8.5 x 11 image, with resolution of 37px/cm
(Side note: I filed bug 88132 re: mixed units)

 3)Open the .png

I used GNOME's eog.

 4)See how you entered the 22nd century with pixels almost as big as an apple.

As in an Apple computer, or the pomaceous fruit?

The pixels don't look too huge to me, but maybe I don't have a huge/high-res
screen?

 I am sure it is thinkable to do so that defaults settings save in High
 Definition (At least Microsoft Office can think of doing that)

Defaults can always be changed, but there's a trade-off between resolution and
file size. What would you suggest for a default resolution?

Status - NEEDINFO

(Please change status to UNCONFIRMED after you've provided the info)

 Second nobody understand how to change the settings 
 (Why the fuck changing pixel per centimeters should change the size of the
 image???) 
 in other word, if I want to increase the pixel density the image size MUST
 stay identical !

If I open the export dialog (File - Export - (choose in the drop-down) PNG),
then I can change the Width, Height, or Resolution.

Changing the Width/Height does not affect the Resolution, but changing the
Resolution does cause the Width/Height to change. I agree that this doesn't
seem optimal to me, but I believe I've seen this behavior with other programs
that handle raster images, so perhaps there's a good reason?

-- 
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: Severe performance degradation on Linux

2015-01-07 Thread Maarten Hoes
Hrm.

Two more things I noticed, though again Im not sure how relevant those are,
it's probably nothing :

In one thread/pid (3986), I see about 300 occurances of '... poll resumed
) = 0 (Timeout)', and in the entire output (again thread/pid 3986, among
others) there are about 1100 lines of 'EAGAIN (Resource temporarily
unavailable)'. I attached the excerpt of that thread/pid.


- Maarten


strace.log.3986.txt.gz
Description: GNU Zip compressed data
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] core.git: Branch 'feature/vclref' - 2 commits - compilerplugins/clang dbaccess/source extensions/source include/vcl sd/source vcl/source

2015-01-07 Thread Noel Grandin
 compilerplugins/clang/vclwidgets.cxx  |   87 ++
 dbaccess/source/ui/control/curledit.cxx   |4 -
 extensions/source/propctrlr/standardcontrol.cxx   |2 
 include/vcl/spinfld.hxx   |4 -
 include/vcl/vclptr.hxx|7 +
 sd/source/ui/animations/CustomAnimationDialog.cxx |   18 ++--
 vcl/source/control/combobox.cxx   |4 -
 vcl/source/control/spinfld.cxx|   14 ++-
 vcl/source/window/builder.cxx |4 -
 vcl/source/window/dialog.cxx  |4 -
 vcl/source/window/layout.cxx  |   20 ++---
 11 files changed, 122 insertions(+), 46 deletions(-)

New commits:
commit db1f038526dc4b448d8b3d00290b395faeb9e56e
Author: Noel Grandin n...@peralex.com
Date:   Wed Jan 7 10:42:07 2015 +0200

vcl: make VclPtrT(T*) constructor explicit

to make it obvious in the code when we are translating between the
reference-counted type and raw pointers, since that is the danger-point

Change-Id: I32822432325fa34969e78cccf937e2ccbe1bfb70

diff --git a/dbaccess/source/ui/control/curledit.cxx 
b/dbaccess/source/ui/control/curledit.cxx
index 4924df6..446f0f9 100644
--- a/dbaccess/source/ui/control/curledit.cxx
+++ b/dbaccess/source/ui/control/curledit.cxx
@@ -40,7 +40,7 @@ extern C SAL_DLLPUBLIC_EXPORT vcl::Window* SAL_CALL 
makeConnectionURLEdit(vcl:
 
 OConnectionURLEdit::~OConnectionURLEdit()
 {
-SetSubEdit(NULL);
+SetSubEdit(VclPtrEdit());
 delete m_pForcedPrefix;
 }
 
@@ -68,7 +68,7 @@ void OConnectionURLEdit::SetText(const OUString _rStr, const 
Selection /*_rNew
 {
 // create new sub controls, if necessary
 if (!GetSubEdit())
-SetSubEdit(EditRef(new Edit(this, 0)));
+SetSubEdit(VclPtrEdit(new Edit(this, 0)));
 if ( !m_pForcedPrefix )
 {
 m_pForcedPrefix = new FixedText(this, WB_VCENTER);
diff --git a/extensions/source/propctrlr/standardcontrol.cxx 
b/extensions/source/propctrlr/standardcontrol.cxx
index 071ea12..cf3e753 100644
--- a/extensions/source/propctrlr/standardcontrol.cxx
+++ b/extensions/source/propctrlr/standardcontrol.cxx
@@ -1032,7 +1032,7 @@ namespace pcr
 SetCompoundControl( true );
 
 m_pImplEdit = VclPtrMultiLineEdit( new MultiLineEdit( this, 
WB_TABSTOP | WB_IGNORETAB | WB_NOBORDER | (_nStyle  WB_READONLY) ) );
-SetSubEdit( m_pImplEdit.get() );
+SetSubEdit( m_pImplEdit );
 m_pImplEdit-Show();
 
 if ( _nStyle  WB_DROPDOWN )
diff --git a/include/vcl/spinfld.hxx b/include/vcl/spinfld.hxx
index fe5431b..493dcf8 100644
--- a/include/vcl/spinfld.hxx
+++ b/include/vcl/spinfld.hxx
@@ -32,7 +32,7 @@
 class VCL_DLLPUBLIC SpinField : public Edit
 {
 protected:
-Edit*   mpEdit;
+VclPtrEditmpEdit;
 AutoTimer   maRepeatTimer;
 Rectangle   maUpperRect;
 Rectangle   maLowerRect;
@@ -69,6 +69,8 @@ protected:
 virtual voidFillLayoutData() const SAL_OVERRIDE;
 Rectangle * ImplFindPartRect( const Point rPt );
 
+virtual voiddispose() SAL_OVERRIDE;
+
 public:
 explicitSpinField( vcl::Window* pParent, WinBits nWinStyle = 0 );
 explicitSpinField( vcl::Window* pParent, const ResId );
diff --git a/include/vcl/vclptr.hxx b/include/vcl/vclptr.hxx
index 5aa0c69..c32dbcc 100644
--- a/include/vcl/vclptr.hxx
+++ b/include/vcl/vclptr.hxx
@@ -88,7 +88,7 @@ public:
 
 /** Constructor...
  */
-inline VclPtr (reference_type * pBody)
+explicit inline VclPtr (reference_type * pBody)
 : m_rInnerRef(pBody)
 {}
 
@@ -131,6 +131,11 @@ public:
 return m_rInnerRef.get();
 }
 
+inline void SAL_CALL set(reference_type *pBody)
+{
+m_rInnerRef.set(pBody);
+}
+
 inline SAL_CALL operator reference_type * () const
 {
 return m_rInnerRef.get();
diff --git a/sd/source/ui/animations/CustomAnimationDialog.cxx 
b/sd/source/ui/animations/CustomAnimationDialog.cxx
index a96334a..1feeba4 100644
--- a/sd/source/ui/animations/CustomAnimationDialog.cxx
+++ b/sd/source/ui/animations/CustomAnimationDialog.cxx
@@ -412,13 +412,13 @@ private:
 CharHeightPropertyBox::CharHeightPropertyBox( sal_Int32 nControlType, 
vcl::Window* pParent, const Any rValue, const Link rModifyHdl )
 : PropertySubControl( nControlType )
 {
-mpMetric = new MetricField( pParent, WB_TABSTOP|WB_IGNORETAB| WB_NOBORDER);
+mpMetric.set( new MetricField( pParent, WB_TABSTOP|WB_IGNORETAB| 
WB_NOBORDER) );
 mpMetric-SetUnit( FUNIT_PERCENT );
 mpMetric-SetMin( 0 );
 mpMetric-SetMax( 1000 );
 
 mpMenu = new PopupMenu(SdResId( RID_CUSTOMANIMATION_FONTSIZE_POPUP ) );
-mpControl = new DropdownMenuBox( pParent, mpMetric.get(), mpMenu );
+mpControl = new DropdownMenuBox( pParent, mpMetric, mpMenu );
 mpControl-SetMenuSelectHdl( LINK( this, CharHeightPropertyBox, 
implMenuSelectHdl ));
 

[Libreoffice-bugs] [Bug 54481] EDITING: inconsistant label reference

2015-01-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54481

--- Comment #4 from Morten Leikvoll n...@cyviz.com ---
Also confirmed bug present in 4.3.5.2 Build ID
3a87456aaa6a95c63eea1c1b3201acedf0751bd5

Tested on Windows 7 Professional, sp1.

-- 
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: include/svx svx/source sw/source

2015-01-07 Thread Miklos Vajna
 include/svx/xbtmpit.hxx |2 ++
 include/svx/xit.hxx |2 ++
 svx/source/xoutdev/xattr.cxx|9 +
 svx/source/xoutdev/xattrbmp.cxx |   12 
 sw/source/core/docnode/nodedump.cxx |7 ---
 5 files changed, 29 insertions(+), 3 deletions(-)

New commits:
commit 85ce7c0ac69577cf424f4230bcb9103cfdd73d43
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Wed Jan 7 09:45:03 2015 +0100

Factor out XFillBitmapItem::dumpAsXml() from sw

Change-Id: Ice3a44635a1f4ac2c2852c2e73adae4920412d3a

diff --git a/include/svx/xbtmpit.hxx b/include/svx/xbtmpit.hxx
index e6a83b8..59996b2 100644
--- a/include/svx/xbtmpit.hxx
+++ b/include/svx/xbtmpit.hxx
@@ -68,6 +68,8 @@ public:
 
 static bool CompareValueFunc( const NameOrIndex* p1, const NameOrIndex* p2 
);
 XFillBitmapItem* checkForUniqueItem( SdrModel* pModel ) const;
+
+virtual void dumpAsXml(struct _xmlTextWriter* pWriter) const SAL_OVERRIDE;
 };
 
 #endif
diff --git a/include/svx/xit.hxx b/include/svx/xit.hxx
index 3a90619..6ac1236 100644
--- a/include/svx/xit.hxx
+++ b/include/svx/xit.hxx
@@ -69,6 +69,8 @@ public:
 If returned string equals NameOrIndex-GetName(), the name was already 
unique.
 */
 static OUString CheckNamedItem( const NameOrIndex* pCheckItem, const 
sal_uInt16 nWhich, const SfxItemPool* pPool1, const SfxItemPool* pPool2, 
SvxCompareValueFunc pCompareValueFunc, sal_uInt16 nPrefixResId, const 
XPropertyListRef pDefaults );
+
+virtual void dumpAsXml(struct _xmlTextWriter* pWriter) const;
 };
 
 #endif
diff --git a/svx/source/xoutdev/xattr.cxx b/svx/source/xoutdev/xattr.cxx
index 8c3fc6b..8cb9dc2 100644
--- a/svx/source/xoutdev/xattr.cxx
+++ b/svx/source/xoutdev/xattr.cxx
@@ -260,6 +260,15 @@ OUString NameOrIndex::CheckNamedItem( const NameOrIndex* 
pCheckItem, const sal_u
 return aUniqueName;
 }
 
+void NameOrIndex::dumpAsXml(xmlTextWriterPtr pWriter) const
+{
+xmlTextWriterStartElement(pWriter, BAD_CAST(nameOrIndex));
+xmlTextWriterWriteAttribute(pWriter, BAD_CAST(isIndex), 
BAD_CAST(OString::boolean(IsIndex()).getStr()));
+xmlTextWriterWriteAttribute(pWriter, BAD_CAST(name), 
BAD_CAST(GetName().toUtf8().getStr()));
+xmlTextWriterWriteAttribute(pWriter, BAD_CAST(index), 
BAD_CAST(OString::number(GetIndex()).getStr()));
+xmlTextWriterEndElement(pWriter);
+}
+
 TYPEINIT1_AUTOFACTORY(XColorItem, NameOrIndex);
 
 XColorItem::XColorItem(sal_uInt16 _nWhich, sal_Int32 nIndex, const Color 
rTheColor) :
diff --git a/svx/source/xoutdev/xattrbmp.cxx b/svx/source/xoutdev/xattrbmp.cxx
index 23baafe..245884f 100644
--- a/svx/source/xoutdev/xattrbmp.cxx
+++ b/svx/source/xoutdev/xattrbmp.cxx
@@ -40,6 +40,8 @@
 #include vcl/bmpacc.hxx
 #include vcl/dibtools.hxx
 
+#include libxml/xmlwriter.h
+
 using namespace ::com::sun::star;
 
 XOBitmap::XOBitmap( const Bitmap rBmp ) :
@@ -550,4 +552,14 @@ XFillBitmapItem* XFillBitmapItem::checkForUniqueItem( 
SdrModel* pModel ) const
 return NULL;
 }
 
+void XFillBitmapItem::dumpAsXml(xmlTextWriterPtr pWriter) const
+{
+xmlTextWriterStartElement(pWriter, BAD_CAST(xFillBitmapItem));
+xmlTextWriterWriteAttribute(pWriter, BAD_CAST(whichId), 
BAD_CAST(OString::number(Which()).getStr()));
+
+NameOrIndex::dumpAsXml(pWriter);
+
+xmlTextWriterEndElement(pWriter);
+}
+
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sw/source/core/docnode/nodedump.cxx 
b/sw/source/core/docnode/nodedump.cxx
index 5a1adcb..8bc14bc 100644
--- a/sw/source/core/docnode/nodedump.cxx
+++ b/sw/source/core/docnode/nodedump.cxx
@@ -54,6 +54,7 @@
 #include svx/svdmodel.hxx
 #include svx/xfillit0.hxx
 #include svx/xflclit.hxx
+#include svx/xbtmpit.hxx
 #include tools/datetimeutils.hxx
 
 #include libxml/encoding.h
@@ -459,6 +460,9 @@ void lcl_dumpSfxItemSet(WriterHelper writer, const 
SfxItemSet* pSet)
 case XATTR_FILLCOLOR:
 static_castconst XFillColorItem*(pItem)-dumpAsXml(writer);
 break;
+case XATTR_FILLBITMAP:
+static_castconst XFillBitmapItem*(pItem)-dumpAsXml(writer);
+break;
 default: bDone = false; break;
 }
 if (bDone)
@@ -473,9 +477,6 @@ void lcl_dumpSfxItemSet(WriterHelper writer, const 
SfxItemSet* pSet)
 boost::optionalOString oValue;
 switch (pItem-Which())
 {
-case XATTR_FILLBITMAP:
-pWhich = fill bitmap;
-break;
 case XATTR_FILLTRANSPARENCE:
 pWhich = fill transparence;
 break;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: external/icu

2015-01-07 Thread Stephan Bergmann
 external/icu/icu-ubsan.patch.0 |   11 +++
 1 file changed, 11 insertions(+)

New commits:
commit 2af41bcb2e57df0d5281f81d5c7dec9bfdf37178
Author: Stephan Bergmann sberg...@redhat.com
Date:   Wed Jan 7 09:47:42 2015 +0100

external/icu: Work around -fsanitize=bounds

Change-Id: Iad87d17c162717aa33eec2113697422d9b0545ca

diff --git a/external/icu/icu-ubsan.patch.0 b/external/icu/icu-ubsan.patch.0
index 5729661..e5d8ed6 100644
--- a/external/icu/icu-ubsan.patch.0
+++ b/external/icu/icu-ubsan.patch.0
@@ -71,6 +71,17 @@
  }
  
  UBool
+--- source/common/ucmndata.c
 source/common/ucmndata.c
+@@ -75,7 +75,7 @@
+ typedef struct  {
+ uint32_t  count;
+ uint32_t  reserved;
+-PointerTOCEntry   entry[2];   /* Actual size is from count. */
++PointerTOCEntry   entry[1];   /* Actual size is from count. */
+ }  PointerTOC;
+ 
+ 
 --- source/common/ucmndata.h
 +++ source/common/ucmndata.h
 @@ -50,7 +50,7 @@
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 88141] New: Calc - Formula Bar Font Size

2015-01-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=88141

Bug ID: 88141
   Summary: Calc - Formula Bar Font Size
   Product: LibreOffice
   Version: 4.3.5.2 release
  Hardware: IA64 (Itanium)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Libreoffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: de...@speakeasy.net

Is there a way to modify the font size in the Calc Formula Bar?

After spending about an hour searching Help, Nabble and Google I've come up
with nothing. 

The font size here is mighty small. I use the Formula Bar to read notes in
certain cells and I do this constantly, it saves me many many mouse clicks. 

Libreoffice looks much better to me overall than Openoffice, but due to this
one problem I might have to go back to using Excel, much to my chagrin. 

Grateful for your feedback.

-- 
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 87958] VIEWING Spinning writing with shadow and textbox disappearing

2015-01-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87958

--- Comment #4 from R.Yu. ogldel...@mail.ru ---
Shadows are not good here too.

-- 
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: include/svx

2015-01-07 Thread Stephan Bergmann
 include/svx/xflclit.hxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit e197bcc6285b69179463b5847fe8ce459806455a
Author: Stephan Bergmann sberg...@redhat.com
Date:   Wed Jan 7 09:53:58 2015 +0100

-Werror,-Winconsistent-missing-override

Change-Id: I403feb52e491700dfb99e86817b983cbfd7aca45

diff --git a/include/svx/xflclit.hxx b/include/svx/xflclit.hxx
index 74c9d1e..522b775 100644
--- a/include/svx/xflclit.hxx
+++ b/include/svx/xflclit.hxx
@@ -50,7 +50,7 @@ public:
 SfxMapUnit ePresMetric,
 OUString rText, const IntlWrapper * = 0 ) 
const SAL_OVERRIDE;
 
-void dumpAsXml(struct _xmlTextWriter* pWriter) const;
+void dumpAsXml(struct _xmlTextWriter* pWriter) const SAL_OVERRIDE;
 };
 
 #endif
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 88139] math formulas imported incorrectly from file saved in 3.6.7.2

2015-01-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=88139

--- Comment #4 from Yury yury.tarasiev...@gmail.com ---
While poking around I've found that the immediate cause of bad render is the
`vertical position` setting of the imported formula frame, which is somehow
offset by (in this case) 0.26in `from bottom` w/r to the `base line`.

Newly input formula gets this setting (correctly) zeroed and referring to
`Character`, according to what is set in the `Formula` frame style.

Re-applying the frame style does not help. Also, I cannot directly edit the
setting in question, as the frame `Position` settings (both horisontal and
vertical) are grayed out.

Would somebody point out the relevant object and property hierarchy (if
possible, for python interface) for me to throw together a (python) script
which would iterate through the imported formulas and workaround the issue
(until it gets fixed in the source)? My work is effectively blocked now
(because of https://bugs.freedesktop.org/show_bug.cgi?id=88140 and this)

BTW, the UI click handling is somewhat crippled in its capability to select
formula's *frame* (possibly, frames of other object types, too) for *editing*
(I'm filing a ticket on this).

-- 
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 88149] Impress causes java and itself to crash when copying a table created in the Inspiration template

2015-01-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=88149

--- Comment #2 from Shimi Chen shimi.c...@gmail.com ---
Created attachment 111901
  -- https://bugs.freedesktop.org/attachment.cgi?id=111901action=edit
Java7 crash log file

Previous crash log was from OpenJDK 8, this one is after I tried to switch to
OpenJDK 7 (same crash).

-- 
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 88120] EDITING: Total editing time Field Does Not Update Above ~45 Minutes Per Save

2015-01-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=88120

--- Comment #4 from Amir Adar adar.a...@yahoo.com ---
It seems that I forgot a crucial step for reproducing the bug:

1. Create a new file
2. Edit it a little and save
3. Wait for about one hour
4. Edit a little more and SAVE the file again
5. open the properties dialogue.

Sorry about that.

-- 
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: tubes/source/conference.cxx:251:79: error: 'OSL_ENSURE' was not declared in this scope

2015-01-07 Thread Bjoern Michaelsen
Hi,

On Wed, Jan 07, 2015 at 11:02:19AM +0200, Tor Lillqvist wrote:
 My rationale was that if people just come up with new log areas anyway,
 without bothering to check if there already is some suitable one, or what
 style of log areas we have in general (as if there would be any
 consistency, haha...), then the plugin is pointless.

Personal opinion: The double bookkeeping of log areas is bad, and people ignore
it because its a direct violation of DRY. IMHO if that plugin is active, it
should just add the missing log areas. Whoever is caring about consistency in
the log areas then simply needs to look at that file once in a while and tweak
existing log areas into a consistent state. Consistency is not something that
can be achieved by forcing over 200 people to do edits to one file(*), it needs 
to
be maintained by 1-2 people with a good context on what is there and what the
customs are.

Best,

Bjoern

(*) aka technical solution to a social problem
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


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

2015-01-07 Thread Miklos Vajna
 javaunohelper/source/javaunohelper.cxx |1 +
 1 file changed, 1 insertion(+)

New commits:
commit db8ac4fe309d38b3929032887642a62da19f
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Wed Jan 7 11:38:23 2015 +0100

javaunohelper: missing include

Change-Id: Ie8427e9ad7a2a03d6698ee95ce0f11fb458c00e3

diff --git a/javaunohelper/source/javaunohelper.cxx 
b/javaunohelper/source/javaunohelper.cxx
index 99a9252..d55fe3b 100644
--- a/javaunohelper/source/javaunohelper.cxx
+++ b/javaunohelper/source/javaunohelper.cxx
@@ -21,6 +21,7 @@
 
 #include osl/diagnose.h
 #include osl/module.hxx
+#include osl/thread.h
 
 #include uno/environment.hxx
 #include uno/lbnames.h
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2015-01-07 Thread Justin Luth
 sw/source/filter/ww8/wrtww8.cxx |   16 +---
 1 file changed, 13 insertions(+), 3 deletions(-)

New commits:
commit efa21d48a0dcb46e4728a19f89d0e26587a17327
Author: Justin Luth justin_l...@sil.org
Date:   Fri Jan 2 07:33:08 2015 +0300

WW8 filter: export zoom type

Change-Id: I6a667585cc590ed2fe73581acb1249da62e65d31
Reviewed-on: https://gerrit.libreoffice.org/13717
Reviewed-by: Miklos Vajna vmik...@collabora.co.uk
Tested-by: Miklos Vajna vmik...@collabora.co.uk

diff --git a/sw/source/filter/ww8/wrtww8.cxx b/sw/source/filter/ww8/wrtww8.cxx
index 96dac3b..af41675 100644
--- a/sw/source/filter/ww8/wrtww8.cxx
+++ b/sw/source/filter/ww8/wrtww8.cxx
@@ -334,10 +334,20 @@ static void WriteDop( WW8Export rWrt )
 DefaultItemGetSvxTabStopItem(*rWrt.pDoc, RES_PARATR_TABSTOP);
 rDop.dxaTab = (sal_uInt16)rTabStop[0].GetTabPos();
 
-// Zoom factor
+// Zoom factor and type
 SwViewShell 
*pViewShell(rWrt.pDoc-getIDocumentLayoutAccess().GetCurrentViewShell());
-if (pViewShell  pViewShell-GetViewOptions()-GetZoomType() == 
SVX_ZOOM_PERCENT)
-rDop.wScaleSaved = pViewShell-GetViewOptions()-GetZoom();
+if (pViewShell)
+{
+switch ( pViewShell-GetViewOptions()-GetZoomType() )
+{
+case SVX_ZOOM_WHOLEPAGE: rDop.zkSaved = 1; break;
+case SVX_ZOOM_PAGEWIDTH: rDop.zkSaved = 2; break;
+case SVX_ZOOM_OPTIMAL:   rDop.zkSaved = 3; break;
+default: rDop.zkSaved = 0;
+rDop.wScaleSaved = pViewShell-GetViewOptions()-GetZoom();
+break;
+}
+}
 
 // Werte aus der DocStatistik (werden aufjedenfall fuer die
 // DocStat-Felder benoetigt!)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2015-01-07 Thread Justin Luth
 sw/qa/extras/ww8export/data/zoomtype.doc |binary
 sw/qa/extras/ww8export/ww8export.cxx |   11 +++
 2 files changed, 11 insertions(+)

New commits:
commit f536699304e951ab2e104118ad36335ee0f1b268
Author: Justin Luth justin_l...@sil.org
Date:   Mon Jan 5 19:34:32 2015 +0300

WW8 filter: zoom type testcase

Change-Id: I57f90a84b49c4a3bd49c66e23d059939684a6aef
Reviewed-on: https://gerrit.libreoffice.org/13765
Reviewed-by: Miklos Vajna vmik...@collabora.co.uk
Tested-by: Miklos Vajna vmik...@collabora.co.uk

diff --git a/sw/qa/extras/ww8export/data/zoomtype.doc 
b/sw/qa/extras/ww8export/data/zoomtype.doc
new file mode 100644
index 000..8823754
Binary files /dev/null and b/sw/qa/extras/ww8export/data/zoomtype.doc differ
diff --git a/sw/qa/extras/ww8export/ww8export.cxx 
b/sw/qa/extras/ww8export/ww8export.cxx
index d16d781..7d8a5b8 100644
--- a/sw/qa/extras/ww8export/ww8export.cxx
+++ b/sw/qa/extras/ww8export/ww8export.cxx
@@ -18,6 +18,7 @@
 #include com/sun/star/table/TableBorder2.hpp
 #include com/sun/star/text/GraphicCrop.hpp
 #include com/sun/star/text/XFormField.hpp
+#include com/sun/star/view/DocumentZoomType.hpp
 
 class Test : public SwModelTestBase
 {
@@ -115,6 +116,16 @@ DECLARE_WW8EXPORT_TEST(testZoom, zoom.doc)
 CPPUNIT_ASSERT_EQUAL(sal_Int16(42), nValue);
 }
 
+DECLARE_WW8EXPORT_TEST(testZoomType, zoomtype.doc)
+{
+uno::Referenceframe::XModel xModel(mxComponent, uno::UNO_QUERY);
+uno::Referenceview::XViewSettingsSupplier 
xViewSettingsSupplier(xModel-getCurrentController(), uno::UNO_QUERY);
+uno::Referencebeans::XPropertySet 
xPropertySet(xViewSettingsSupplier-getViewSettings());
+sal_Int16 nValue = 0;
+xPropertySet-getPropertyValue(ZoomType) = nValue;
+CPPUNIT_ASSERT_EQUAL(sal_Int16(view::DocumentZoomType::PAGE_WIDTH), 
nValue);
+}
+
 DECLARE_WW8EXPORT_TEST(test56513, fdo56513.doc)
 {
 CPPUNIT_ASSERT_EQUAL(OUString(This is the header of the first section),  
parseDump(/root/page[1]/header/txt/text()));
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 86984] UI:Line Numbering. Include header or footer not preserved and has no effect on counting.

2015-01-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=86984

--- Comment #11 from kompilainenn 79045_79...@mail.ru ---
confirm this bug, for

Version: 4.4.0.1.0+
ID build: 310c6e617f48ac94f2bd982b2dca6c05c06a2d51
TinderBox: Win-x86@51-TDF, Branch:libreoffice-4-4, Time: 2015-01-04_20:52:31
Locale: ru_RU
OS: Windows 7 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 84938] replace #defined constants with ‘enum class’

2015-01-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=84938

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

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

fdo#84938: convert COMPRESSMODE_ #defines to 'enum class'

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 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: editeng/source include/svx include/tools svtools/source svx/source tools/source vcl/source

2015-01-07 Thread Noel Grandin
 editeng/source/items/bulitem.cxx   |2 +-
 include/svx/svdmodel.hxx   |1 -
 include/tools/stream.hxx   |   18 --
 svtools/source/misc/transfer.cxx   |2 +-
 svx/source/gallery2/galobj.cxx |6 +++---
 svx/source/svdraw/svdmodel.cxx |1 -
 svx/source/xml/xmlgrhlp.cxx|4 ++--
 tools/source/stream/stream.cxx |2 +-
 vcl/source/gdi/dibtools.cxx|2 +-
 vcl/source/gdi/gdimtf.cxx  |4 ++--
 vcl/source/gdi/impgraph.cxx|6 +++---
 vcl/source/gdi/pdfwriter_impl2.cxx |2 +-
 12 files changed, 27 insertions(+), 23 deletions(-)

New commits:
commit 306f04830300c239fd74677bcc61efcb5a4532ea
Author: Noel Grandin n...@peralex.com
Date:   Wed Jan 7 11:53:42 2015 +0200

fdo#84938: convert COMPRESSMODE_ #defines to 'enum class'

Change-Id: Ica501fc73e7e5f9dbd30dd9da3f337b2dc7e6f02

diff --git a/editeng/source/items/bulitem.cxx b/editeng/source/items/bulitem.cxx
index a0dd0ec..0936d98 100644
--- a/editeng/source/items/bulitem.cxx
+++ b/editeng/source/items/bulitem.cxx
@@ -328,7 +328,7 @@ SvStream SvxBulletItem::Store( SvStream rStrm, sal_uInt16 
/*nItemVersion*/ ) c
 sal_Size _nStart = rStrm.Tell();
 
 // Small preliminary estimate of the size ...
-sal_uInt16 nFac = ( rStrm.GetCompressMode() != COMPRESSMODE_NONE ) ? 3 
: 1;
+sal_uInt16 nFac = ( rStrm.GetCompressMode() != 
SvStreamCompressFlags::NONE ) ? 3 : 1;
 const Bitmap aBmp( pGraphicObject-GetGraphic().GetBitmap() );
 sal_uLong nBytes = aBmp.GetSizeBytes();
 if ( nBytes  sal_uLong(0xFF00*nFac) )
diff --git a/include/svx/svdmodel.hxx b/include/svx/svdmodel.hxx
index bbca710..30db1ef 100644
--- a/include/svx/svdmodel.hxx
+++ b/include/svx/svdmodel.hxx
@@ -205,7 +205,6 @@ protected:
 boolbSaveNative:1;
 boolbStarDrawPreviewMode:1;
 boolmbDisableTextEditUsesCommonUndoManager:1;
-sal_uInt16  nStreamCompressMode;  // write compressedly?
 SvStreamEndian  nStreamNumberFormat;
 sal_uInt16  nDefaultTabulator;
 sal_uInt32  nMaxUndoCount;
diff --git a/include/tools/stream.hxx b/include/tools/stream.hxx
index e80d097..59561de 100644
--- a/include/tools/stream.hxx
+++ b/include/tools/stream.hxx
@@ -79,9 +79,15 @@ namespace o3tl
 
 enum class SvStreamEndian { BIG, LITTLE };
 
-#define COMPRESSMODE_NONE   (sal_uInt16)0x
-#define COMPRESSMODE_ZBITMAP(sal_uInt16)0x0001
-#define COMPRESSMODE_NATIVE (sal_uInt16)0x0010
+enum class SvStreamCompressFlags {
+NONE = 0x,
+ZBITMAP  = 0x0001,
+NATIVE   = 0x0010,
+};
+namespace o3tl
+{
+template struct typed_flagsSvStreamCompressFlags : 
is_typed_flagsSvStreamCompressFlags, 0x0011 {};
+}
 
 class SvStream;
 
@@ -222,7 +228,7 @@ private:
 boolbIsEof;
 sal_uInt32  nError;
 SvStreamEndian  nEndian;
-sal_uInt16  nCompressMode;
+SvStreamCompressFlags nCompressMode;
 LineEnd eLineDelimiter;
 rtl_TextEncoding eStreamCharSet;
 
@@ -278,9 +284,9 @@ public:
 /// returns status of endian swap flag
 boolIsEndianSwap() const { return bSwap; }
 
-voidSetCompressMode( sal_uInt16 nNewMode )
+voidSetCompressMode( SvStreamCompressFlags nNewMode )
 { nCompressMode = nNewMode; }
-sal_uInt16  GetCompressMode() const { return nCompressMode; }
+SvStreamCompressFlags GetCompressMode() const { return nCompressMode; }
 
 void SetCryptMaskKey(const OString rCryptMaskKey);
 const OString GetCryptMaskKey() const { return m_aCryptMaskKey; }
diff --git a/svtools/source/misc/transfer.cxx b/svtools/source/misc/transfer.cxx
index 81defcc..d963953 100644
--- a/svtools/source/misc/transfer.cxx
+++ b/svtools/source/misc/transfer.cxx
@@ -801,7 +801,7 @@ bool TransferableHelper::SetGraphic( const Graphic 
rGraphic, const DataFlavor
 SvMemoryStream aMemStm( 65535, 65535 );
 
 aMemStm.SetVersion( SOFFICE_FILEFORMAT_50 );
-aMemStm.SetCompressMode( COMPRESSMODE_NATIVE );
+aMemStm.SetCompressMode( SvStreamCompressFlags::NATIVE );
 WriteGraphic( aMemStm, rGraphic );
 maAny = Sequence sal_Int8 ( reinterpret_cast const sal_Int8* ( 
aMemStm.GetData() ), aMemStm.Seek( STREAM_SEEK_TO_END ) );
 }
diff --git a/svx/source/gallery2/galobj.cxx b/svx/source/gallery2/galobj.cxx
index 4fe3e05..3205a9c 100644
--- a/svx/source/gallery2/galobj.cxx
+++ b/svx/source/gallery2/galobj.cxx
@@ -178,10 +178,10 @@ void SgaObject::WriteData( SvStream rOut, const 
OUString rDestDir ) const
 
 if( bIsThumbBmp )
 {
-const sal_uInt16nOldCompressMode = rOut.GetCompressMode();
-const sal_uIntPtr   nOldVersion = rOut.GetVersion();
+const SvStreamCompressFlags nOldCompressMode = rOut.GetCompressMode();
+const sal_uIntPtr   

[Bug 84938] replace #defined constants with ‘enum class’

2015-01-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=84938

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

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

fdo#84938: convert COMPRESSMODE_ #defines to 'enum class'

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 87840] checkboxes for not-supported-by-driver advanced settings are present (but have no effect)

2015-01-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87840

Lionel Elie Mamane lio...@mamane.lu changed:

   What|Removed |Added

 Status|RESOLVED|VERIFIED

--- Comment #19 from Lionel Elie Mamane lio...@mamane.lu ---
(In reply to Caolán McNamara from comment #18)
 presumably we can close this now.

Yes, thanks.

Julien, if you want to address the small side problems that you found (like
e.g. the feature being not named right in the hdsqldb Drivers.xcu), you still
can :)

-- 
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' - 3 commits - android/Bootstrap desktop/source include/LibreOfficeKit sal/android

2015-01-07 Thread Tomaž Vajngerl
 android/Bootstrap/src/org/libreoffice/kit/Document.java |   16 +++
 desktop/source/lib/lokandroid.cxx   |   69 
 include/LibreOfficeKit/LibreOfficeKit.h |   28 --
 sal/android/lo-bootstrap.c  |2 
 4 files changed, 104 insertions(+), 11 deletions(-)

New commits:
commit 1c4ba83a395dd105620c104a29cabdcc84675aad
Author: Tomaž Vajngerl tomaz.vajng...@collabora.co.uk
Date:   Wed Jan 7 19:37:53 2015 +0900

android: Add support for callbacks from LO to JNI and Java LOK

This adds support to retrieve callbacks from LibreOffice (like
for example that a part of document has been invalidated) to
LibreOfficeKit JNI and Java wrappers.

Change-Id: Ib70187194d002c72b64d58032aab216adc591565

diff --git a/android/Bootstrap/src/org/libreoffice/kit/Document.java 
b/android/Bootstrap/src/org/libreoffice/kit/Document.java
index e415d8f..6985a7c 100644
--- a/android/Bootstrap/src/org/libreoffice/kit/Document.java
+++ b/android/Bootstrap/src/org/libreoffice/kit/Document.java
@@ -9,6 +9,8 @@
 
 package org.libreoffice.kit;
 
+import android.util.Log;
+
 import java.nio.ByteBuffer;
 
 public class Document {
@@ -28,8 +30,22 @@ public class Document {
 
 public Document(ByteBuffer handle) {
 this.handle = handle;
+bindMessageCallback();
+}
+
+/**
+ * Callback triggered through JNI to indicate that a new singal
+ * from LibreOfficeKit was retrieved.
+ */
+private void messageRetrieved(int signalNumber, String payload) {
+Log.i(Document, Signal retrieved:  + signalNumber +   + payload);
 }
 
+/**
+ * Bind the signal callback in LOK.
+ */
+private native void bindMessageCallback();
+
 public native void destroy();
 
 public native int getPart();
diff --git a/desktop/source/lib/lokandroid.cxx 
b/desktop/source/lib/lokandroid.cxx
index 2b18071..06da8a9 100644
--- a/desktop/source/lib/lokandroid.cxx
+++ b/desktop/source/lib/lokandroid.cxx
@@ -22,6 +22,9 @@
 
 /* LibreOfficeKit */
 
+namespace
+{
+
 jfieldID getHandleField(JNIEnv* pEnv, jobject aObject)
 {
 jclass clazz = pEnv-GetObjectClass(aObject);
@@ -46,6 +49,8 @@ const char* copyJavaString(JNIEnv* pEnv, jstring aJavaString)
 return pClone;
 }
 
+} // anonymous namespace
+
 extern C SAL_JNI_EXPORT jstring JNICALL 
Java_org_libreoffice_kit_Office_getError(JNIEnv* pEnv, jobject aObject)
 {
 LibreOfficeKit* pLibreOfficeKit = getHandleLibreOfficeKit(pEnv, aObject);
@@ -68,6 +73,55 @@ extern C SAL_JNI_EXPORT void JNICALL 
Java_org_libreoffice_kit_Office_destroyAn
 _exit(0);
 }
 
+namespace
+{
+
+struct CallbackData
+{
+jmethodID aJavaCallbackMethod;
+jclass aClass;
+jobject aObject;
+};
+
+static CallbackData gCallbackData;
+
+/**
+ * Handle retrieved callback
+ */
+void messageCallback(int nType, const char* pPayload, void* pData)
+{
+CallbackData* pCallbackData = (CallbackData*) pData;
+
+JavaVM* pJavaVM = lo_get_javavm();
+JNIEnv* pEnv;
+bool bIsAttached = false;
+
+int status = pJavaVM-GetEnv((void **) pEnv, JNI_VERSION_1_6);
+
+if(status  0)
+{
+status = pJavaVM-AttachCurrentThread(pEnv, NULL);
+if(status  0)
+{
+return;
+}
+bIsAttached = true;
+}
+
+jvalue aParameter[2];
+aParameter[0].i = nType;
+aParameter[1].l = pEnv-NewStringUTF(pPayload);
+
+pEnv-CallVoidMethodA(pCallbackData-aObject, 
pCallbackData-aJavaCallbackMethod, aParameter);
+
+if (bIsAttached)
+{
+pJavaVM-DetachCurrentThread();
+}
+}
+
+} // anonymous namespace
+
 extern C SAL_JNI_EXPORT jobject JNICALL 
Java_org_libreoffice_kit_Office_documentLoadNative(JNIEnv* pEnv, jobject 
aObject, jstring documentPath)
 {
 const char* aCloneDocumentPath = copyJavaString(pEnv, documentPath);
@@ -81,6 +135,21 @@ extern C SAL_JNI_EXPORT jobject JNICALL 
Java_org_libreoffice_kit_Office_docume
 
 /* Document */
 
+/** Implementation of org.libreoffice.kit.Document.bindMessageCallback method 
*/
+extern C SAL_JNI_EXPORT void JNICALL 
Java_org_libreoffice_kit_Document_bindMessageCallback
+(JNIEnv* pEnv, jobject aObject)
+{
+LibreOfficeKitDocument* pDocument = 
getHandleLibreOfficeKitDocument(pEnv, aObject);
+
+gCallbackData.aObject = (jobject) pEnv-NewGlobalRef(aObject);
+jclass aClass = pEnv-GetObjectClass(aObject);
+gCallbackData.aClass = (jclass) pEnv-NewGlobalRef(aClass);
+
+gCallbackData.aJavaCallbackMethod = pEnv-GetMethodID(aClass, 
messageRetrieved, (ILjava/lang/String;)V);
+
+pDocument-pClass-registerCallback(pDocument, messageCallback, (void*) 
gCallbackData);
+}
+
 extern C SAL_JNI_EXPORT void JNICALL 
Java_org_libreoffice_kit_Document_destroy
 (JNIEnv* pEnv, jobject aObject)
 {
commit 66f0c3a135977e487ab62a1148ab56cdf8c72331
Author: Tomaž Vajngerl tomaz.vajng...@collabora.co.uk
Date:   Wed Jan 7 19:05:05 2015 +0900

android: No reason to return 

[Libreoffice-commits] core.git: Branch 'libreoffice-4-4' - dbaccess/source dbaccess/uiconfig

2015-01-07 Thread Caolán McNamara
 dbaccess/source/ui/dlg/advancedsettings.cxx |1 
 dbaccess/uiconfig/ui/specialsettingspage.ui |   76 +---
 2 files changed, 60 insertions(+), 17 deletions(-)

New commits:
commit 92d5ca9aa6f585de51f7fcfdf756f3bdf91052dc
Author: Caolán McNamara caol...@redhat.com
Date:   Wed Jan 7 09:55:46 2015 +

Resolves: fdo#87840 by default hide all feature checkboxes

and explicitly show the supported ones

Change-Id: I93d998472a82085da9bd5a8ec7ad4cb39998e198
(cherry picked from commit fef5c2b81d1ac7d64e01521da792f470b03a1841)
Reviewed-on: https://gerrit.libreoffice.org/13788
Reviewed-by: Lionel Elie Mamane lio...@mamane.lu
Tested-by: Lionel Elie Mamane lio...@mamane.lu

diff --git a/dbaccess/source/ui/dlg/advancedsettings.cxx 
b/dbaccess/source/ui/dlg/advancedsettings.cxx
index 905465e..65288cd 100644
--- a/dbaccess/source/ui/dlg/advancedsettings.cxx
+++ b/dbaccess/source/ui/dlg/advancedsettings.cxx
@@ -97,6 +97,7 @@ namespace dbaui
 {
 get((*setting-ppControl), setting-sControlId);
 (*setting-ppControl)-SetClickHdl( getControlModifiedLink() );
+(*setting-ppControl)-Show();
 
 // check whether this must be a tristate check box
 const SfxPoolItem rItem = _rCoreAttrs.Get( nItemId );
diff --git a/dbaccess/uiconfig/ui/specialsettingspage.ui 
b/dbaccess/uiconfig/ui/specialsettingspage.ui
index 8dfb184..cb853b4 100644
--- a/dbaccess/uiconfig/ui/specialsettingspage.ui
+++ b/dbaccess/uiconfig/ui/specialsettingspage.ui
@@ -1,5 +1,5 @@
 ?xml version=1.0 encoding=UTF-8?
-!-- Generated with glade 3.18.3 --
+!-- Generated with glade 3.16.1 --
 interface
   requires lib=gtk+ version=3.0/
   object class=GtkBox id=SpecialSettingsPage
@@ -16,9 +16,9 @@
 child
   object class=GtkCheckButton id=usesql92
 property name=label translatable=yesUse SQL92 naming 
constraints/property
-property name=visibleTrue/property
 property name=can_focusTrue/property
 property name=receives_defaultFalse/property
+property name=no_show_allTrue/property
 property name=use_underlineTrue/property
 property name=xalign0/property
 property name=draw_indicatorTrue/property
@@ -26,14 +26,16 @@
   packing
 property name=left_attach0/property
 property name=top_attach0/property
+property name=width1/property
+property name=height1/property
   /packing
 /child
 child
   object class=GtkCheckButton id=append
 property name=label translatable=yesAppend the table alias 
name on SELECT statements/property
-property name=visibleTrue/property
 property name=can_focusTrue/property
 property name=receives_defaultFalse/property
+property name=no_show_allTrue/property
 property name=use_underlineTrue/property
 property name=xalign0/property
 property name=draw_indicatorTrue/property
@@ -41,14 +43,16 @@
   packing
 property name=left_attach0/property
 property name=top_attach1/property
+property name=width1/property
+property name=height1/property
   /packing
 /child
 child
   object class=GtkCheckButton id=useas
 property name=label translatable=yesUse keyword AS before 
table alias names/property
-property name=visibleTrue/property
 property name=can_focusTrue/property
 property name=receives_defaultFalse/property
+property name=no_show_allTrue/property
 property name=use_underlineTrue/property
 property name=xalign0/property
 property name=draw_indicatorTrue/property
@@ -56,14 +60,16 @@
   packing
 property name=left_attach0/property
 property name=top_attach2/property
+property name=width1/property
+property name=height1/property
   /packing
 /child
 child
   object class=GtkCheckButton id=useoj
 property name=label translatable=yesUse Outer Join syntax 
'{oj }'/property
-property name=visibleTrue/property
 property name=can_focusTrue/property
 property name=receives_defaultFalse/property
+property name=no_show_allTrue/property
 property name=use_underlineTrue/property
 property name=xalign0/property
 property name=draw_indicatorTrue/property
@@ -71,14 +77,16 @@
   packing
 property name=left_attach0/property
 property name=top_attach3/property
+property name=width1/property
+property name=height1/property
   /packing
 /child
 child
   object class=GtkCheckButton 

[Libreoffice-commits] core.git: Branch 'libreoffice-4-3' - dbaccess/source dbaccess/uiconfig

2015-01-07 Thread Caolán McNamara
 dbaccess/source/ui/dlg/advancedsettings.cxx |1 
 dbaccess/uiconfig/ui/specialsettingspage.ui |   36 ++--
 2 files changed, 19 insertions(+), 18 deletions(-)

New commits:
commit db3ab19f6ca3252141f7e7f858fdde406a890cec
Author: Caolán McNamara caol...@redhat.com
Date:   Wed Jan 7 09:55:46 2015 +

Resolves: fdo#87840 by default hide all feature checkboxes

and explicitly show the supported ones

(cherry picked from commit fef5c2b81d1ac7d64e01521da792f470b03a1841)

Conflicts:
dbaccess/uiconfig/ui/specialsettingspage.ui

Change-Id: I93d998472a82085da9bd5a8ec7ad4cb39998e198
Reviewed-on: https://gerrit.libreoffice.org/13789
Reviewed-by: Lionel Elie Mamane lio...@mamane.lu
Tested-by: Lionel Elie Mamane lio...@mamane.lu

diff --git a/dbaccess/source/ui/dlg/advancedsettings.cxx 
b/dbaccess/source/ui/dlg/advancedsettings.cxx
index 399369d..3c41665 100644
--- a/dbaccess/source/ui/dlg/advancedsettings.cxx
+++ b/dbaccess/source/ui/dlg/advancedsettings.cxx
@@ -98,6 +98,7 @@ namespace dbaui
 {
 get((*setting-ppControl), setting-sControlId);
 (*setting-ppControl)-SetClickHdl( getControlModifiedLink() );
+(*setting-ppControl)-Show();
 
 // check whether this must be a tristate check box
 const SfxPoolItem rItem = _rCoreAttrs.Get( nItemId );
diff --git a/dbaccess/uiconfig/ui/specialsettingspage.ui 
b/dbaccess/uiconfig/ui/specialsettingspage.ui
index 0072f8c..48ee74e 100644
--- a/dbaccess/uiconfig/ui/specialsettingspage.ui
+++ b/dbaccess/uiconfig/ui/specialsettingspage.ui
@@ -1,7 +1,7 @@
 ?xml version=1.0 encoding=UTF-8?
-!-- Generated with glade 3.16.0 on Wed Jan 29 13:37:30 2014 --
+!-- Generated with glade 3.16.1 --
 interface
-  !-- interface-requires gtk+ 3.0 --
+  requires lib=gtk+ version=3.0/
   object class=GtkFrame id=SpecialSettingsPage
 property name=visibleTrue/property
 property name=can_focusFalse/property
@@ -26,9 +26,9 @@
 child
   object class=GtkCheckButton id=usesql92
 property name=label translatable=yesUse SQL92 naming 
constraints/property
-property name=visibleTrue/property
 property name=can_focusTrue/property
 property name=receives_defaultFalse/property
+property name=no_show_allTrue/property
 property name=use_underlineTrue/property
 property name=xalign0/property
 property name=draw_indicatorTrue/property
@@ -43,9 +43,9 @@
 child
   object class=GtkCheckButton id=append
 property name=label translatable=yesAppend the table 
alias name on SELECT statements/property
-property name=visibleTrue/property
 property name=can_focusTrue/property
 property name=receives_defaultFalse/property
+property name=no_show_allTrue/property
 property name=use_underlineTrue/property
 property name=xalign0/property
 property name=draw_indicatorTrue/property
@@ -60,9 +60,9 @@
 child
   object class=GtkCheckButton id=useas
 property name=label translatable=yesUse keyword AS 
before table alias names/property
-property name=visibleTrue/property
 property name=can_focusTrue/property
 property name=receives_defaultFalse/property
+property name=no_show_allTrue/property
 property name=use_underlineTrue/property
 property name=xalign0/property
 property name=draw_indicatorTrue/property
@@ -77,9 +77,9 @@
 child
   object class=GtkCheckButton id=useoj
 property name=label translatable=yesUse Outer Join 
syntax '{oj }'/property
-property name=visibleTrue/property
 property name=can_focusTrue/property
 property name=receives_defaultFalse/property
+property name=no_show_allTrue/property
 property name=use_underlineTrue/property
 property name=xalign0/property
 property name=draw_indicatorTrue/property
@@ -94,9 +94,9 @@
 child
   object class=GtkCheckButton id=ignoreprivs
 property name=label translatable=yesIgnore the 
privileges from the database driver/property
-property name=visibleTrue/property
 property name=can_focusTrue/property
 property name=receives_defaultFalse/property
+property name=no_show_allTrue/property
 property name=use_underlineTrue/property
 property name=xalign0/property
 property name=draw_indicatorTrue/property
@@ -111,9 +111,9 @@
 child
   object 

[Libreoffice-bugs] [Bug 87840] checkboxes for not-supported-by-driver advanced settings are present (but have no effect)

2015-01-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87840

--- Comment #20 from Commit Notification 
libreoffice-comm...@lists.freedesktop.org ---
Caolán McNamara committed a patch related to this issue.
It has been pushed to libreoffice-4-3:

http://cgit.freedesktop.org/libreoffice/core/commit/?id=db3ab19f6ca3252141f7e7f858fdde406a890cech=libreoffice-4-3

Resolves: fdo#87840 by default hide all feature checkboxes

It will be available in 4.3.6.

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 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 87840] checkboxes for not-supported-by-driver advanced settings are present (but have no effect)

2015-01-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87840

Commit Notification libreoffice-comm...@lists.freedesktop.org changed:

   What|Removed |Added

 Whiteboard| target:4.5.0 target:4.3.6  | target:4.5.0 target:4.3.6
   ||target:4.4.0.2

-- 
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 87840] checkboxes for not-supported-by-driver advanced settings are present (but have no effect)

2015-01-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87840

Commit Notification libreoffice-comm...@lists.freedesktop.org changed:

   What|Removed |Added

 Whiteboard| target:4.5.0   | target:4.5.0 target:4.3.6

-- 
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 87840] checkboxes for not-supported-by-driver advanced settings are present (but have no effect)

2015-01-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87840

--- Comment #21 from Commit Notification 
libreoffice-comm...@lists.freedesktop.org ---
Caolán McNamara committed a patch related to this issue.
It has been pushed to libreoffice-4-4:

http://cgit.freedesktop.org/libreoffice/core/commit/?id=92d5ca9aa6f585de51f7fcfdf756f3bdf91052dch=libreoffice-4-4

Resolves: fdo#87840 by default hide all feature checkboxes

It will be available in 4.4.0.2.

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 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 87612] UX: Fields in the Format-Columns dialog update incorrectly, leads to confusing/wrong values

2015-01-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87612

Caolán McNamara caol...@redhat.com changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|libreoffice-b...@lists.free |caol...@redhat.com
   |desktop.org |

-- 
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: removing crashrep

2015-01-07 Thread Miklos Vajna
On Tue, Jan 06, 2015 at 09:02:12PM +, Caolán McNamara caol...@redhat.com 
wrote:
 I propose removing
 crashrep (https://gerrit.libreoffice.org/#/c/13733/) on the basis that
 we've never used it. Any objections ?

No objections, if one ever writes the server part of it (I guess it
being missing is why it's not used), it can be still restored from git
history.


signature.asc
Description: Digital signature
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


  1   2   3   4   5   >