[Libreoffice-bugs] [Bug 93873] The typing speed is really slow

2015-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93873

--- Comment #7 from Beluga  ---
(In reply to f5d505f9 from comment #6)
> I can send one by e-mail, but as it is somewhat sensitive (it's my thesis) I
> can't upload it here.

https://wiki.documentfoundation.org/QA/Bugzilla/Sanitizing_Files_Before_Submission#Sanitize_file_text

-- 
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 90801] UI font in menubar is not affected by font substitution

2015-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90801

--- Comment #18 from Yury  ---
(In reply to Maxim Monastirsky from comment #17)
> (In reply to Yury from comment #15)
> > and is it working, actually?
> Please re-read my last comment. I explicitly said that it doesn't work. BTW
> I have a WIP commit locally that makes font substitution work again for UI.
> I also identified the exact commit that broke the menubar. Sadly I don't
> have more time to spend on it, but I can give code pointers to whoever wants
> to take this task.

First, thank you, guys, for helping. I've changed the setting and am already
more comfortable.

And I'd appreciate code pointers -- leading to the code doing the font face
substitution (like, on non-existent glyphs).

I have to have odd glyphs in my texts sometimes, and there is this silliness
with LO neither showing me the fact of substitution, nor allowing me to affect
its functionality. So -- on my unchanging setup -- I might get 'not-existing'
glyphs substituted sometimes (which is a quirk, actually), and sometimes I just
get substitutions of completely different family altogether.

I'm not filing the issue on this. Did this once, got some cold shoulder. 
I might get lucky with a hack, though.

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

2015-12-08 Thread Jean-Pierre Ledure
 wizards/source/access2base/Database.xba|4 ++--
 wizards/source/access2base/DoCmd.xba   |   21 +++--
 wizards/source/access2base/acConstants.xba |2 +-
 3 files changed, 18 insertions(+), 9 deletions(-)

New commits:
commit 7bc56a95aa1cbe37d50e693dbd420dcbcecae740
Author: Jean-Pierre Ledure 
Date:   Tue Dec 8 10:29:55 2015 +0100

Access2Base - Dynamic combo list in PromptFormat()

to refelect various list of output formats in DoCmd.OutputTo() action

Change-Id: Ibb95020efa2995cde168efbd516f9b1e49d832a3

diff --git a/wizards/source/access2base/Database.xba 
b/wizards/source/access2base/Database.xba
index c4a674c..8d524b6 100644
--- a/wizards/source/access2base/Database.xba
+++ b/wizards/source/access2base/Database.xba
@@ -608,7 +608,7 @@ Const cstThisSub = Database.OutputTo
If Not Utils._CheckArgument(UCase(pvOutputFormat), 3, vbString, 
Array( _
UCase(acFormatHTML), 
HTML _
, UCase(acFormatXLS), 
XLS _
-   , UCase(acFormatCALC), 
ODS _
+   , UCase(acFormatODS), 
ODS _
, UCase(acFormatTXT), 
TXT, CSV _
, )) _
Then Goto Exit_Function 
  A 2nd time to allow case unsensitivity
@@ -640,7 +640,7 @@ Dim sOutputFormat As String, iTemplate As Integer, 
iOutputFile As Integer, bOutp

Determine format and parameters
If pvOutputFormat =  Then
-   sOutputFormat = _PromptFormat()   Prompt 
user for format
+   sOutputFormat = _PromptFormat(Array(HTML, 
ODS, XLS, TXT))   
  Prompt user for format
If sOutputFormat =  Then Goto Exit_Function
If Not Utils._CheckArgument(UCase(sOutputFormat), 3, vbString, 
Array(UCase(acFormatHTML), HTML, )) _
Then Goto Exit_Function   
Today only value, later maybe Calc ?
diff --git a/wizards/source/access2base/DoCmd.xba 
b/wizards/source/access2base/DoCmd.xba
index 4af47fe..d4f5706 100644
--- a/wizards/source/access2base/DoCmd.xba
+++ b/wizards/source/access2base/DoCmd.xba
@@ -1214,7 +1214,7 @@ Public Function OutputTo(ByVal pvObjectType As Variant _
) As Boolean
 REM 
https://wiki.openoffice.org/wiki/Documentation/DevGuide/Spreadsheets/Filter_Options
 Supported:   acFormatPDF, acFormatODT, acFormatDOC, acFormatHTML 
for forms
- acFormatHTML, acFormatXLS, acFormatCALC, acFormatTXT
for tables and queries
+ acFormatHTML, acFormatXLS, acFormatODS, acFormatTXT 
for tables and queries
 
If _ErrorHandler() Then On Local Error Goto Error_Function
 Const cstThisSub = OutputTo
@@ -1230,7 +1230,7 @@ Const cstThisSub = OutputTo
If pvOutputFormat   Then
If Not Utils._CheckArgument(UCase(pvOutputFormat), 3, vbString, 
Array( _
UCase(acFormatPDF), UCase(acFormatODT), 
UCase(acFormatDOC), UCase(acFormatHTML) _
-   , UCase(acFormatXLS), UCase(acFormatCALC), 
UCase(acFormatTXT) _
+   , UCase(acFormatXLS), UCase(acFormatODS), 
UCase(acFormatTXT) _
, PDF, ODT, DOC, 
HTML, XLS, ODS, TXT, 
CSV,  _
)) Then Goto Exit_Function  
  A 2nd time to allow case unsensitivity
End If
@@ -1280,7 +1280,7 @@ Dim vWindow As Variant, sOutputFile As String, ofForm As 
Object, i As Integer, b
Determine format and parameters
 Dim sOutputFormat As String, sFilter As String, oFilterData As Object, oExport 
As Object, sSuffix As String
If pvOutputFormat =  Then
-   sOutputFormat = _PromptFormat()   Prompt 
user for format
+   sOutputFormat = _PromptFormat(Array(PDF, 
ODT, DOC, HTML))   
  Prompt user for format
If sOutputFormat =  Then Goto Exit_Function
Else
sOutputFormat = UCase(pvOutputFormat)
@@ -1787,7 +1787,7 @@ Const cstSemiColon = ;
sDirectory =  _getTempDirectoryURL()
If Right(sDirectory, 1)  / 
Then sDirectory = sDirectory  /
If pvOutputFormat =  Then
-   sOutputFormat = _PromptFormat() 
  Prompt user for format
+   sOutputFormat = 
_PromptFormat(Array(PDF, ODT, DOC, 
HTML)) Prompt user for format
If sOutputFormat =  Then 
Goto Exit_Function
   

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

2015-12-08 Thread Yousuf Philips
 sc/source/ui/src/hdrcont.src |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 14fb1d6421802be3b69ff50dcd9703c2596df4e3
Author: Yousuf Philips 
Date:   Mon Dec 7 19:06:08 2015 +0400

tdf#96202 Revert accelerator back to 'I'

Change-Id: Ie07d0b27c18a9cd66e6afd32163f773340967a6b
Reviewed-on: https://gerrit.libreoffice.org/20437
Tested-by: Jenkins 
Reviewed-by: Katarina Behrens 

diff --git a/sc/source/ui/src/hdrcont.src b/sc/source/ui/src/hdrcont.src
index 0fa3d1d..33209ba 100644
--- a/sc/source/ui/src/hdrcont.src
+++ b/sc/source/ui/src/hdrcont.src
@@ -64,7 +64,7 @@ Menu RID_POPUP_ROWHEADER
 {
 Identifier = FID_INS_ROWS_BEFORE ;
 HelpId = CMD_FID_INS_ROWS_BEFORE ;
-Text [ en-US ] = "Insert Rows A~bove" ;
+Text [ en-US ] = "~Insert Rows Above" ;
 };
 MenuItem
 {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 96253] UI: Wrong submenu label "Text Box and Shape"

2015-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96253

Jean-Baptiste Faure  changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 CC||jbfa...@libreoffice.org,
   ||libreoffice-ux-advise@lists
   ||.freedesktop.org
 Resolution|FIXED   |---

--- Comment #8 from Jean-Baptiste Faure  ---
I agree with comment #7 by Stanislav. "Text Frame and Shape" will say nothing
to users willing format other kind of object like formula. Please keep
consistency with other menus and modules.

Reopening and adding ux-advise ML for its opinion.

Additionally, please take care of translators when you play with menu and
button labels.

Best regards. JBF

-- 
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 96253] UI: Wrong submenu label "Text Box and Shape"

2015-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96253

Jean-Baptiste Faure  changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 CC||jbfa...@libreoffice.org,
   ||libreoffice-ux-advise@lists
   ||.freedesktop.org
 Resolution|FIXED   |---

--- Comment #8 from Jean-Baptiste Faure  ---
I agree with comment #7 by Stanislav. "Text Frame and Shape" will say nothing
to users willing format other kind of object like formula. Please keep
consistency with other menus and modules.

Reopening and adding ux-advise ML for its opinion.

Additionally, please take care of translators when you play with menu and
button labels.

Best regards. JBF

-- 
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 96332] New: Color codes does not update

2015-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96332

Bug ID: 96332
   Summary: Color codes does not update
   Product: LibreOffice
   Version: 5.0.2.2 release
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Chart
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: je...@bundsgaard.net

Created attachment 121133
  --> https://bugs.documentfoundation.org/attachment.cgi?id=121133=edit
A pie chart with the wrong color codes

When using an area to define colors used in a chart, the colors used in the
caption stays the same.
The colors in the captions should update according to the color codes.

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


[Libreoffice-commits] core.git: framework/inc framework/source include/vcl vcl/source

2015-12-08 Thread Samuel Mehrbrodt
 framework/inc/uielement/toolbarmanager.hxx|   13 --
 framework/source/uielement/toolbarmanager.cxx |  145 --
 include/vcl/commandinfoprovider.hxx   |4 
 include/vcl/toolbox.hxx   |   13 +-
 include/vcl/vclstatuslistener.hxx |5 
 vcl/source/helper/commandinfoprovider.cxx |   36 ++
 vcl/source/window/toolbox.cxx |   32 -
 vcl/source/window/toolbox2.cxx|   11 +
 8 files changed, 92 insertions(+), 167 deletions(-)

New commits:
commit ac97f32307feb488c86d6fa962258fe79320d31b
Author: Samuel Mehrbrodt 
Date:   Fri Dec 4 17:05:11 2015 +0100

Move icon rotation/flip handling from ToolbarManager to vcl's Toolbar

This enables rotatad/flipped icons in the Sidebar and other non-toolbar 
places (tdf#85767)

Change-Id: I034394ae6f9b8d91ef5a376a43eda587098f064e
Reviewed-on: https://gerrit.libreoffice.org/20403
Reviewed-by: Samuel Mehrbrodt 
Tested-by: Samuel Mehrbrodt 

diff --git a/framework/inc/uielement/toolbarmanager.hxx 
b/framework/inc/uielement/toolbarmanager.hxx
index 43d285b..f99c385 100644
--- a/framework/inc/uielement/toolbarmanager.hxx
+++ b/framework/inc/uielement/toolbarmanager.hxx
@@ -61,7 +61,6 @@ namespace framework
 
 typedef ::cppu::WeakImplHelper<
css::frame::XFrameActionListener,
-   css::frame::XStatusListener,
css::lang::XComponent,
css::ui::XUIConfigurationListener
 > ToolbarManager_Base;
@@ -80,9 +79,6 @@ class ToolBarManager : public ToolbarManager_Base
 // XFrameActionListener
 virtual void SAL_CALL frameAction( const css::frame::FrameActionEvent& 
Action ) throw ( css::uno::RuntimeException, std::exception ) override;
 
-// XStatusListener
-virtual void SAL_CALL statusChanged( const 
css::frame::FeatureStateEvent& Event ) throw ( css::uno::RuntimeException, 
std::exception ) override;
-
 // XEventListener
 virtual void SAL_CALL disposing( const css::lang::EventObject& Source 
) throw ( css::uno::RuntimeException, std::exception ) override;
 
@@ -145,8 +141,6 @@ class ToolBarManager : public ToolbarManager_Base
 void UpdateController( css::uno::Reference< 
css::frame::XToolbarController > xController);
 //end
 void AddFrameActionListener();
-void AddImageOrientationListener();
-void UpdateImageOrientation();
 void ImplClearPopupMenu( ToolBox *pToolBar );
 void RequestImages();
 ToolBoxItemBits ConvertStyleToToolboxItemBits( sal_Int32 nStyle );
@@ -167,11 +161,7 @@ class ToolBarManager : public ToolbarManager_Base
  m_bSmallSymbols : 1,
  m_bAddedToTaskPaneList : 1,
  m_bFrameActionRegistered : 1,
- m_bUpdateControllers : 1,
- m_bImageOrientationRegistered : 1,
- m_bImageMirrored : 1;
-
-long m_lImageRotation;
+ m_bUpdateControllers : 1;
 
 VclPtr  
m_pToolBar;
 
@@ -188,7 +178,6 @@ class ToolBarManager : public ToolbarManager_Base
 css::uno::Reference< css::frame::XUIControllerFactory >  
m_xToolbarControllerFactory;
 css::uno::Reference< css::ui::XImageManager >
m_xModuleImageManager;
 css::uno::Reference< css::ui::XImageManager >
m_xDocImageManager;
-css::uno::Reference< css::lang::XComponent > 
m_xImageOrientationListener;
 css::uno::Reference< css::ui::XUIConfigurationManager >  
m_xUICfgMgr;
 css::uno::Reference< css::ui::XUIConfigurationManager >  
m_xDocUICfgMgr;
 
diff --git a/framework/source/uielement/toolbarmanager.cxx 
b/framework/source/uielement/toolbarmanager.cxx
index 1a0abc6..25eda26 100644
--- a/framework/source/uielement/toolbarmanager.cxx
+++ b/framework/source/uielement/toolbarmanager.cxx
@@ -55,8 +55,6 @@
 #include 
 #include 
 #include 
-#include 
-#include 
 #include 
 #include 
 #include 
@@ -98,39 +96,6 @@ static const char HELPID_PREFIX_TESTTOOL[] = ".HelpId:";
 
 static const sal_uInt16 STARTID_CUSTOMIZE_POPUPMENU = 1000;
 
-class ImageOrientationListener : public svt::FrameStatusListener
-{
-public:
-ImageOrientationListener( const Reference< XStatusListener >& 
rReceiver,
-  const Reference< XComponentContext >& 
rxContext,
-  const Reference< XFrame >& rFrame );
-virtual ~ImageOrientationListener();
-
-virtual void SAL_CALL statusChanged( const 
css::frame::FeatureStateEvent& Event ) throw ( css::uno::RuntimeException, 
std::exception ) override;
-
-private:
-Reference< XStatusListener > m_xReceiver;
-};
-
-ImageOrientationListener::ImageOrientationListener(
-const Reference< XStatusListener >& rReceiver,
-const 

[Libreoffice-bugs] [Bug 96328] delay in appearance of text in dropdown menus and tooltips with OpenGL on

2015-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96328

tommy27  changed:

   What|Removed |Added

Summary|delay in appearance of text |delay in appearance of text
   |in dropdown menus and   |in dropdown menus and
   |tooltips|tooltips with OpenGL on

--- Comment #3 from tommy27  ---
the issue is related to OpenGL
if you turn it off from Tools/Options/View it works fine

-- 
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 96328] delay in appearance of text in dropdown menus and tooltips

2015-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96328

tommy27  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||ba...@quipo.it
Summary|Click Menu has a second |delay in appearance of text
   |gray menu with nothing  |in dropdown menus and
   ||tooltips
 Ever confirmed|0   |1

--- Comment #2 from tommy27  ---
it seems that there's a delay in painting the dropdown menus and tooltips
menu background appears first and text appears later

I confirm bug under Win8.1 x64 using LibO 5.2.0.0.alpha0+
Build ID: 51a5dfd783bfc1efc52a791aab4114039581252f
Threads 4; Ver: Windows 6.2; Render: GL; 

TinderBox: Win-x86@62-merge-TDF, Branch:MASTER, Time: 2015-12-04_10:49:33
Locale: it-IT (it_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-commits] core.git: filter/source

2015-12-08 Thread Xisco Fauli
 filter/source/svg/svgreader.cxx |   18 --
 1 file changed, 8 insertions(+), 10 deletions(-)

New commits:
commit f268e6f1fdd741ebdb5256ed9c72643846472332
Author: Xisco Fauli 
Date:   Tue Dec 1 18:59:26 2015 +0100

SVG: Revert previous commits for tdf#95332 and tdf#95733

I was wrong for thinking that there was a problem when
elements inside def elements were not written.
Actually, Cristina's commit
( 5e27d23d7e665cc0aeac8fc9ea2236bf8bc088ff ) was correct
as elements inside defs don't have to be written at least
they're refered by  element, which isn't supported in Libo
right now. Working on implementing support for use element

Change-Id: Id0b8d8e9b27887f75cc961881daeb82089b2e62b
Reviewed-on: https://gerrit.libreoffice.org/20333
Tested-by: Jenkins 
Reviewed-by: Katarina Behrens 

diff --git a/filter/source/svg/svgreader.cxx b/filter/source/svg/svgreader.cxx
index 730b42c..b9737f1 100644
--- a/filter/source/svg/svgreader.cxx
+++ b/filter/source/svg/svgreader.cxx
@@ -88,22 +88,20 @@ template void visitElements(Func& rFunc,
 // notify children processing
 rFunc.push();
 
+if (eCaller == SHAPE_WRITER && rElem->getTagName() == "defs")
+return;
+
 // recurse over children
 uno::Reference xChildren( rElem->getChildNodes() );
 const sal_Int32 nNumNodes( xChildren->getLength() );
 for( sal_Int32 i=0; iitem(i)->getNodeType() == 
xml::dom::NodeType_ELEMENT_NODE ){
-//tdf#65864
-//TODO: support clipPath
-if( !(eCaller == SHAPE_WRITER &&
-rElem->getTagName() == "clipPath")){
-visitElements( rFunc,
-   uno::Reference(
-   xChildren->item(i),
-   uno::UNO_QUERY_THROW),
-   eCaller );
-}
+visitElements( rFunc,
+uno::Reference(
+xChildren->item(i),
+uno::UNO_QUERY_THROW),
+eCaller );
 }
 }
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 96202] UI: Same acceleration-key in context menu

2015-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96202

Yousuf (Jay) Philips  changed:

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution|--- |FIXED

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


[Libreoffice-bugs] [Bug 90801] UI font in menubar is not affected by font substitution

2015-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90801

--- Comment #19 from Maxim Monastirsky  ---
(In reply to Yury from comment #18)
> leading to the code doing the font face
> substitution (like, on non-existent glyphs).
For this you should better ask on the dev. mailing list. I'm sure there are
people there that familiar with this stuff.

-- 
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 96288] Formatting Section read-only even not marked as such and contents on separate pages

2015-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96288

Beluga  changed:

   What|Removed |Added

 CC||todven...@suomi24.fi

--- Comment #2 from Beluga  ---
Where can I see the locks?

-- 
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 65138] [META] Sidebar feature related issues

2015-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=65138
Bug 65138 depends on bug 85767, which changed state.

Bug 85767 Summary: SIDEBAR: Left and right alignment buttons need to be swapped 
in RTL
https://bugs.documentfoundation.org/show_bug.cgi?id=85767

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 90801] UI font in menubar is not affected by font substitution

2015-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90801

Maxim Monastirsky  changed:

   What|Removed |Added

 CC||momonas...@gmail.com

--- Comment #17 from Maxim Monastirsky  ---
(In reply to Yury from comment #15)
> and is it working, actually?
Please re-read my last comment. I explicitly said that it doesn't work. BTW I
have a WIP commit locally that makes font substitution work again for UI. I
also identified the exact commit that broke the menubar. Sadly I don't have
more time to spend on it, but I can give code pointers to whoever wants to take
this task.

-- 
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 96147] Writer Document will not open

2015-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96147

Maxim Monastirsky  changed:

   What|Removed |Added

 CC||polm...@gmail.com

--- Comment #3 from Maxim Monastirsky  ---
*** Bug 96323 has been marked as a duplicate of this bug. ***

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


[Libreoffice-bugs] [Bug 96323] Writer corrupts file on save

2015-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96323

Maxim Monastirsky  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||momonas...@gmail.com
 Resolution|--- |DUPLICATE

--- Comment #1 from Maxim Monastirsky  ---


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

-- 
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 95792] Lock missing when saving a file (save as) on some webdav server

2015-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95792

Giuseppe Castagno (aka beppec56)  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |giuseppe.castagno@acca-esse
   |desktop.org |.eu

-- 
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: compilerplugins/clang

2015-12-08 Thread Stephan Bergmann
 compilerplugins/clang/vclwidgets.cxx |   21 +
 1 file changed, 1 insertion(+), 20 deletions(-)

New commits:
commit b0e427d8aac1a54681a2a6d0acbd1b54394961b9
Author: Stephan Bergmann 
Date:   Tue Dec 8 09:44:34 2015 +0100

Remove apparently unnecessary checks

...they don't cause any change in behavior, likely they predated Noel's 
figuring
out the template part of containsWindowSubclass

Change-Id: I0d5b6bd7f228acef9a0ce1c85fe98fbab89bd7a8

diff --git a/compilerplugins/clang/vclwidgets.cxx 
b/compilerplugins/clang/vclwidgets.cxx
index 0385ce0..89f80a5 100644
--- a/compilerplugins/clang/vclwidgets.cxx
+++ b/compilerplugins/clang/vclwidgets.cxx
@@ -246,26 +246,7 @@ bool VCLWidgets::VisitVarDecl(const VarDecl * pVarDecl) {
 return true;
 }
 
-if (   !startsWith(pVarDecl->getType().getAsString(), 
"std::vector")
-&& !startsWith(pVarDecl->getType().getAsString(), 
"std::map")
-&& !startsWith(pVarDecl->getType().getAsString(), 
"std::map")
-&& !startsWith(pVarDecl->getType().getAsString(), "::std::vector")
-&& !startsWith(pVarDecl->getType().getAsString(), 
"::std::vector")
-&& !startsWith(pVarDecl->getType().getAsString(), "::std::mem_fun1_t<")
-&& !startsWith(pVarDecl->getType().getAsString(), 
"::comphelper::mem_fun1_t<")
-&& !startsWith(pVarDecl->getType().getAsString(), 
"::std::pair")
-&& !startsWith(pVarDecl->getType().getAsString(), 
"::std::pair")
-&& !startsWith(pVarDecl->getType().getAsString(), 
"std::list")
-&& !startsWith(pVarDecl->getType().getAsString(), 
"::std::map")
-&& !startsWith(pVarDecl->getType().getAsString(), "::std::map")
-&& !startsWith(pVarDecl->getType().getAsString(), 
"::std::multimap")
-&& !startsWith(pVarDecl->getType().getAsString(), 
"::std::multimap")
-&& !startsWith(pVarDecl->getType().getAsString(), 
"::dbp::OMultiInstanceAutoRegistration< ::dbp::OUnoAutoPilot<")
-&& !startsWith(pVarDecl->getType().getAsString(), 
"SwSidebarWin_iterator")
-&& !startsWith(pVarDecl->getType().getAsString(), 
"functor_vector_type")
-&& !startsWith(pVarDecl->getType().getAsString(), "const 
functor_vector_type")
-&& containsWindowSubclass(pVarDecl->getType()))
-{
+if (containsWindowSubclass(pVarDecl->getType())) {
 report(
 DiagnosticsEngine::Warning,
 "OutputDevice subclass %0 should be wrapped in VclPtr",
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 93873] The typing speed is really slow

2015-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93873

f5d50...@opayq.com changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #6 from f5d50...@opayq.com ---
I can send one by e-mail, but as it is somewhat sensitive (it's my thesis) I
can't upload it here.

I have also a few additionnal observations. The bug persists when updating to
Windows 10. 

Also, the word counter (next to the page counter) often tends to give an
erroneous word count when the typing lag appears. I remember that some time ago
there were problems with word count; maybe this is another effect thereof.

-- 
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 43808] [META] Most Annoying RTL related issues

2015-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=43808
Bug 43808 depends on bug 85767, which changed state.

Bug 85767 Summary: SIDEBAR: Left and right alignment buttons need to be swapped 
in RTL
https://bugs.documentfoundation.org/show_bug.cgi?id=85767

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 78756] FILEOPEN: DOC importer ignores table's "Wrap Around" property

2015-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=78756

--- Comment #17 from Timur  ---
Similar problem with attachment 121124 from Bug 96325.

-- 
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 96147] FILESAVE: duplicate fo:background-color attributes

2015-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96147

Maxim Monastirsky  changed:

   What|Removed |Added

   Priority|medium  |highest
 CC||momonas...@gmail.com
Version|unspecified |5.0.1.2 release
Summary|Writer Document will not|FILESAVE: duplicate
   |open|fo:background-color
   ||attributes
   Severity|normal  |critical

-- 
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 96332] Color codes does not update

2015-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96332

--- Comment #1 from Jeppe Bundsgaard  ---
Created attachment 121134
  --> https://bugs.documentfoundation.org/attachment.cgi?id=121134=edit
A document showing the problem

-- 
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 94691] [META] OpenGL bugs

2015-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94691

tommy27  changed:

   What|Removed |Added

 Depends on||96328

--- Comment #7 from tommy27  ---
added Bug 96328 - delay in appearance of text in dropdown menus and tooltips
with OpenGL on

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


[Libreoffice-bugs] [Bug 96328] delay in appearance of text in dropdown menus and tooltips with OpenGL on

2015-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96328

tommy27  changed:

   What|Removed |Added

 Blocks||94691

-- 
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 96325] Fileopen DOC table cell border spacing to contents reported incorrectly

2015-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96325

Timur  changed:

   What|Removed |Added

 CC||gti...@gmail.com

--- Comment #2 from Timur  ---
This file seems to be incorrectly displayed (from table: Näyttelyluokat /
utställningsklasser) since LO 4.1 due to Bug 78756.
For what you reported, it's not clear what exactly you do (select which
cells?), what you get and what you expect. 
Also, did you search for already reported bugs? Like mine Bug 94801, for
example.

-- 
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 96202] UI: Same acceleration-key in context menu

2015-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96202

--- Comment #4 from Commit Notification 
 ---
Yousuf Philips committed a patch related to this issue.
It has been pushed to "master":

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

tdf#96202 Revert accelerator back to 'I'

It will be available in 5.2.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 96202] UI: Same acceleration-key in context menu

2015-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96202

Commit Notification  changed:

   What|Removed |Added

 Whiteboard|| target:5.2.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 95213] second level numbering turns bold in .DOCX export

2015-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95213

Timur  changed:

   What|Removed |Added

Version|4.4.2.2 release |4.4.0.0.alpha0+ Master
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=83
   ||465

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


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

2015-12-08 Thread Mike Kaganski
 writerfilter/qa/cppunittests/misc/misc.cxx|   20 
 writerfilter/source/dmapper/DomainMapper_Impl.cxx |   18 +-
 2 files changed, 29 insertions(+), 9 deletions(-)

New commits:
commit e4d5b5efac71ed2a08dcd09877078a6cf6bde0d2
Author: Mike Kaganski 
Date:   Mon Dec 7 23:00:32 2015 +1000

tdf#54584: adjust skip-slash condition, allow unterminated quote

Experimenting with different non-alpha characters in front of
field, most of them aren't allowed and result in field not
recognized by MS Word: #$%&'()*+,-./:;<>?@[]^_`{|}~
Besides, if backslash "\" is followed by another backslash or
space, it is illegal, too. This patch takes care of it.

On the other side, not closing quotes is allowed by MS Word.
This patch allows this, too.

The patch does not handle another allowed field code "=2+2".
This should be done in another commit.

Change-Id: I842fe59c026b68977e61a7ae0b5495c02803ad83
Reviewed-on: https://gerrit.libreoffice.org/20435
Tested-by: Jenkins 
Reviewed-by: Miklos Vajna 

diff --git a/writerfilter/qa/cppunittests/misc/misc.cxx 
b/writerfilter/qa/cppunittests/misc/misc.cxx
index 49e5e1b..522dc19 100644
--- a/writerfilter/qa/cppunittests/misc/misc.cxx
+++ b/writerfilter/qa/cppunittests/misc/misc.cxx
@@ -160,6 +160,26 @@ void WriterfilterMiscTest::testFieldParameters()
 CPPUNIT_ASSERT_EQUAL(OUString("foobar"), boost::get<2>(result)[1]);
 CPPUNIT_ASSERT_EQUAL(OUString("\\A"), boost::get<2>(result)[2]);
 CPPUNIT_ASSERT_EQUAL(OUString(), boost::get<2>(result)[3]);
+
+for (auto prefix : {"#", "$", "%", "&", "'", "(", ")", "*", "+", ",",
+"-", ".", "/", ":", ";", "<", ">", "?", "@", "[",
+"]", "^", "_", "`", "{", "|", "}", "~"})
+{
+OUString test(OUString::createFromAscii(prefix) + OUString("PAGE"));
+result = lcl_SplitFieldCommand(test + OUString(" "));
+CPPUNIT_ASSERT_EQUAL(test, boost::get<0>(result));
+}
+result = lcl_SplitFieldCommand("\\PAGE ");
+CPPUNIT_ASSERT_EQUAL(OUString("PAGE"), boost::get<0>(result));
+result = lcl_SplitFieldCommand("\\ PAGE ");
+CPPUNIT_ASSERT_EQUAL(OUString("\\ "), boost::get<0>(result));
+CPPUNIT_ASSERT_EQUAL(OUString("PAGE"), boost::get<1>(result)[0]);
+result = lcl_SplitFieldCommand("PAGE ");
+CPPUNIT_ASSERT_EQUAL(OUString("\\PAGE"), boost::get<0>(result));
+result = lcl_SplitFieldCommand("\"PAGE\" ");
+CPPUNIT_ASSERT_EQUAL(OUString("PAGE"), boost::get<0>(result));
+result = lcl_SplitFieldCommand("\"PAGE ");
+CPPUNIT_ASSERT_EQUAL(OUString("PAGE "), boost::get<0>(result));
 }
 
 CPPUNIT_TEST_SUITE_REGISTRATION(WriterfilterMiscTest);
diff --git a/writerfilter/source/dmapper/DomainMapper_Impl.cxx 
b/writerfilter/source/dmapper/DomainMapper_Impl.cxx
index 8e079ea..ec4304b 100644
--- a/writerfilter/source/dmapper/DomainMapper_Impl.cxx
+++ b/writerfilter/source/dmapper/DomainMapper_Impl.cxx
@@ -2274,15 +2274,12 @@ static OUString lcl_ExtractToken(OUString const& 
rCommand,
 assert(rIndex == rCommand.getLength());
 if (bQuoted)
 {
+// MS Word allows this, so just emit a debug message
 SAL_INFO("writerfilter.dmapper",
 "field argument with unterminated quote");
-return OUString();
-}
-else
-{
-rHaveToken = !token.isEmpty();
-return token.makeStringAndClear();
 }
+rHaveToken = !token.isEmpty();
+return token.makeStringAndClear();
 }
 
 boost::tuple
@@ -2292,10 +2289,13 @@ lcl_SplitFieldCommand(const OUString& rCommand)
 std::vector arguments;
 std::vector switches;
 sal_Int32 nStartIndex(0);
-// tdf#54584: Field may be prepended by a backslash - skip it
+// tdf#54584: Field may be prepended by a backslash
+// This is not an escapement, but already escaped literal "\"
+// MS Word allows this, so just skip it
 if ((rCommand.getLength() >= nStartIndex + 2) &&
-(rCommand[nStartIndex] == '\\') &&
-(rCommand[nStartIndex + 1] != '\\'))
+(rCommand[nStartIndex] == L'\\') &&
+(rCommand[nStartIndex + 1] != L'\\') &&
+(rCommand[nStartIndex + 1] != L' '))
 {
 ++nStartIndex;
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 95616] autocorrect replacement table has transient black background when resized

2015-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95616

--- Comment #2 from tommy27  ---
still reproducible using LibO 5.2.0.0.alpha0+
Build ID: 51a5dfd783bfc1efc52a791aab4114039581252f
Threads 4; Ver: Windows 6.2; Render: default; 
TinderBox: Win-x86@62-merge-TDF, Branch:MASTER, Time: 2015-12-04_10:49:33
Locale: it-IT (it_IT)

issue is present even if OpenGL is off

-- 
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 - sw/inc sw/source

2015-12-08 Thread Miklos Vajna
 sw/inc/hintids.hxx   |1 
 sw/source/filter/basflt/fltshell.cxx |   14 ++-
 sw/source/filter/ww8/ww8par.hxx  |1 
 sw/source/filter/ww8/ww8par5.cxx |   12 ++
 sw/source/filter/ww8/ww8par6.cxx |3 
 sw/source/filter/ww8/ww8scan.cxx |  141 ++-
 sw/source/filter/ww8/ww8scan.hxx |   39 -
 7 files changed, 204 insertions(+), 7 deletions(-)

New commits:
commit ab94f468a2b2b1b9e2a621e33f9175171caec252
Author: Miklos Vajna 
Date:   Tue Dec 8 09:26:00 2015 +0100

DOC import: handle smart tags via RES_FLTR_RDFMARK

The idea is that a subset of the smart tags will be mapped to RDF
statements, as done already in the DOCX importer.

Change-Id: I46e0dad37a3905fe591cba0f710156f27be05ff4

diff --git a/sw/source/filter/ww8/ww8par.hxx b/sw/source/filter/ww8/ww8par.hxx
index 0d2fb99..0b18e4b 100644
--- a/sw/source/filter/ww8/ww8par.hxx
+++ b/sw/source/filter/ww8/ww8par.hxx
@@ -1701,6 +1701,7 @@ public: // really private, but can only be done public
 long Read_Book(WW8PLCFManResult*);
 long Read_And(WW8PLCFManResult* pRes);
 long Read_AtnBook(WW8PLCFManResult*);
+long Read_FactoidBook(WW8PLCFManResult*);
 
 // attributes
 
diff --git a/sw/source/filter/ww8/ww8par5.cxx b/sw/source/filter/ww8/ww8par5.cxx
index 77960c9..18747c3 100644
--- a/sw/source/filter/ww8/ww8par5.cxx
+++ b/sw/source/filter/ww8/ww8par5.cxx
@@ -242,6 +242,18 @@ long SwWW8ImplReader::Read_AtnBook(WW8PLCFManResult*)
 return 0;
 }
 
+long SwWW8ImplReader::Read_FactoidBook(WW8PLCFManResult*)
+{
+if (WW8PLCFx_FactoidBook* pFactoidBook = m_pPlcxMan->GetFactoidBook())
+{
+if (pFactoidBook->getIsEnd())
+m_pReffedStck->SetAttr(*m_pPaM->GetPoint(), RES_FLTR_RDFMARK, 
true, pFactoidBook->getHandle());
+else
+m_pReffedStck->NewAttr(*m_pPaM->GetPoint(), 
CntUInt16Item(RES_FLTR_RDFMARK, pFactoidBook->getHandle()));
+}
+return 0;
+}
+
 //general help methods to separate parameters
 
 /// translate FieldParameter names into the system character set and
diff --git a/sw/source/filter/ww8/ww8par6.cxx b/sw/source/filter/ww8/ww8par6.cxx
index 79ecd45..2a9da61 100644
--- a/sw/source/filter/ww8/ww8par6.cxx
+++ b/sw/source/filter/ww8/ww8par6.cxx
@@ -5033,7 +5033,8 @@ long SwWW8ImplReader::ImportExtSprm(WW8PLCFManResult* 
pRes)
 /* 2 (258) */   ::Read_Field,  // Feld
 /* 3 (259) */   ::Read_Book,   // Bookmark
 /* 4 (260) */   ::Read_And, // Annotation
-/* 5 (261) */   ::Read_AtnBook // Annotationmark
+/* 5 (261) */   ::Read_AtnBook, // Annotationmark
+/* 6 (262) */   ::Read_FactoidBook // Smart tag 
bookmark
 };
 
 if( pRes->nSprmId < 280 )
commit f30ea8d91ca8e2f938632755d3bdfbd2e181e006
Author: Miklos Vajna 
Date:   Tue Dec 8 09:14:11 2015 +0100

DOC import: tokenize PlcfBkfFactoid and PlcfBklFactoid

So that later SwWW8ImplReader can read these smart tag position
structures in a way similar to bookmarks.

Change-Id: I0e1dc30d48bbb6641a82d777f6569f59dd922e16

diff --git a/sw/source/filter/ww8/ww8scan.cxx b/sw/source/filter/ww8/ww8scan.cxx
index 491adec..aac1f2c 100644
--- a/sw/source/filter/ww8/ww8scan.cxx
+++ b/sw/source/filter/ww8/ww8scan.cxx
@@ -1703,6 +1703,7 @@ WW8ScannerBase::WW8ScannerBase( SvStream* pSt, SvStream* 
pTableSt,
 
 pBook = new WW8PLCFx_Book(pTableSt, *pWwFib);
 pAtnBook = new WW8PLCFx_AtnBook(pTableSt, *pWwFib);
+pFactoidBook = new WW8PLCFx_FactoidBook(pTableSt, *pWwFib);
 }
 
 WW8ScannerBase::~WW8ScannerBase()
@@ -4339,6 +4340,138 @@ bool WW8PLCFx_AtnBook::getIsEnd() const
 return m_bIsEnd;
 }
 
+WW8PLCFx_FactoidBook::WW8PLCFx_FactoidBook(SvStream* pTableSt, const WW8Fib& 
rFib)
+: WW8PLCFx(rFib.GetFIBVersion(), /*bSprm=*/false),
+m_bIsEnd(false)
+{
+if (!rFib.fcPlcfBkfFactoid || !rFib.lcbPlcfBkfFactoid || 
!rFib.fcPlcfBklFactoid || !rFib.lcbPlcfBklFactoid)
+{
+m_pBook[0] = m_pBook[1] = nullptr;
+m_nIMax = 0;
+}
+else
+{
+m_pBook[0] = new WW8PLCFspecial(pTableSt, rFib.fcPlcfBkfFactoid, 
rFib.lcbPlcfBkfFactoid, 6);
+m_pBook[1] = new WW8PLCFspecial(pTableSt, rFib.fcPlcfBklFactoid, 
rFib.lcbPlcfBklFactoid, 4);
+
+m_nIMax = m_pBook[0]->GetIMax();
+if (m_pBook[1]->GetIMax() < m_nIMax)
+m_nIMax = m_pBook[1]->GetIMax();
+}
+}
+
+WW8PLCFx_FactoidBook::~WW8PLCFx_FactoidBook()
+{
+delete m_pBook[1];
+delete m_pBook[0];
+}
+
+sal_uInt32 WW8PLCFx_FactoidBook::GetIdx() const
+{
+return m_nIMax ? m_pBook[0]->GetIdx() : 0;
+}
+
+void WW8PLCFx_FactoidBook::SetIdx(sal_uLong nI)
+{
+if (m_nIMax)
+m_pBook[0]->SetIdx(nI);
+}
+
+sal_uLong WW8PLCFx_FactoidBook::GetIdx2() const
+{
+if (m_nIMax)
+return m_pBook[1]->GetIdx() | (m_bIsEnd ? 0x8000 : 0);
+else
+return 0;
+}
+
+void 

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

2015-12-08 Thread Miklos Vajna
 writerfilter/qa/cppunittests/misc/misc.cxx |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 572adcaf3828e32bff1a562e07186ef0c8f465a1
Author: Miklos Vajna 
Date:   Tue Dec 8 10:08:34 2015 +0100

writerfilter: loplugin:stringconstant

Change-Id: Idb0865f4d0db6c4eda33810ab2ef4cff49bc85d1

diff --git a/writerfilter/qa/cppunittests/misc/misc.cxx 
b/writerfilter/qa/cppunittests/misc/misc.cxx
index 522dc19..3d5cef4 100644
--- a/writerfilter/qa/cppunittests/misc/misc.cxx
+++ b/writerfilter/qa/cppunittests/misc/misc.cxx
@@ -165,8 +165,8 @@ void WriterfilterMiscTest::testFieldParameters()
 "-", ".", "/", ":", ";", "<", ">", "?", "@", "[",
 "]", "^", "_", "`", "{", "|", "}", "~"})
 {
-OUString test(OUString::createFromAscii(prefix) + OUString("PAGE"));
-result = lcl_SplitFieldCommand(test + OUString(" "));
+OUString test(OUString::createFromAscii(prefix) + "PAGE");
+result = lcl_SplitFieldCommand(test + " ");
 CPPUNIT_ASSERT_EQUAL(test, boost::get<0>(result));
 }
 result = lcl_SplitFieldCommand("\\PAGE ");
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 96329] Copy words in All Gtk Components cause LibreOffice suspended some seconds

2015-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96329

yanjing...@gmail.com changed:

   What|Removed |Added

Summary|Copy words in About Dialog  |Copy words in All Gtk
   |cause LibreOffice suspended |Components cause
   |some seconds|LibreOffice suspended some
   ||seconds

-- 
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 96147] FILESAVE: duplicate fo:background-color attributes

2015-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96147

--- Comment #4 from Maxim Monastirsky  ---
dstrzele/Paolo: Any chance of getting a version of the document one step before
the corruption happens, so we can reproduce the buggy saving? This will help us
a lot in fixing this. Thanks.

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


[Libreoffice-bugs] [Bug 96292] Accelerator for insert document is identical to that for insert field

2015-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96292

Beluga  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||todven...@suomi24.fi
Version|unspecified |5.0.3.2 release
Summary|Keyboard shortcut for   |Accelerator for insert
   |insert document is  |document is identical to
   |identical to that for   |that for insert field
   |insert field|
 Ever confirmed|0   |1
   Severity|normal  |minor

--- Comment #2 from Beluga  ---
Confirmed.

In 5.1 there is also Footnote and endnote with accelerator d.

Win 7 Pro 64-bit, Version: 5.0.3.2 (x64)
Build ID: e5f16313668ac592c1bfb310f4390624e3dbfb75
Locale: fi-FI (fi_FI)

Version: 5.1.0.0.beta2 (x64)
Build ID: 53054959a12edc6510f51b94ddc9b73d27aedaf6
Threads 4; Ver: Windows 6.1; Render: default;
Locale: fi-FI (fi_FI)

-- 
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 96327] Start Center: "F" accelerator for "Remote Files" conflicts with "alt+F" accelerator for "File" menu

2015-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96327

Beluga  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||todven...@suomi24.fi
 Ever confirmed|0   |1
   Severity|normal  |minor

--- Comment #2 from Beluga  ---
(In reply to tommy27 from comment #1)
> tested in recent LibO 5.2.0.0 alpha
> 
> I see no conflict since if you hit "F" it opens the remote files window
> while if you hit "alt+F" it opens the File menu
> 
> moreover I see that "e" is already assigned to Templates
> 
> am i missing something?

Both F and alt-F open Remote files for me.

Win 7 Pro 64-bit Version: 5.2.0.0.alpha0+
Build ID: 81fa5340191baf8687f9c82f1f414f5afc86b529
Threads 4; Ver: Windows 6.1; Render: default; 
TinderBox: Win-x86@62-merge-TDF, Branch:MASTER, Time: 2015-12-03_21:19:19
Locale: fi-FI (fi_FI)

-- 
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 96302] Wrong field variables and selections shown in Fields dialog after creating a new document with the dialog still open

2015-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96302

Beluga  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||todven...@suomi24.fi
Summary|Wrong field variables and   |Wrong field variables and
   |selections shown in Fields  |selections shown in Fields
   |dialog. |dialog after creating a new
   ||document with the dialog
   ||still open
 Ever confirmed|0   |1

--- Comment #1 from Beluga  ---
I see this on Ubuntu, but not on Win. On Windows the insert field dialog does
not have the user field v1. On Ubuntu v1 is carried over to the new document.

However, this is not true for me: "9. Note that v1 is still selected even if
Name/value shows v2."
After creating a v2 field with the Apply button, it inserts v2 to the new
document.

On Ubuntu there was some strange reaction when opening a new document with the
dialog open. It did some weird window focus switching ritual, perhaps 10 focus
switches, I thought it would crash.

Win 7 Pro 64-bit, Version: 5.0.3.2 (x64)
Build ID: e5f16313668ac592c1bfb310f4390624e3dbfb75
Locale: fi-FI (fi_FI)

Ubuntu 15.10 64-bit 
Version: 5.0.3.2
Build ID: 1:5.0.3~rc2-0ubuntu1
Locale: en-US (en_US.UTF-8)

-- 
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 96301] Failed document recovery and intermittent crashes.

2015-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96301

--- Comment #6 from Jan Skarvall  ---
Maybe there is information that is not stored in the document itself that is
wrong, as the prompt to recover this particular document shows when opening any
other odt document?

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


[Libreoffice-bugs] [Bug 96302] Wrong field variables and selections shown in Fields dialog after creating a new document with the dialog still open

2015-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96302

--- Comment #5 from Beluga  ---
(In reply to Jan Skarvall from comment #4)
> So what is the semantic behind highlighting anything in the Select frame?

What do you mean by this?

Again: v1 for me is not selected. Please upgrade to LibO version 5.

-- 
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 93873] The typing speed is really slow

2015-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93873

--- Comment #9 from f5d50...@opayq.com ---
It's an odt file

-- 
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 96336] Format > Page dialog and selection doubtably different for Writer/Calc/Draw

2015-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96336

Wolfgang Jäger  changed:

   What|Removed |Added

 CC||j...@psilosoph.de

--- Comment #1 from Wolfgang Jäger  ---
Missed to mention that the alternative to 'Import Graphic...' in Writer was
'File', 'Browse' in Draw and in Calc.

-- 
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 96302] Wrong field variables and selections shown in Fields dialog after creating a new document with the dialog still open

2015-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96302

--- Comment #10 from Jan Skarvall  ---
Yes, but as I said, an Ubuntu release is not a static thing. A fault report may
be valid or not depending on upgrades that you made to the particular Ubuntu
version.

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


[Libreoffice-commits] core.git: Branch 'libreoffice-5-1' - officecfg/registry sd/uiconfig

2015-12-08 Thread Yousuf Philips
 officecfg/registry/data/org/openoffice/Office/UI/ImpressWindowState.xcu |2 
-
 sd/uiconfig/sdraw/toolbar/standardbar.xml   |   13 
--
 sd/uiconfig/sdraw/toolbar/toolbar.xml   |2 
-
 sd/uiconfig/simpress/toolbar/toolbar.xml|6 
++--
 4 files changed, 11 insertions(+), 12 deletions(-)

New commits:
commit ece6ec1571db2b3d8782884b5fc594d6c5412c4c
Author: Yousuf Philips 
Date:   Mon Nov 30 13:37:34 2015 +0400

tdf#84909 Improvements to impress and draw toolbars

Change-Id: I50f1ee5fc0ff9a53532954dfc4939a7d5f18f575
Reviewed-on: https://gerrit.libreoffice.org/20280
Tested-by: Jenkins 
Reviewed-by: Yousuf Philips 
(cherry picked from commit 19c7af844f12436a48be2ef263ede8f0f27d257d)
Reviewed-on: https://gerrit.libreoffice.org/20445
Reviewed-by: Samuel Mehrbrodt 
Tested-by: Samuel Mehrbrodt 

diff --git 
a/officecfg/registry/data/org/openoffice/Office/UI/ImpressWindowState.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/ImpressWindowState.xcu
index a45bac8..c23ad34 100644
--- a/officecfg/registry/data/org/openoffice/Office/UI/ImpressWindowState.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/UI/ImpressWindowState.xcu
@@ -359,7 +359,7 @@
   
   
 
-  1,0
+  0,1
 
 
   true
diff --git a/sd/uiconfig/sdraw/toolbar/standardbar.xml 
b/sd/uiconfig/sdraw/toolbar/standardbar.xml
index 90e21d6..e9a5fdc 100644
--- a/sd/uiconfig/sdraw/toolbar/standardbar.xml
+++ b/sd/uiconfig/sdraw/toolbar/standardbar.xml
@@ -44,18 +44,17 @@
  
  
  
- 
- 
- 
  
  
+ 
+ 
+ 
  
  
  
  
- 
  
- 
+ 
  
  
  
@@ -64,11 +63,11 @@
  
  
  
- 
+ 
  
  
  
- 
+ 
  
  
  
diff --git a/sd/uiconfig/sdraw/toolbar/toolbar.xml 
b/sd/uiconfig/sdraw/toolbar/toolbar.xml
index 7b1d7f8..3c7127f 100644
--- a/sd/uiconfig/sdraw/toolbar/toolbar.xml
+++ b/sd/uiconfig/sdraw/toolbar/toolbar.xml
@@ -19,7 +19,7 @@
 -->
 http://openoffice.org/2001/toolbar; 
xmlns:xlink="http://www.w3.org/1999/xlink; toolbar:id="toolbar">
  
- 
+ 
  
  
  
diff --git a/sd/uiconfig/simpress/toolbar/toolbar.xml 
b/sd/uiconfig/simpress/toolbar/toolbar.xml
index aec25d6..6cb4f49 100644
--- a/sd/uiconfig/simpress/toolbar/toolbar.xml
+++ b/sd/uiconfig/simpress/toolbar/toolbar.xml
@@ -30,14 +30,14 @@
  
  
  
+ 
+ 
+ 
  
  
  
  
  
- 
- 
- 
  
  
  
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: vcl/inc vcl/Library_vcl.mk vcl/osx vcl/source

2015-12-08 Thread Tor Lillqvist
 vcl/Library_vcl.mk  |4 
 vcl/inc/OpenGLWrapper.hxx   |   20 
 vcl/osx/OpenGLWrapper.cxx   |   27 ---
 vcl/source/opengl/OpenGLContext.cxx |   13 +++--
 4 files changed, 7 insertions(+), 57 deletions(-)

New commits:
commit dff18c2be9c72aa05940982f506804eb41d3d79a
Author: Tor Lillqvist 
Date:   Tue Dec 8 13:58:27 2015 +0200

Bin the pointless and thin OS X specific wrapper namespace 'OpenGLWrapper'

Besides, the namespace was confusingly named the same as the public
cross-platform OpenGLWrapper struct (which is effectively just a
namespace, too).

Change-Id: I9a5255ec446dcdb5086d92a742f29327d0780685

diff --git a/vcl/Library_vcl.mk b/vcl/Library_vcl.mk
index 87570d6..c7eee7f 100644
--- a/vcl/Library_vcl.mk
+++ b/vcl/Library_vcl.mk
@@ -106,10 +106,6 @@ $(eval $(call gb_Library_add_cxxflags,vcl,\
 $(gb_OBJCXXFLAGS) \
 ))
 
-$(eval $(call gb_Library_add_exception_objects,vcl,\
-vcl/osx/OpenGLWrapper \
-))
-
 endif
 
 ifeq ($(ENABLE_JAVA),TRUE)
diff --git a/vcl/inc/OpenGLWrapper.hxx b/vcl/inc/OpenGLWrapper.hxx
deleted file mode 100644
index 9134801..000
--- a/vcl/inc/OpenGLWrapper.hxx
+++ /dev/null
@@ -1,20 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- */
-
-#include "AppKit/NSOpenGLView.h"
-#include "AppKit/NSOpenGL.h"
-
-namespace OpenGLWrapper
-{
-void swapBuffers(NSOpenGLView* pView);
-void makeCurrent(NSOpenGLView* pView);
-void resetCurrent();
-}
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/vcl/osx/OpenGLWrapper.cxx b/vcl/osx/OpenGLWrapper.cxx
deleted file mode 100644
index fc008f4..000
--- a/vcl/osx/OpenGLWrapper.cxx
+++ /dev/null
@@ -1,27 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- */
-
-#include "OpenGLWrapper.hxx"
-
-void OpenGLWrapper::swapBuffers(NSOpenGLView* pView)
-{
-[[pView openGLContext] flushBuffer];
-}
-
-void OpenGLWrapper::makeCurrent(NSOpenGLView* pView)
-{
-[[pView openGLContext] makeCurrentContext];
-}
-
-void OpenGLWrapper::resetCurrent()
-{
-[NSOpenGLContext clearCurrentContext];
-}
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/vcl/source/opengl/OpenGLContext.cxx 
b/vcl/source/opengl/OpenGLContext.cxx
index 4a68ab8..8c5db0f 100644
--- a/vcl/source/opengl/OpenGLContext.cxx
+++ b/vcl/source/opengl/OpenGLContext.cxx
@@ -20,7 +20,8 @@
 
 #if defined(MACOSX)
 #include 
-#include "OpenGLWrapper.hxx"
+#include 
+#include 
 #include 
 #endif
 
@@ -986,7 +987,7 @@ bool OpenGLContext::ImplInit()
 
 VCL_GL_INFO("OpenGLContext::ImplInitstart");
 NSOpenGLView* pView = getOpenGLView();
-OpenGLWrapper::makeCurrent(pView);
+[[pView openGLContext] makeCurrentContext];
 
 bool bRet = InitGLEW();
 InitGLEWDebugging();
@@ -1252,7 +1253,7 @@ void OpenGLContext::reset()
 m_aGLWin.hRC = 0;
 }
 #elif defined( MACOSX )
-OpenGLWrapper::resetCurrent();
+[NSOpenGLContext clearCurrentContext];
 #elif defined( IOS ) || defined( ANDROID ) || defined(LIBO_HEADLESS)
 // nothing
 #elif defined( UNX )
@@ -1408,7 +1409,7 @@ void OpenGLContext::makeCurrent()
 }
 #elif defined( MACOSX )
 NSOpenGLView* pView = getOpenGLView();
-OpenGLWrapper::makeCurrent(pView);
+[[pView openGLContext] makeCurrentContext];
 #elif defined( IOS ) || defined( ANDROID ) || defined(LIBO_HEADLESS)
 // nothing
 #elif defined( UNX )
@@ -1462,7 +1463,7 @@ void OpenGLContext::resetCurrent()
 wglMakeCurrent(NULL, NULL);
 #elif defined( MACOSX )
 (void) this; // loplugin:staticmethods
-OpenGLWrapper::resetCurrent();
+[NSOpenGLContext clearCurrentContext];
 #elif defined( IOS ) || defined( ANDROID ) || defined(LIBO_HEADLESS)
 // nothing
 #elif defined( UNX )
@@ -1479,7 +1480,7 @@ void OpenGLContext::swapBuffers()
 SwapBuffers(m_aGLWin.hDC);
 #elif defined( MACOSX )
 NSOpenGLView* pView = getOpenGLView();
-OpenGLWrapper::swapBuffers(pView);
+[[pView openGLContext] flushBuffer];
 #elif defined( IOS ) || defined( ANDROID ) || defined(LIBO_HEADLESS)
 // nothing
 #elif defined( UNX )
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] voting.git: vote/include

2015-12-08 Thread Cor Nouws
 vote/include/step2-choose.php |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 2855ba0fcbe0c30777ea65cd4bbac273c8e7f718
Author: Cor Nouws 
Date:   Tue Dec 8 12:41:11 2015 +0100

clarification about number of votes

Change-Id: I1a25c2b3b261c4c5c8851ddb8f44a9edb4ed48b8
Reviewed-on: https://gerrit.libreoffice.org/20465
Reviewed-by: Cor Nouws 
Reviewed-by: Andras Timar 
Tested-by: Andras Timar 

diff --git a/vote/include/step2-choose.php b/vote/include/step2-choose.php
index d8ab84c..5cbf78b 100644
--- a/vote/include/step2-choose.php
+++ b/vote/include/step2-choose.php
@@ -14,7 +14,7 @@ function step2_do () {
   $result .= "Once you are happy with the order, submit your vote. You will 
have ";
   $result .= "the chance to review and confirm your ballot on the next 
page.";
 
-  $result .= "You can vote for as few or as many candidates as you choose. 
";
+  $result .= "You can vote for up to 10 candidates of your choice, with no 
restrictions. ";
   $result .= "Your vote will be counted for your first choice candidate as ";
   $result .= "long as the candidate is still in the race, and when the 
candidate is eliminated, your ";
   $result .= "vote will transfer to the next preference candidate still in the 
";
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 96253] UI: Wrong submenu label "Text Box and Shape"

2015-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96253

--- Comment #9 from Yousuf (Jay) Philips  ---
(In reply to Stanislav Horacek from comment #7)
> As user I don't care how Writer treats objects, I just want to find commands
> in menu in a consistent way. And now I insert my formula by Insert ->
> Object, format it by Format -> Text Box and Shape in Writer and by Format ->
> Object in Calc - simply confusing.

No in Writer you format objects with Format > Frame and Object > Properties,
which previously was Format > Frame/Object.

-- 
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 96253] UI: Wrong submenu label "Text Box and Shape"

2015-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96253

--- Comment #9 from Yousuf (Jay) Philips  ---
(In reply to Stanislav Horacek from comment #7)
> As user I don't care how Writer treats objects, I just want to find commands
> in menu in a consistent way. And now I insert my formula by Insert ->
> Object, format it by Format -> Text Box and Shape in Writer and by Format ->
> Object in Calc - simply confusing.

No in Writer you format objects with Format > Frame and Object > Properties,
which previously was Format > Frame/Object.

-- 
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 96303] SEH Exception: ACCESS VIOLATION

2015-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96303

Beluga  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||todven...@suomi24.fi
 Ever confirmed|0   |1

--- Comment #1 from Beluga  ---
Please attach the slideshow.

You can also try getting a backtrace (especially, if you don't want to share
the slideshow):
https://wiki.documentfoundation.org/How_to_get_a_backtrace_with_WinDbg

Set to NEEDINFO.
Change back to UNCONFIRMED after you have provided the document/information.

-- 
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 96334] New: Calc the crashes in the call dialog settings page in Windows

2015-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96334

Bug ID: 96334
   Summary: Calc the crashes in the call dialog settings page in
Windows
   Product: LibreOffice
   Version: 5.0.3.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: cda2...@yandex.ru

Calc the crashes in the call dialog settings page in Windows error text:

Сигнатура проблемы:
  Имя события проблемы:BEX64
  Имя приложения:soffice.bin
  Версия приложения:5.0.3.2
  Отметка времени приложения:562d78e0
  Имя модуля с ошибкой:mergedlo.dll
  Версия модуля с ошибкой:5.0.3.2
  Отметка времени модуля с ошибкой:562d7889
  Смещение исключения:029bbd90
  Код исключения:c409
  Данные исключения:
  Версия ОС:6.1.7601.2.1.0.18.10
  Код языка:1049
  Дополнительные сведения 1:5c35
  Дополнительные сведения 2:5c35802ad1c04e63bac4ab62e01ec1d5
  Дополнительные сведения 3:6602
  Дополнительные сведения 4:660220853ac592dfb26ec821e5045bdb

-- 
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 96302] Wrong field variables and selections shown in Fields dialog after creating a new document with the dialog still open

2015-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96302

--- Comment #2 from Jan Skarvall  ---
Have a look again at step 9. v2 gets inserted, but in the selection view, v1 is
still selected. It bit misleading.

It may have been this "error" that made me think that the Fields dialog got
"out of sync", as I mention in
https://bugs.documentfoundation.org/show_bug.cgi?id=96301. That was before I
understood that a new Fields dialog pops up for ever open document.

Have you considered sharing a single Fields dialog?

-- 
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 96327] Start Center: "F" accelerator for "Remote Files" conflicts with "alt+F" accelerator for "File" menu

2015-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96327

--- Comment #3 from tommy27  ---
you are right... probably I did some mistakes before but now I see the bug too
under Win8.1 x64

-- 
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-5-1' - officecfg/registry sw/uiconfig

2015-12-08 Thread Yousuf Philips
 officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu   |5 
-
 officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu|8 

 officecfg/registry/data/org/openoffice/Office/UI/WriterWindowState.xcu |4 
++--
 sw/uiconfig/swriter/toolbar/drawingobjectbar.xml   |4 

 sw/uiconfig/swriter/toolbar/numobjectbar.xml   |   10 
+-
 sw/uiconfig/swriter/toolbar/oleobjectbar.xml   |2 
+-
 sw/uiconfig/swriter/toolbar/standardbar.xml|2 
+-
 sw/uiconfig/swriter/toolbar/tableobjectbar.xml |4 
++--
 sw/uiconfig/swriter/toolbar/textobjectbar.xml  |6 
--
 9 files changed, 31 insertions(+), 14 deletions(-)

New commits:
commit cbff71864a02674e9b7eba756aa3f881e39b5c27
Author: Yousuf Philips 
Date:   Mon Nov 30 12:23:37 2015 +0400

tdf#81475 Improvements to writer's toolbars

Hide entries in the standard and table toolbars and add useful entries into 
the formatting, object, and bullets toolbars. Also make bullets and table 
toolbars appear on a different line than the drawing toolbar.

Change-Id: I307e8f289fc5b1d8c7dd074989ffc0500697073f
Reviewed-on: https://gerrit.libreoffice.org/20279
Reviewed-by: Yousuf Philips 
Tested-by: Yousuf Philips 
(cherry picked from commit bd7f0b0ba3391f3049cb3f2d7b70493a05362316)
Reviewed-on: https://gerrit.libreoffice.org/20443
Reviewed-by: Samuel Mehrbrodt 
Tested-by: Samuel Mehrbrodt 

diff --git 
a/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu
index 09151c8..392aa6f 100644
--- a/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu
@@ -2170,6 +2170,9 @@
   
   
 
+  Edit Points
+
+
   Poi~nts
 
 
@@ -2691,7 +2694,7 @@
   
   
 
-  ~New Style from Selection...
+  ~New Style...
 
 
   1
diff --git 
a/officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu
index d53d549..8aa8fee 100644
--- a/officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu
@@ -1052,7 +1052,7 @@
   
   
 
-  Align Top
+  Align Top to Anchor
 
 
   1
@@ -1060,7 +1060,7 @@
   
   
 
-  Align Bottom
+  Align Bottom to Anchor
 
 
   1
@@ -1068,7 +1068,7 @@
   
   
 
-  Align Vertical Center
+  Align Middle to Anchor
 
 
   1
@@ -1261,7 +1261,7 @@
   
   
 
-  Optimize
+  Optimize Size
 
 
   1
diff --git 
a/officecfg/registry/data/org/openoffice/Office/UI/WriterWindowState.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/WriterWindowState.xcu
index d710e22..add0851 100644
--- a/officecfg/registry/data/org/openoffice/Office/UI/WriterWindowState.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/UI/WriterWindowState.xcu
@@ -99,7 +99,7 @@
   
   
 
-  0,0
+  0,1
 
 
   1
@@ -119,7 +119,7 @@
   
   
 
-  0,0
+  0,2
 
 
   1
diff --git a/sw/uiconfig/swriter/toolbar/drawingobjectbar.xml 
b/sw/uiconfig/swriter/toolbar/drawingobjectbar.xml
index 308c8b1..2c3ba2a 100644
--- a/sw/uiconfig/swriter/toolbar/drawingobjectbar.xml
+++ b/sw/uiconfig/swriter/toolbar/drawingobjectbar.xml
@@ -51,8 +51,12 @@
  
  
  
+ 
+ 
  
  
+ 
+ 
  
  
  
diff --git a/sw/uiconfig/swriter/toolbar/numobjectbar.xml 
b/sw/uiconfig/swriter/toolbar/numobjectbar.xml
index f5b49ee..13119f1 100644
--- a/sw/uiconfig/swriter/toolbar/numobjectbar.xml
+++ b/sw/uiconfig/swriter/toolbar/numobjectbar.xml
@@ -31,5 +31,13 @@
  
  
  
- 
+ 
+ 
+ 
+ 
+ 
+ 
+ 
+ 
+ 
 
diff --git a/sw/uiconfig/swriter/toolbar/oleobjectbar.xml 
b/sw/uiconfig/swriter/toolbar/oleobjectbar.xml
index dc1cce5..941ba4f 100644
--- a/sw/uiconfig/swriter/toolbar/oleobjectbar.xml
+++ b/sw/uiconfig/swriter/toolbar/oleobjectbar.xml
@@ -47,5 +47,5 @@
  
  
  
- 
+ 
 
diff --git a/sw/uiconfig/swriter/toolbar/standardbar.xml 
b/sw/uiconfig/swriter/toolbar/standardbar.xml
index 533ef8d..6d36cc0 100644
--- a/sw/uiconfig/swriter/toolbar/standardbar.xml
+++ b/sw/uiconfig/swriter/toolbar/standardbar.xml
@@ -61,7 +61,7 @@
  
  
  
- 
+ 
  
  
  
diff --git a/sw/uiconfig/swriter/toolbar/tableobjectbar.xml 

[Libreoffice-bugs] [Bug 96297] Formatting checkboxes bigger than on the DOC and PDF versions causing incorrect layout

2015-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96297

Beluga  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||todven...@suomi24.fi
Version|unspecified |3.5.0 release
 Ever confirmed|0   |1

--- Comment #4 from Beluga  ---
Confirmed.

Win 7 Pro 64-bit Version: 5.2.0.0.alpha0+
Build ID: 81fa5340191baf8687f9c82f1f414f5afc86b529
Threads 4; Ver: Windows 6.1; Render: default; 
TinderBox: Win-x86@62-merge-TDF, Branch:MASTER, Time: 2015-12-03_21:19:19
Locale: fi-FI (fi_FI)

LibreOffice 3.5.0rc3 
Build ID: 7e68ba2-a744ebf-1f241b7-c506db1-7d53735

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


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

2015-12-08 Thread Miklos Vajna
 sw/source/filter/ww8/ww8par.hxx  |3 ---
 sw/source/filter/ww8/ww8scan.cxx |6 ++
 sw/source/filter/ww8/ww8scan.hxx |6 +-
 3 files changed, 11 insertions(+), 4 deletions(-)

New commits:
commit b088fc60b42646cf55fde3c2dba4e8cd48753ee6
Author: Miklos Vajna 
Date:   Tue Dec 8 11:00:30 2015 +0100

DOC import: tokenize smart-tag data

Change-Id: I43e52c2c982ed553a53be9839feff591c99fdfca

diff --git a/sw/source/filter/ww8/ww8scan.cxx b/sw/source/filter/ww8/ww8scan.cxx
index aac1f2c..1a39642 100644
--- a/sw/source/filter/ww8/ww8scan.cxx
+++ b/sw/source/filter/ww8/ww8scan.cxx
@@ -5860,6 +5860,12 @@ WW8Fib::WW8Fib(SvStream& rSt, sal_uInt8 nWantedVersion, 
sal_uInt32 nOffset)
 rSt.ReadInt32(fcPlcfBklFactoid);
 rSt.ReadUInt32(lcbPlcfBklFactoid);
 }
+if (cfclcb > 137)
+{
+rSt.Seek(0x44a);
+rSt.ReadInt32(fcFactoidData);
+rSt.ReadUInt32(lcbFactoidData);
+}
 
 if( 0 != rSt.GetError() )
 nFibError = ERR_SWG_READ_ERROR;
diff --git a/sw/source/filter/ww8/ww8scan.hxx b/sw/source/filter/ww8/ww8scan.hxx
index 07f613d..7a599be 100644
--- a/sw/source/filter/ww8/ww8scan.hxx
+++ b/sw/source/filter/ww8/ww8scan.hxx
@@ -1465,8 +1465,12 @@ public:
 WW8_FC fcPlcfBklFactoid;
 /// 0x446 smart-tag bookmark ends length.
 sal_uInt32 lcbPlcfBklFactoid;
+/// 0x44a smart tag data offset.
+WW8_FC fcFactoidData;
+/// 0x44e smart tag data length.
+sal_uInt32 lcbFactoidData;
 
-// 0x44a - 0x4d4 == ignore
+// 0x452 - 0x4d4 == ignore
 
 WW8_FC fcHplxsdr;//bizarrely, word xp seems to require this set to 
shows dates from AtrdExtra
 sal_uInt32 lcbHplxsdr;
commit 012f33f0cc08e19e6635a39f135ee79a96d6f3f9
Author: Miklos Vajna 
Date:   Tue Dec 8 10:27:56 2015 +0100

SwWW8ImplReader: unused members

Leftover from commit 0ec0ec267986644084baaa5bda5ba917dc5744df (i#93570
DOC import: handle commented text ranges via RES_FLTR_ANNOTATIONMARK,
2014-12-30).

Change-Id: Ifc2547ccb6bc91687ad61896b72367320210a837

diff --git a/sw/source/filter/ww8/ww8par.hxx b/sw/source/filter/ww8/ww8par.hxx
index 0b18e4b..98669e3 100644
--- a/sw/source/filter/ww8/ww8par.hxx
+++ b/sw/source/filter/ww8/ww8par.hxx
@@ -1250,9 +1250,6 @@ private:
 SwMSDffManager* m_pMSDffManager;
 
 std::vector* m_pAtnNames;
-std::shared_ptr< std::map > m_pAtnIndexes;
-std::shared_ptr m_pAtnStarts;
-std::shared_ptr m_pAtnEnds;
 
 sw::util::AuthorInfos m_aAuthorInfos;
 OUString m_sBaseURL;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 96276] Formatting paragraph line spacing proportinal 115% instead of Single

2015-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96276

Timur  changed:

   What|Removed |Added

Version|5.0.3.2 release |4.3.1.2 release

--- Comment #3 from Timur  ---
4.3 has different behavior, but this spacing is wrong since 4.3.1.

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


[Libreoffice-bugs] [Bug 96301] Failed document recovery and intermittent crashes.

2015-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96301

Beluga  changed:

   What|Removed |Added

 CC||todven...@suomi24.fi

--- Comment #5 from Beluga  ---
Not reproduced. Killed LibO while the document was open. Recovered ok without
any weird stuff.

Maybe you could try LibO 5.
http://www.webupd8.org/2015/08/install-libreoffice-50-in-ubuntu-or.html

Win 7 Pro 64-bit, Version: 5.0.3.2 (x64)
Build ID: e5f16313668ac592c1bfb310f4390624e3dbfb75
Locale: fi-FI (fi_FI)

Ubuntu 15.10 64-bit 
Version: 5.0.3.2
Build ID: 1:5.0.3~rc2-0ubuntu1
Locale: en-US (en_US.UTF-8)

-- 
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 96333] Menus open in the wrong place with RTL interface under gtk3

2015-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96333

Maxim Monastirsky  changed:

   What|Removed |Added

 Whiteboard||bibisected

-- 
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 76995] MAILMERGE: Wrong record Number in Mailing

2015-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=76995

--- Comment #19 from ClDc  ---
Version: 5.1.0.0.beta2+
Build ID: 52ac1a717b1869cb7d2ee710f50a15e216ced76c
Threads 8; Ver: Windows 6.2; Render: GL; 

TinderBox: Win-x86@62-merge-TDF, Branch:libreoffice-5-1, Time:
2015-12-06_22:28:00
Locale: fr-FR (fr_FR)

Same behaviour than discribed in previous comment and attached results.

- results for  individual odt,  single pdf, single odt are correct
- results for  individual pdf are not correct, all the files contains the data
of the first record in the data base.

-- 
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 96302] Wrong field variables and selections shown in Fields dialog after creating a new document with the dialog still open

2015-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96302

--- Comment #8 from Jan Skarvall  ---
OK.Thanks for your time!

So, you agree that what I reported indeed are problems with the 4.2.8.2 version
and that the solution to the step 9 issue is to upgrade to Lib0 5, and that
there is not yet a solution on the step 6 issue for Ubuntu.

There is no option to indicate the particular Linux port as OS when classifying
the the bug report :-(. Should it be added as a keyword? Including Ubuntu
version? I don't know. Ubuntu versions changes content.

-- 
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 93873] The typing speed is really slow

2015-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93873

--- Comment #8 from f5d50...@opayq.com ---
Created attachment 121137
  --> https://bugs.documentfoundation.org/attachment.cgi?id=121137=edit
sanitized doc in which the slow typing appears

-- 
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 81475] Meta: enhancing Writer's standard and formatting toolbars

2015-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=81475

Commit Notification  changed:

   What|Removed |Added

 Whiteboard|target:4.4.0 target:5.0.0   |target:4.4.0 target:5.0.0
   |target:4.4.0.0.beta2|target:4.4.0.0.beta2
   |target:4.4.0.2 target:5.1.0 |target:4.4.0.2 target:5.1.0
   |target:5.0.0.0.beta2|target:5.0.0.0.beta2
   |target:5.2.0|target:5.2.0 target:5.1.0.1

-- 
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 81475] Meta: enhancing Writer's standard and formatting toolbars

2015-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=81475

--- Comment #63 from Commit Notification 
 ---
Yousuf Philips committed a patch related to this issue.
It has been pushed to "libreoffice-5-1":

http://cgit.freedesktop.org/libreoffice/core/commit/?id=cbff71864a02674e9b7eba756aa3f881e39b5c27=libreoffice-5-1

tdf#81475 Improvements to writer's toolbars

It will be available in 5.1.0.1.

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-ux-advise] [Bug 81475] Meta: enhancing Writer's standard and formatting toolbars

2015-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=81475

--- Comment #63 from Commit Notification 
 ---
Yousuf Philips committed a patch related to this issue.
It has been pushed to "libreoffice-5-1":

http://cgit.freedesktop.org/libreoffice/core/commit/?id=cbff71864a02674e9b7eba756aa3f881e39b5c27=libreoffice-5-1

tdf#81475 Improvements to writer's toolbars

It will be available in 5.1.0.1.

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-ux-advise mailing list
Libreoffice-ux-advise@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise


[Libreoffice-bugs] [Bug 81475] Meta: enhancing Writer's standard and formatting toolbars

2015-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=81475

Commit Notification  changed:

   What|Removed |Added

 Whiteboard|target:4.4.0 target:5.0.0   |target:4.4.0 target:5.0.0
   |target:4.4.0.0.beta2|target:4.4.0.0.beta2
   |target:4.4.0.2 target:5.1.0 |target:4.4.0.2 target:5.1.0
   |target:5.0.0.0.beta2|target:5.0.0.0.beta2
   |target:5.2.0|target:5.2.0 target:5.1.0.1

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


[Libreoffice-bugs] [Bug 96042] [HELP UI] tab index in help browser does not show pages

2015-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96042

--- Comment #14 from Jan Holesovsky  ---
Jean-Baptiste: As it is in the helpcompiler, I suspect you need to do some kind
of make clean in the help first, incremental build will not help.

-- 
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] mso-dumper.git: msodumper/docrecord.py

2015-12-08 Thread Miklos Vajna
 msodumper/docrecord.py |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 972adfbe7e3d860a88622c67f075ce2e63c941b2
Author: Miklos Vajna 
Date:   Tue Dec 8 13:49:57 2015 +0100

docrecord: typo

diff --git a/msodumper/docrecord.py b/msodumper/docrecord.py
index 5f8dc21..d8aef44 100644
--- a/msodumper/docrecord.py
+++ b/msodumper/docrecord.py
@@ -4139,7 +4139,7 @@ class PBString(DOCDirStream):
 else:
 print '<%s type="PBString" index="%s">' % (self.name, self.index)
 buf = self.readuInt16()
-self.printAndSet("cch", buf & 0x7fff)  # bits 0..15
+self.printAndSet("cch", buf & 0x7fff)  # bits 1..15
 self.printAndSet("fAnsiString", self.getBit(buf, 15))
 
 bytes = []
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2015-12-08 Thread Stephan Bergmann
 sfx2/source/sidebar/ControllerItem.cxx |1 +
 1 file changed, 1 insertion(+)

New commits:
commit de7018f755af0b2372c0e261f53d57de6cf77c38
Author: Stephan Bergmann 
Date:   Tue Dec 8 11:47:52 2015 +0100

Missing delete

Change-Id: I8ba75fcd2f98a49fe9d620af6b248f32911d7fe8

diff --git a/sfx2/source/sidebar/ControllerItem.cxx 
b/sfx2/source/sidebar/ControllerItem.cxx
index 5ee79cc..ed4fa3b 100644
--- a/sfx2/source/sidebar/ControllerItem.cxx
+++ b/sfx2/source/sidebar/ControllerItem.cxx
@@ -167,6 +167,7 @@ void ControllerItem::RequestUpdate()
 SfxPoolItem* pState = nullptr;
 const SfxItemState eState (GetBindings().QueryState(GetId(), pState));
 mrItemUpdateReceiver.NotifyItemUpdate(GetId(), eState, pState, 
IsEnabled(eState));
+delete pState;
 }
 
 void ControllerItem::NotifyFrameContextChange()
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 96302] Wrong field variables and selections shown in Fields dialog after creating a new document with the dialog still open

2015-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96302

--- Comment #3 from Beluga  ---
(In reply to Jan Skarvall from comment #2)
> Have a look again at step 9. v2 gets inserted, but in the selection view, v1
> is still selected. It bit misleading.

Not for me.

-- 
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 96302] Wrong field variables and selections shown in Fields dialog after creating a new document with the dialog still open

2015-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96302

--- Comment #4 from Jan Skarvall  ---
So what is the semantic behind highlighting anything in the Select frame?

-- 
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 96307] Formatting DOC incorrect frame positioning

2015-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96307

Beluga  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||todven...@suomi24.fi
Version|unspecified |4.3.0.4 release
 Ever confirmed|0   |1

--- Comment #3 from Beluga  ---
Confirmed.

Win 7 Pro 64-bit Version: 5.2.0.0.alpha0+
Build ID: 81fa5340191baf8687f9c82f1f414f5afc86b529
Threads 4; Ver: Windows 6.1; Render: default; 
TinderBox: Win-x86@62-merge-TDF, Branch:MASTER, Time: 2015-12-03_21:19:19
Locale: fi-FI (fi_FI)

4.3.0.1

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


[Libreoffice-bugs] [Bug 96302] Wrong field variables and selections shown in Fields dialog after creating a new document with the dialog still open

2015-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96302

--- Comment #7 from Beluga  ---
(In reply to Jan Skarvall from comment #6)
> With the semantics I mean: How would you describe what the highlighting
> means to a user? I think it will be tough to describe it if the highlighting
> does not follow what is seen in the Name and Value boxes.

But this is apparently the case only in versions prior to 5.

The remaining problem is that the variable from the older document is carried
over to the new, which is seen on Linux.

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


[Libreoffice-bugs] [Bug 96327] Start Center: "F" accelerator for "Remote Files" conflicts with "alt+F" accelerator for "File" menu

2015-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96327

Yousuf (Jay) Philips  changed:

   What|Removed |Added

 CC||momonas...@gmail.com

--- Comment #4 from Yousuf (Jay) Philips  ---
(In reply to V Stuart Foote from comment #0)
> The "F" mnemonic accelerator chosen for the new "Remote _File" feature on
> the StartCenter conflicts with the +F shortcut on the main menu.

Its a bug in the start center that Alt+F is opening remote files.

> Suggest better UX if the accelerator in the StartCenter UI configuration
> file is changed to "E", i.e. to "R_emote File" in the startcenter.ui file.

Like tommy mentioned, E is taken by T_emplates and the only letter in 'Remote
Files' that isnt used in the menu bar and other buttons in 'S'. But similar to
the discussion before between the Tools menu and Templates, i dont see a
problem with the menu bar and buttons using the same accelerators as the menu
bar is only accessible with Alt.

-- 
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 96042] [HELP UI] tab index in help browser does not show pages

2015-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96042

--- Comment #16 from Jan Holesovsky  ---
Jean-Baptiste: If it is a different problem & the original one is fixed, let's
please close this bug, and file a separate one.  Thank you for testing! :-)

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


[Libreoffice-commits] core.git: qadevOOo/runner

2015-12-08 Thread Stephan Bergmann
 qadevOOo/runner/util/ValueComparer.java |9 +++--
 1 file changed, 3 insertions(+), 6 deletions(-)

New commits:
commit 01d2fccec17091d000906c41ef5fbc4fd31aeec8
Author: Stephan Bergmann 
Date:   Tue Dec 8 14:24:25 2015 +0100

These compare* calls shall most likely update result

...instead of being removed, a9824e8e05bddbf8ec417c7e5447914dd22cb8e5
"cid#1326591, cid#1326590 useless call"

Change-Id: Ia71abff8fb821cb4904794e1f9cbeb320e17c629

diff --git a/qadevOOo/runner/util/ValueComparer.java 
b/qadevOOo/runner/util/ValueComparer.java
index 4d54d14..bf783f4 100644
--- a/qadevOOo/runner/util/ValueComparer.java
+++ b/qadevOOo/runner/util/ValueComparer.java
@@ -239,13 +239,10 @@ public class ValueComparer {
 result = true;
 
 else if(XInterface.class.isAssignableFrom(op1.getClass()) && 
XInterface.class.isAssignableFrom(op2.getClass()))
-{
-// ignore
-}
+result = compareInterfaces((XInterface)op1, (XInterface)op2);
+
 else if(Enum.class.isAssignableFrom(op1.getClass()) && 
Enum.class.isAssignableFrom(op2.getClass()))
-{
-// ignore
-}
+result = compareEnums((Enum)op1, (Enum)op2);
 
 else if(op1.getClass() == String.class && op2.getClass() == 
String.class) // is it a String ?
 result = ((String)op1).equals(op2);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 91682] FILEOPEN: Empty Selection List (Tools>Validation). Lost on OOXML round trip

2015-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91682

Cor Nouws  changed:

   What|Removed |Added

Summary|FILEOPEN: Empty Selection   |FILEOPEN: Empty Selection
   |List (Toolas>Validation).   |List (Tools>Validation).
   |Lost on OOXML round trip|Lost on OOXML round trip

-- 
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 96042] [HELP UI] tab index in help browser does not show pages

2015-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96042

--- Comment #10 from Commit Notification 
 ---
Jan Holesovsky committed a patch related to this issue.
It has been pushed to "master":

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

tdf#96042: 'std::string::find("something") == 0' means "startsWith()".

It will be available in 5.2.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 96042] [HELP UI] tab index in help browser does not show pages

2015-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96042

Jan Holesovsky  changed:

   What|Removed |Added

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

--- Comment #11 from Jan Holesovsky  ---
I believe the commit from comment 10 should fix this.  Please check - and if
not, reopen the bug.

Stuart: Thanks a lot for the bibisect, helped a lot :-)

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


[Libreoffice-bugs] [Bug 80430] [META] LOCALHELP: Features x Documentation gap

2015-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=80430
Bug 80430 depends on bug 96042, which changed state.

Bug 96042 Summary: [HELP UI] tab index in help browser does not show pages
https://bugs.documentfoundation.org/show_bug.cgi?id=96042

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 96336] New: Format > Page dialog and selection doubtably different for Writer/Calc/Draw

2015-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96336

Bug ID: 96336
   Summary: Format > Page dialog and selection doubtably different
for Writer/Calc/Draw
   Product: LibreOffice
   Version: 5.1.0.0.beta1
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: j...@psilosoph.de

If there is not a stringent reason to have it the way it is, the naming of
properties (groups of) should be the same for documents of the three components
wherever applicable.
In the  > Format > Page dialog we have presently 'Area' in Writer and
'Background' in Calc and in Draw. 
In addition there are different options/settings offered. In specific in Writer
importable graphics are exclusively listed as 'Bitmap' despite the fact that
other grahic formats also are accepted when imported. 
In addition in Writer the choice of a specific graphic is done via 'Import
Graphic...' (For what reason the triple dots?) while in Calc and Draw we find
'Graphic'.
There were related topics in fora. This one is an example:
https://ask.libreoffice.org/en/question/45775/

-- 
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 84909] Meta: Enhancing Impress/Draw toolbars and context menu

2015-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84909

--- Comment #30 from Commit Notification 
 ---
Yousuf Philips committed a patch related to this issue.
It has been pushed to "libreoffice-5-1":

http://cgit.freedesktop.org/libreoffice/core/commit/?id=ece6ec1571db2b3d8782884b5fc594d6c5412c4c=libreoffice-5-1

tdf#84909 Improvements to impress and draw toolbars

It will be available in 5.1.0.1.

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 84909] Meta: Enhancing Impress/Draw toolbars and context menu

2015-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84909

Commit Notification  changed:

   What|Removed |Added

 Whiteboard|target:4.5.0 target:4.4.0.2 |target:4.5.0 target:4.4.0.2
   |target:5.1.0 target:5.0.0.2 |target:5.1.0 target:5.0.0.2
   |target:5.0.0.3 target:5.2.0 |target:5.0.0.3 target:5.2.0
   ||target:5.1.0.1

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


[Libreoffice-bugs] [Bug 91363] AUTOCORRECTION: unable to stop correction of fractions

2015-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91363

AaronPeterson  changed:

   What|Removed |Added

 CC||myusualnickn...@gmail.com

--- Comment #5 from AaronPeterson  ---
Created attachment 121140
  --> https://bugs.documentfoundation.org/attachment.cgi?id=121140=edit
The option to turn off replacement table

me too.

This misfeature is controlled by a checkbox in the auto completion, and it can
be disabled, but it should be disabled by default.

-- 
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 96304] Formatting RTF and DOC, Table properties, spacing to contents incorrect

2015-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96304

Beluga  changed:

   What|Removed |Added

 CC||todven...@suomi24.fi

--- Comment #3 from Beluga  ---
I see the 0,19cm problem on 5.0.3, but it is gone in 5.1.

Would you like to request a backport to 5.0 or are you fine with it being fixed
in 5.1?

Win 7 Pro 64-bit, Version: 5.0.3.2 (x64)
Build ID: e5f16313668ac592c1bfb310f4390624e3dbfb75
Locale: fi-FI (fi_FI)

Version: 5.1.0.0.beta2 (x64)
Build ID: 53054959a12edc6510f51b94ddc9b73d27aedaf6
Threads 4; Ver: Windows 6.1; Render: default; 
Locale: fi-FI (fi_FI)

-- 
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 96335] New: PostScript Print: font errors after a not included character is used with font "Linux Libertine G"

2015-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96335

Bug ID: 96335
   Summary: PostScript Print: font errors after a not included
character is used with font "Linux Libertine G"
   Product: LibreOffice
   Version: 5.0.3.2 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Printing and PDF export
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: j.tdhgf...@nurfuerspam.de

Created attachment 121135
  --> https://bugs.documentfoundation.org/attachment.cgi?id=121135=edit
Exsample describing the issue

I'm not sure if this is a problem with LibreOffice or the font "Linux Libertine
G".
When printing a PostScript file, using the font "Linux Libertine G" and
inserting a character the font doesn't contain, the following text lines get
messed up: wrong font, bad spacing, weird symbols (where a ligature should be).

Directly exporting to PDF produces fine results.

When using the font "Linux Libertine O" instead there is no problem at all.

I'll attach a sample document and the postscript output.

-- 
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 96042] [HELP UI] tab index in help browser does not show pages

2015-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96042

Commit Notification  changed:

   What|Removed |Added

 Whiteboard|bibisectRequest |bibisectRequest
   |target:5.2.0|target:5.2.0 target:5.1.0.1

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


[Libreoffice-bugs] [Bug 96042] [HELP UI] tab index in help browser does not show pages

2015-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96042

--- Comment #12 from Commit Notification 
 ---
Jan Holesovsky committed a patch related to this issue.
It has been pushed to "libreoffice-5-1":

http://cgit.freedesktop.org/libreoffice/core/commit/?id=858613fb2fb554c57081f54aea6a0e2782b79aaa=libreoffice-5-1

tdf#96042: 'std::string::find("something") == 0' means "startsWith()".

It will be available in 5.1.0.1.

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: Branch 'libreoffice-5-1' - compilerplugins/clang helpcompiler/source

2015-12-08 Thread Jan Holesovsky
 compilerplugins/clang/passstuffbyref.cxx |2 +-
 helpcompiler/source/HelpCompiler.cxx |4 ++--
 helpcompiler/source/HelpLinker.cxx   |2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

New commits:
commit 858613fb2fb554c57081f54aea6a0e2782b79aaa
Author: Jan Holesovsky 
Date:   Tue Dec 8 12:07:49 2015 +0100

tdf#96042: 'std::string::find("something") == 0' means "startsWith()".

This should fix a regression from 3bdd176731c351638f541a37b94094124f3c9f52,
apparently the cppcheck's advice is misleading.

Change-Id: I427ecaa1eb3c9841cb6112997b9b51feda4583d0

diff --git a/compilerplugins/clang/passstuffbyref.cxx 
b/compilerplugins/clang/passstuffbyref.cxx
index 673b72b3..f2e66f7 100644
--- a/compilerplugins/clang/passstuffbyref.cxx
+++ b/compilerplugins/clang/passstuffbyref.cxx
@@ -103,7 +103,7 @@ bool PassStuffByRef::isFat(QualType type, std::string * 
name) {
 }
 *name = type.getUnqualifiedType().getCanonicalType().getAsString();
 if (*name == "class rtl::OUString" || *name == "class rtl::OString"
-|| name->compare("class com::sun::star::uno::Sequence") == 0)
+|| name->compare(0, 35, "class com::sun::star::uno::Sequence") == 0)
 {
 return true;
 }
diff --git a/helpcompiler/source/HelpCompiler.cxx 
b/helpcompiler/source/HelpCompiler.cxx
index 85a82d0..6d821e4 100644
--- a/helpcompiler/source/HelpCompiler.cxx
+++ b/helpcompiler/source/HelpCompiler.cxx
@@ -334,7 +334,7 @@ void myparser::traverse( xmlNodePtr parentNode )
 
 std::string hid;
 
-if (branch.compare("hid") == 0)
+if (branch.compare(0, 3, "hid") != 0)
 {
 size_t index = branch.find('/');
 if (index != std::string::npos)
@@ -492,7 +492,7 @@ bool HelpCompiler::compile()
 
 if ( !bExtensionMode && !fileName.empty())
 {
-if (fileName.compare("/text/") == 0)
+if (fileName.compare(0, 6, "/text/") == 0)
 {
 int len = strlen("/text/");
 actMod = fileName.substr(len);
diff --git a/helpcompiler/source/HelpLinker.cxx 
b/helpcompiler/source/HelpLinker.cxx
index 7d4cfe5..13b840d 100644
--- a/helpcompiler/source/HelpLinker.cxx
+++ b/helpcompiler/source/HelpLinker.cxx
@@ -397,7 +397,7 @@ void HelpLinker::link() throw(HelpProcessingException, 
BasicCodeTagger::TaggerEx
 continue;
 
 std::string documentPath = streamTable.document_path;
-if (documentPath.compare("/") == 0)
+if (documentPath.compare(0, 1, "/") == 0)
 documentPath = documentPath.substr(1);
 
 std::string documentJarfile = streamTable.document_module + ".jar";
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 96308] FILEOPEN RTF incorrect tab spacing on table

2015-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96308

Beluga  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||todven...@suomi24.fi
Version|unspecified |4.3.0.4 release
Summary|Formatting RTF incorrect|FILEOPEN RTF incorrect tab
   |tab spacing on table|spacing on table
 Ever confirmed|0   |1

--- Comment #2 from Beluga  ---
Confirmed.

It seems to be better in 3.5.0, although not perfect.

Win 7 Pro 64-bit Version: 5.2.0.0.alpha0+
Build ID: 81fa5340191baf8687f9c82f1f414f5afc86b529
Threads 4; Ver: Windows 6.1; Render: default; 
TinderBox: Win-x86@62-merge-TDF, Branch:MASTER, Time: 2015-12-03_21:19:19
Locale: fi-FI (fi_FI)

4.3.0.1

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


[Libreoffice-bugs] [Bug 96302] Wrong field variables and selections shown in Fields dialog after creating a new document with the dialog still open

2015-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96302

--- Comment #6 from Jan Skarvall  ---
It seems that LibO 5 is not yet available on Ubuntu 14.04, at least if you
stick to packages that are supported. So, for now, I refrain from cluttering up
my installation, getting out of sync with the management of versions that the
Ubuntu Software thinks I have installed. Not (yet) willing to take the risk.

With the semantics I mean: How would you describe what the highlighting means
to a user? I think it will be tough to describe it if the highlighting does not
follow what is seen in the Name and Value boxes.

-- 
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 96302] Wrong field variables and selections shown in Fields dialog after creating a new document with the dialog still open

2015-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96302

--- Comment #9 from Beluga  ---
(In reply to Jan Skarvall from comment #8)
> There is no option to indicate the particular Linux port as OS when
> classifying the the bug report :-(. Should it be added as a keyword?
> Including Ubuntu version? I don't know. Ubuntu versions changes content.

It might be considered after we figure out how to display the Bugzilla lists as
treeviews: then "Linux" could be expanded and you would see some major distros.

-- 
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 96337] FORMATTING: When numbering paragraphs, the numbers occasionnally forget their style (bold)

2015-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96337

f5d50...@opayq.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

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


[Libreoffice-bugs] [Bug 96337] New: FORMATTING: When numbering paragraphs, the numbers occasionnally forget their style (bold)

2015-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96337

Bug ID: 96337
   Summary: FORMATTING: When numbering paragraphs, the numbers
occasionnally forget their style (bold)
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: trivial
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: f5d50...@opayq.com

Created attachment 121138
  --> https://bugs.documentfoundation.org/attachment.cgi?id=121138=edit
test doc numbering style

My paragraph style numbers my paragraph. I have set the used number style to
put the numbers in bold, but this is occasionnally 'forgotten' by the program.
(I also use 'paragraph titles', which is just text at the beginning of the
paragraph in bold to summarise it.)

How to reproduce most easily: open the attachment. Go somewhere in the text.
Add a new paragraph by pushing on enter. This paragraph is numbered; the number
should be in bold but often is not (repeat a few times if the bug does not
appear). Typing in the paragraph often reminds Writer of the style; bolding the
first characters has often the same result.

Technical information:

OS: Windows 10, also appeared in Windows 8 (both home edition).

LO: 5.0.3.2  (x64) (has been present since some time)
Build ID: e5f16313668ac592c1bfb310f4390624e3dbfb75
Locale: nl-BE (nl_BE)

-- 
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 96292] Accelerator for insert document is identical to that for insert field

2015-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96292

Beluga  changed:

   What|Removed |Added

  Component|Writer  |UI

-- 
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 96333] New: Menus open in the wrong place with RTL interface under gtk3

2015-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96333

Bug ID: 96333
   Summary: Menus open in the wrong place with RTL interface under
gtk3
   Product: LibreOffice
   Version: 5.2.0.0.alpha0+ Master
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Keywords: regression
  Severity: major
  Priority: medium
 Component: graphics stack
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: momonas...@gmail.com
CC: caol...@redhat.com

Running recent master with SAL_RTL_ENABLED=1 and gtk3 vclplug makes the main
menus and some toolbar dropdowns to open in the wrong place.

bisect range is:

http://cgit.freedesktop.org/libreoffice/core/log/?qt=range=8ac2b6d077f4e7b1c5a010c2960fb08c0132da5f...30d73431ee51ca2ebcca9029bf0af4a0c4dc565c

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

2015-12-08 Thread Jan Holesovsky
 include/vcl/button.hxx |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit e20df218257c45c5daa234daafac9609d53aa77f
Author: Jan Holesovsky 
Date:   Tue Dec 8 09:19:35 2015 +0100

These should still be virtual.

Change-Id: I11a8f9db15a576ff9926f8f827cbcc08a345ffa4

diff --git a/include/vcl/button.hxx b/include/vcl/button.hxx
index 81c79a2..9665dfd 100644
--- a/include/vcl/button.hxx
+++ b/include/vcl/button.hxx
@@ -94,7 +94,7 @@ public:
 virtual boolset_property(const OString , const OString 
) override;
 
 /// Sets the button state according to the FeatureStateEvent emitted by an 
Uno state change.
-voidstatusChanged(const css::frame::FeatureStateEvent& 
rEvent);
+virtual voidstatusChanged(const css::frame::FeatureStateEvent& 
rEvent);
 
 protected:
 
@@ -187,7 +187,7 @@ public:
 
 voidSetState( TriState eState );
 TriStateGetState() const { return meState; }
-voidstatusChanged(const css::frame::FeatureStateEvent& rEvent);
+virtual voidstatusChanged(const css::frame::FeatureStateEvent& rEvent) 
override;
 
 voidCheck( bool bCheck = true );
 boolIsChecked() const;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 96335] PostScript Print: font errors after a not included character is used with font "Linux Libertine G"

2015-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96335

--- Comment #1 from Hans  ---
Created attachment 121136
  --> https://bugs.documentfoundation.org/attachment.cgi?id=121136=edit
Postscript output

The Postscript Output of the sample file produced with LibreOffice 5.0.3.2 on
Ubuntu 14.04.3 LTS

-- 
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 96338] Format Cell Fractions by eights and 16ths or arbitrary list of denominators

2015-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96338

AaronPeterson  changed:

   What|Removed |Added

Version|unspecified |5.0.3.2 release
   Assignee|libreoffice-b...@lists.free |myusualnickn...@gmail.com
   |desktop.org |

--- Comment #1 from AaronPeterson  ---
There is also expectation to be compatible with Excel, even though it has
annoying behavior.

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


  1   2   3   >