[Libreoffice-bugs] [Bug 106111] PDF and Print text is cut, different font size and auto row adjust fails (steps in comment 19)

2017-03-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106111

--- Comment #31 from OfficeUser  ---
I can reproduce the bug on both Linux and Windows.

("Reproduce" is understated. I suffer from this bug daily.)

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


[Libreoffice-bugs] [Bug 106351] New: Freeze Draw on add Component in users library

2017-03-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106351

Bug ID: 106351
   Summary: Freeze Draw on add Component in users library
   Product: LibreOffice
   Version: 5.3.0.3 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Draw
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: prospero.78...@gmail.com

Im need add my component in users library (galery) in Draw.
Action:
1. Open Draw.
2. Press button in rigth up panel "Create/make Themes".
3. LO its freeze
4. Freeze...
5. Freeze...
.
6. Kill process and new Themes in galery not have.
Please, fix it.

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


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

2017-03-05 Thread Noel Grandin
 include/svtools/parhtml.hxx|   40 +-
 svtools/source/svhtml/htmlsupp.cxx |   12 +--
 svtools/source/svhtml/parhtml.cxx  |  138 ++---
 sw/source/filter/html/htmlbas.cxx  |4 -
 sw/source/filter/html/htmlform.cxx |   64 -
 sw/source/filter/html/htmltab.cxx  |   32 
 sw/source/filter/html/swhtml.cxx   |2 
 7 files changed, 145 insertions(+), 147 deletions(-)

New commits:
commit 02fd5f04fb0c23d788d601ba1037aaf2856b3ce3
Author: Noel Grandin 
Date:   Mon Mar 6 09:51:04 2017 +0200

convert eHtmlMetas to scoped enum

Change-Id: I4433bb87e74b909fbd8e1144e00d8cc53954bf05

diff --git a/svtools/source/svhtml/parhtml.cxx 
b/svtools/source/svhtml/parhtml.cxx
index 463b355..82e7641 100644
--- a/svtools/source/svhtml/parhtml.cxx
+++ b/svtools/source/svhtml/parhtml.cxx
@@ -1827,38 +1827,38 @@ bool HTMLParser::InternalImgToPrivateURL( OUString& 
rURL )
 return bFound;
 }
 
-enum eHtmlMetas {
-HTML_META_NONE = 0,
-HTML_META_AUTHOR,
-HTML_META_DESCRIPTION,
-HTML_META_KEYWORDS,
-HTML_META_REFRESH,
-HTML_META_CLASSIFICATION,
-HTML_META_CREATED,
-HTML_META_CHANGEDBY,
-HTML_META_CHANGED,
-HTML_META_GENERATOR,
-HTML_META_SDFOOTNOTE,
-HTML_META_SDENDNOTE,
-HTML_META_CONTENT_TYPE
+enum class HtmlMeta {
+NONE = 0,
+Author,
+Description,
+Keywords,
+Refresh,
+Classification,
+Created,
+ChangedBy,
+Changed,
+Generator,
+SDFootnote,
+SDEndnote,
+ContentType
 };
 
 // 
-static HTMLOptionEnum const aHTMLMetaNameTable[] =
+static HTMLOptionEnum const aHTMLMetaNameTable[] =
 {
-{ OOO_STRING_SVTOOLS_HTML_META_author,HTML_META_AUTHOR},
-{ OOO_STRING_SVTOOLS_HTML_META_changed,   HTML_META_CHANGED   },
-{ OOO_STRING_SVTOOLS_HTML_META_changedby, HTML_META_CHANGEDBY },
-{ OOO_STRING_SVTOOLS_HTML_META_classification,HTML_META_CLASSIFICATION},
-{ OOO_STRING_SVTOOLS_HTML_META_content_type,  HTML_META_CONTENT_TYPE  },
-{ OOO_STRING_SVTOOLS_HTML_META_created,   HTML_META_CREATED   },
-{ OOO_STRING_SVTOOLS_HTML_META_description,   HTML_META_DESCRIPTION   },
-{ OOO_STRING_SVTOOLS_HTML_META_keywords,  HTML_META_KEYWORDS  },
-{ OOO_STRING_SVTOOLS_HTML_META_generator, HTML_META_GENERATOR },
-{ OOO_STRING_SVTOOLS_HTML_META_refresh,   HTML_META_REFRESH   },
-{ OOO_STRING_SVTOOLS_HTML_META_sdendnote, HTML_META_SDENDNOTE },
-{ OOO_STRING_SVTOOLS_HTML_META_sdfootnote,HTML_META_SDFOOTNOTE},
-{ nullptr,(eHtmlMetas)0   }
+{ OOO_STRING_SVTOOLS_HTML_META_author,HtmlMeta::Author},
+{ OOO_STRING_SVTOOLS_HTML_META_changed,   HtmlMeta::Changed   },
+{ OOO_STRING_SVTOOLS_HTML_META_changedby, HtmlMeta::ChangedBy },
+{ OOO_STRING_SVTOOLS_HTML_META_classification,HtmlMeta::Classification},
+{ OOO_STRING_SVTOOLS_HTML_META_content_type,  HtmlMeta::ContentType   },
+{ OOO_STRING_SVTOOLS_HTML_META_created,   HtmlMeta::Created   },
+{ OOO_STRING_SVTOOLS_HTML_META_description,   HtmlMeta::Description   },
+{ OOO_STRING_SVTOOLS_HTML_META_keywords,  HtmlMeta::Keywords  },
+{ OOO_STRING_SVTOOLS_HTML_META_generator, HtmlMeta::Generator },
+{ OOO_STRING_SVTOOLS_HTML_META_refresh,   HtmlMeta::Refresh   },
+{ OOO_STRING_SVTOOLS_HTML_META_sdendnote, HtmlMeta::SDEndnote },
+{ OOO_STRING_SVTOOLS_HTML_META_sdfootnote,HtmlMeta::SDFootnote},
+{ nullptr,(HtmlMeta)0 }
 };
 
 
@@ -1873,7 +1873,7 @@ bool HTMLParser::ParseMetaOptionsImpl(
 rtl_TextEncoding& o_rEnc )
 {
 OUString aName, aContent;
-eHtmlMetas nAction = HTML_META_NONE;
+HtmlMeta nAction = HtmlMeta::NONE;
 bool bHTTPEquiv = false, bChanged = false;
 
 for ( size_t i = aOptions.size(); i; )
@@ -1883,7 +1883,7 @@ bool HTMLParser::ParseMetaOptionsImpl(
 {
 case HTML_O_NAME:
 aName = aOption.GetString();
-if ( HTML_META_NONE==nAction )
+if ( HtmlMeta::NONE==nAction )
 {
 aOption.GetEnum( nAction, aHTMLMetaNameTable );
 }
@@ -1903,7 +1903,7 @@ bool HTMLParser::ParseMetaOptionsImpl(
 }
 }
 
-if ( bHTTPEquiv || HTML_META_DESCRIPTION != nAction )
+if ( bHTTPEquiv || HtmlMeta::Description != nAction )
 {
 // if it is not a Description, remove CRs and LFs from CONTENT
 aContent = aContent.replaceAll("\r", "").replaceAll("\n", "");
@@ -1927,40 +1927,40 @@ bool HTMLParser::ParseMetaOptionsImpl(
 
 switch ( nAction )
 {
-case HTML_META_AUTHOR:
+case HtmlMeta::Author:
 if (i_xDocProps.is()) {
 i_xDocProps->setAuthor( aContent );

[Libreoffice-bugs] [Bug 106111] PDF and Print text is cut, different font size and auto row adjust fails (steps in comment 19)

2017-03-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106111

Björn Michaelsen  changed:

   What|Removed |Added

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

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


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

2017-03-05 Thread Noel Grandin
 cui/source/dialogs/insdlg.cxx  |   12 ++--
 include/sfx2/frmdescr.hxx  |8 
 sfx2/source/bastyp/frmhtml.cxx |8 
 sfx2/source/doc/frmdescr.cxx   |2 +-
 sfx2/source/doc/iframe.cxx |8 
 sw/source/filter/html/htmlplug.cxx |4 ++--
 sw/source/filter/xml/xmltexti.cxx  |8 
 sw/source/uibase/shells/textsh.cxx |8 
 8 files changed, 29 insertions(+), 29 deletions(-)

New commits:
commit 24ae6e86671c0729a6a6ea7da86b262b4fdd1c0f
Author: Noel Grandin 
Date:   Mon Mar 6 08:45:01 2017 +0200

convert ScrollingMode to scoped enum

Change-Id: Ice1628ba09998be455fd6a77a044cb403235d462
Reviewed-on: https://gerrit.libreoffice.org/34914
Tested-by: Jenkins 
Reviewed-by: Noel Grandin 

diff --git a/cui/source/dialogs/insdlg.cxx b/cui/source/dialogs/insdlg.cxx
index d7e0688..6b0e888 100644
--- a/cui/source/dialogs/insdlg.cxx
+++ b/cui/source/dialogs/insdlg.cxx
@@ -545,13 +545,13 @@ short SfxInsertFloatingFrameDialog::Execute()
 m_xObj->changeState( embed::EmbedStates::RUNNING );
 
 OUString aName = m_pEDName->GetText();
-ScrollingMode eScroll = ScrollingNo;
+ScrollingMode eScroll = ScrollingMode::No;
 if ( m_pRBScrollingOn->IsChecked() )
-eScroll = ScrollingYes;
+eScroll = ScrollingMode::Yes;
 if ( m_pRBScrollingOff->IsChecked() )
-eScroll = ScrollingNo;
+eScroll = ScrollingMode::No;
 if ( m_pRBScrollingAuto->IsChecked() )
-eScroll = ScrollingAuto;
+eScroll = ScrollingMode::Auto;
 
 bool bHasBorder = m_pRBFrameBorderOn->IsChecked();
 
@@ -570,10 +570,10 @@ short SfxInsertFloatingFrameDialog::Execute()
 xSet->setPropertyValue( "FrameURL", Any( aURL ) );
 xSet->setPropertyValue( "FrameName", Any( aName ) );
 
-if ( eScroll == ScrollingAuto )
+if ( eScroll == ScrollingMode::Auto )
 xSet->setPropertyValue( "FrameIsAutoScroll", Any( true ) );
 else
-xSet->setPropertyValue( "FrameIsScrollingMode", Any( 
eScroll == ScrollingYes ) );
+xSet->setPropertyValue( "FrameIsScrollingMode", Any( 
eScroll == ScrollingMode::Yes ) );
 
 xSet->setPropertyValue( "FrameIsBorder", Any( bHasBorder ) );
 xSet->setPropertyValue( "FrameMarginWidth", Any( sal_Int32( 
lMarginWidth ) ) );
diff --git a/include/sfx2/frmdescr.hxx b/include/sfx2/frmdescr.hxx
index 4f09680..5e8e3d9 100644
--- a/include/sfx2/frmdescr.hxx
+++ b/include/sfx2/frmdescr.hxx
@@ -43,11 +43,11 @@ class Wallpaper;
 // aligned, from which also the alignment of the FrameSet is given.
 
 
-enum ScrollingMode
+enum class ScrollingMode
 {
-ScrollingYes,
-ScrollingNo,
-ScrollingAuto
+Yes,
+No,
+Auto
 };
 
 #define SPACING_NOT_SET -1L
diff --git a/sfx2/source/bastyp/frmhtml.cxx b/sfx2/source/bastyp/frmhtml.cxx
index af567e9..c27201e 100644
--- a/sfx2/source/bastyp/frmhtml.cxx
+++ b/sfx2/source/bastyp/frmhtml.cxx
@@ -40,9 +40,9 @@ static sal_Char const sHTML_SC_auto[] = "AUTO";
 
 static HTMLOptionEnum const aScrollingTable[] =
 {
-{ sHTML_SC_yes, ScrollingYes},
-{ sHTML_SC_no,  ScrollingNo },
-{ sHTML_SC_auto,ScrollingAuto   },
+{ sHTML_SC_yes, ScrollingMode::Yes},
+{ sHTML_SC_no,  ScrollingMode::No },
+{ sHTML_SC_auto,ScrollingMode::Auto   },
 { nullptr,  (ScrollingMode)0 }
 };
 
@@ -93,7 +93,7 @@ void SfxFrameHTMLParser::ParseFrameOptions(
 bMarginHeight = true;
 break;
 case HTML_O_SCROLLING:
-pFrame->SetScrollingMode( rOption.GetEnum( aScrollingTable, 
ScrollingAuto ) );
+pFrame->SetScrollingMode( rOption.GetEnum( aScrollingTable, 
ScrollingMode::Auto ) );
 break;
 case HTML_O_FRAMEBORDER:
 {
diff --git a/sfx2/source/doc/frmdescr.cxx b/sfx2/source/doc/frmdescr.cxx
index a23126b..5eb4fc2 100644
--- a/sfx2/source/doc/frmdescr.cxx
+++ b/sfx2/source/doc/frmdescr.cxx
@@ -40,7 +40,7 @@ struct SfxFrameDescriptor_Impl
 
 SfxFrameDescriptor::SfxFrameDescriptor() :
 aMargin( -1, -1 ),
-eScroll( ScrollingAuto ),
+eScroll( ScrollingMode::Auto ),
 bHasBorder( true ),
 bHasBorderSet( false ),
 bResizeHorizontal( true ),
diff --git a/sfx2/source/doc/iframe.cxx b/sfx2/source/doc/iframe.cxx
index 1ca63db..ad44a09 100644
--- a/sfx2/source/doc/iframe.cxx
+++ b/sfx2/source/doc/iframe.cxx
@@ -262,14 +262,14 @@ void SAL_CALL IFrameObject::setPropertyValue(const 
OUString& aPropertyName, cons
 {
 bool bIsAutoScroll;
 if ( (aAny >>= bIsAutoScroll) && bIsAutoScroll )
-   

[Libreoffice-bugs] [Bug 92011] slow typing with large numbers of comments when displayed

2017-03-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=92011

dieterp  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 61558] Big (complex) document : high CPU load and ever increasing memory usage ( track changes and many comments are part of the problem)

2017-03-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=61558

dieterp  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 106330] UI- single click should select text on slide, not double click

2017-03-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106330

--- Comment #1 from Alex Thurgood  ---
Perhaps I am misunderstanding, but I can obtain what you want simply by
single-clicking the mouse at any position within a previously unselected text
box, and without having to set up the preferences you describe.

Version: 5.4.0.0.alpha0+
Build ID: 6de4ecbe1372c0242f406d45cf69616f87dc
Threads CPU : 2; Version de l'OS :Mac OS X 10.12.3; UI Render : par défaut; 
Locale : fr-FR (fr_FR.UTF-8); Calc: group

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


[Libreoffice-bugs] [Bug 106329] Text reformats slightly when selected in Impress UI

2017-03-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106329

--- Comment #2 from Alex Thurgood  ---
On my machine, reproducing only requires activating the mouse cursor (clicking
any where in the box text area), I don't actually have to select any character.

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


[Libreoffice-bugs] [Bug 106329] Text reformats slightly when selected in Impress UI

2017-03-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106329

Alex Thurgood  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
   Hardware|x86 (IA32)  |x86-64 (AMD64)
 Ever confirmed|0   |1

--- Comment #1 from Alex Thurgood  ---
Reproduced also on 

Version: 5.4.0.0.alpha0+
Build ID: 6de4ecbe1372c0242f406d45cf69616f87dc
Threads CPU : 2; Version de l'OS :Mac OS X 10.12.3; UI Render : par défaut; 
Locale : fr-FR (fr_FR.UTF-8); Calc: group


I am uncertain whether this has always been the case and that it is now simply
more visible, or whether this is a regression.

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


[Libreoffice-bugs] [Bug 106292] XMessageBox#execute() in Java fails to draw a window on macOS Sierra

2017-03-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106292

--- Comment #2 from Alex Thurgood  ---
Wasn't something like this being discussed on the dev mailing list last week ?

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


[Libreoffice-bugs] [Bug 106292] XMessageBox#execute() in Java fails to draw a window on macOS Sierra

2017-03-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106292

Alex Thurgood  changed:

   What|Removed |Added

 CC||sberg...@redhat.com

--- Comment #1 from Alex Thurgood  ---
@Stephan : one for you ?

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


[Libreoffice-bugs] [Bug 88205] Adapt uses of css::uno::Sequence to use initializer_list ctor

2017-03-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=88205

--- Comment #35 from Commit Notification 
 ---
Fakabbir Amin committed a patch related to this issue.
It has been pushed to "master":

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

tdf#88205 Remove 'css::uno::Sequence' in svx

It will be available in 5.4.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
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


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

2017-03-05 Thread Fakabbir Amin
 svx/source/form/fmscriptingenv.cxx |3 +--
 svx/source/form/xfm_addcondition.cxx   |3 +--
 svx/source/mnuctrls/smarttagmenu.cxx   |3 +--
 svx/source/sidebar/PanelFactory.cxx|2 +-
 svx/source/tbxctrls/bulletsnumbering.cxx   |3 +--
 svx/source/tbxctrls/tbunosearchcontrollers.cxx |   21 +++--
 svx/source/unodraw/recoveryui.cxx  |3 +--
 7 files changed, 13 insertions(+), 25 deletions(-)

New commits:
commit 9fc8b4a3fe9b369093fc133979f84ed7b21b125f
Author: Fakabbir Amin 
Date:   Sat Mar 4 19:42:34 2017 +0530

tdf#88205 Remove 'css::uno::Sequence' in svx

Change-Id: Iaee597fea9840ddd428dbf37d3bdcab9a9ecef9b
Reviewed-on: https://gerrit.libreoffice.org/34885
Tested-by: Jenkins 
Reviewed-by: Noel Grandin 

diff --git a/svx/source/form/fmscriptingenv.cxx 
b/svx/source/form/fmscriptingenv.cxx
index 6965231..5442e89 100644
--- a/svx/source/form/fmscriptingenv.cxx
+++ b/svx/source/form/fmscriptingenv.cxx
@@ -825,8 +825,7 @@ namespace svxform
 
 virtual css::uno::Sequence SAL_CALL 
getSupportedServiceNames() override
 {
-css::uno::Sequence aSeq { 
"com.sun.star.svx.StarBasicQuitGuard" };
-return aSeq;
+return { "com.sun.star.svx.StarBasicQuitGuard" };
 }
 
 public:
diff --git a/svx/source/form/xfm_addcondition.cxx 
b/svx/source/form/xfm_addcondition.cxx
index 9f2cc14..e33fe49 100644
--- a/svx/source/form/xfm_addcondition.cxx
+++ b/svx/source/form/xfm_addcondition.cxx
@@ -53,8 +53,7 @@ namespace svxform
 
 Sequence< OUString > SAL_CALL 
OAddConditionDialog_GetSupportedServiceNames()
 {
-css::uno::Sequence aSupported { 
"com.sun.star.xforms.ui.dialogs.AddCondition" };
-return aSupported;
+return { "com.sun.star.xforms.ui.dialogs.AddCondition" };
 }
 
 
diff --git a/svx/source/mnuctrls/smarttagmenu.cxx 
b/svx/source/mnuctrls/smarttagmenu.cxx
index af73107..da51cbe 100644
--- a/svx/source/mnuctrls/smarttagmenu.cxx
+++ b/svx/source/mnuctrls/smarttagmenu.cxx
@@ -221,8 +221,7 @@ OUString SmartTagMenuController::getImplementationName()
 
 css::uno::Sequence< OUString > 
SmartTagMenuController::getSupportedServiceNames()
 {
-css::uno::Sequence< OUString > aRet { 
"com.sun.star.frame.PopupMenuController" };
-return aRet;
+return { "com.sun.star.frame.PopupMenuController" };
 }
 
 extern "C" SAL_DLLPUBLIC_EXPORT css::uno::XInterface * SAL_CALL
diff --git a/svx/source/sidebar/PanelFactory.cxx 
b/svx/source/sidebar/PanelFactory.cxx
index f84d938..0ab3df5 100644
--- a/svx/source/sidebar/PanelFactory.cxx
+++ b/svx/source/sidebar/PanelFactory.cxx
@@ -80,7 +80,7 @@ public:
 { return cppu::supportsService(this, ServiceName); }
 
 css::uno::Sequence SAL_CALL getSupportedServiceNames() override
-{ return css::uno::Sequence{"com.sun.star.ui.UIElementFactory"}; 
}
+{ return {"com.sun.star.ui.UIElementFactory"}; }
 };
 
 PanelFactory::PanelFactory()
diff --git a/svx/source/tbxctrls/bulletsnumbering.cxx 
b/svx/source/tbxctrls/bulletsnumbering.cxx
index e031762..dbabd99 100644
--- a/svx/source/tbxctrls/bulletsnumbering.cxx
+++ b/svx/source/tbxctrls/bulletsnumbering.cxx
@@ -237,8 +237,7 @@ OUString SAL_CALL 
NumberingToolBoxControl::getImplementationName()
 
 css::uno::Sequence< OUString > SAL_CALL 
NumberingToolBoxControl::getSupportedServiceNames()
 {
-css::uno::Sequence aRet { "com.sun.star.frame.ToolbarController" 
};
-return aRet;
+return { "com.sun.star.frame.ToolbarController" };
 }
 
 extern "C" SAL_DLLPUBLIC_EXPORT css::uno::XInterface * SAL_CALL
diff --git a/svx/source/tbxctrls/tbunosearchcontrollers.cxx 
b/svx/source/tbxctrls/tbunosearchcontrollers.cxx
index e3189a5..e293e42 100644
--- a/svx/source/tbxctrls/tbunosearchcontrollers.cxx
+++ b/svx/source/tbxctrls/tbunosearchcontrollers.cxx
@@ -498,8 +498,7 @@ sal_Bool SAL_CALL 
FindTextToolbarController::supportsService( const OUString& Se
 
 css::uno::Sequence< OUString > SAL_CALL 
FindTextToolbarController::getSupportedServiceNames()
 {
-css::uno::Sequence aSNS { "com.sun.star.frame.ToolbarController" 
};
-return aSNS;
+return { "com.sun.star.frame.ToolbarController" };
 }
 
 // XComponent
@@ -670,8 +669,7 @@ sal_Bool SAL_CALL 
UpDownSearchToolboxController::supportsService( const OUString
 
 css::uno::Sequence< OUString > SAL_CALL 
UpDownSearchToolboxController::getSupportedServiceNames()
 {
-css::uno::Sequence aSNS { "com.sun.star.frame.ToolbarController" 
};
-return aSNS;
+return { "com.sun.star.frame.ToolbarController" };
 }
 
 // XComponent
@@ -787,8 +785,7 @@ sal_Bool SAL_CALL 
MatchCaseToolboxController::supportsService( const OUString& S
 
 css::uno::Sequence< OUString > SAL_CALL 
MatchCaseToolboxController::getSupportedServiceNames()
 {
-css::uno::Sequence aSNS { 

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

2017-03-05 Thread Stephan Bergmann
 vcl/source/gdi/sallayout.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit aa2758e133a74cc5d76cdb42478604fcb0fe3f6e
Author: Stephan Bergmann 
Date:   Sun Mar 5 23:34:10 2017 +0100

Revert "Does aPos need proper initialization here?"

This reverts commit 55212835b5eba797a14430a0268b3bea773e0852.  For one, I'd
intended to add the initialization in SalLayout::GetBoundRect, not
SalLayout::GetOutline.  And for another, if you look closer, the overrides 
of
GetNextGlyphs will always set rPos (ignoring any old value) upon returning 
non-
zero.

I'd seen calls to WinSalGraphics::DrawTextLayout ->
D2DWriteTextOutRenderer::operator () -> GetBoundRect fail (thus returning 
false
from operator () and causing the assert in DrawTextLayout to fire) after
7453cb58df4ce434a1252567f961cfe497064aca "pPos and pGetNextGlypInfo always 
have
the same value", but maybe that's even normal:  Prior to that commit, that 
call
chain would trivially return false:  If none of the early returns from
operator () hit, the final

  return (succeeded && bGlyphs && pRectToErase);

would always return false as pRectToErase would be passed null from
DrawTextLayout, and the assert there was

  assert(!result);

diff --git a/vcl/source/gdi/sallayout.cxx b/vcl/source/gdi/sallayout.cxx
index 2179b63..88f02d6 100644
--- a/vcl/source/gdi/sallayout.cxx
+++ b/vcl/source/gdi/sallayout.cxx
@@ -668,7 +668,7 @@ bool SalLayout::GetOutline( SalGraphics& rSalGraphics,
 
 basegfx::B2DPolyPolygon aGlyphOutline;
 
-Point aPos(0, 0);
+Point aPos;
 const GlyphItem* pGlyph;
 int nStart = 0;
 while (GetNextGlyphs(1, , aPos, nStart))
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 106264] Writer crashes on startup in: cppu::_copyConstructAnyFromData (_uno_Any *, void *, _typelib_TypeDescriptionReference *, _typelib_TypeDescription *, void (*)(void *), _u

2017-03-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106264

--- Comment #8 from Buovjaga  ---
Just to check, you can try this fresh build:
http://dev-builds.libreoffice.org/daily/master/Win-x86@42/current/
It will not overwrite your 5.3, but will install alongside it.

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


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

2017-03-05 Thread David Ostrovsky
 configure.ac |   45 -
 1 file changed, 28 insertions(+), 17 deletions(-)

New commits:
commit 7fd432e6f2d7d30228c705bd8db5046387d65866
Author: David Ostrovsky 
Date:   Sun Mar 5 21:19:02 2017 +0100

MSVC 15.0: Fix 32bit build

Change-Id: I0e6e01918f58ada6a58f1d3b3278b72944cf300e
Reviewed-on: https://gerrit.libreoffice.org/34904
Tested-by: Jenkins 
Reviewed-by: David Ostrovsky 

diff --git a/configure.ac b/configure.ac
index 9480220..57506a0 100644
--- a/configure.ac
+++ b/configure.ac
@@ -3501,8 +3501,13 @@ if test "$_os" = "WINNT"; then
 CL_LIB=
 
 if test "$BITNESS_OVERRIDE" = ""; then
-MSPDB_PATH="$VC_PRODUCT_DIR/../Common7/IDE"
-CL_DIR=bin
+if test "$vcnum" = "150"; then
+
MSPDB_PATH="$VC_PRODUCT_DIR/Tools/MSVC/$vcbuildnumber/bin/HostX86/x86"
+CL_DIR=Tools/MSVC/$vcbuildnumber/bin/HostX86/x86
+else
+MSPDB_PATH="$VC_PRODUCT_DIR/../Common7/IDE"
+CL_DIR=bin
+fi
 else
 if test "$vcexpress" = "Express"; then
 MSPDB_PATH="$VC_PRODUCT_DIR/bin"
@@ -3545,8 +3550,9 @@ if test "$_os" = "WINNT"; then
 dnl Save the true MSVC cl.exe for use when CC/CXX is actually clang-cl,
 dnl needed when building CLR code:
 if test -z "$MSVC_CXX"; then
+AC_MSG_CHECKING([real MSVC])
 if test "$BITNESS_OVERRIDE" = ""; then
-if test -f "$VC_PRODUCT_DIR/bin/cl.exe"; then
+if test -f "$VC_PRODUCT_DIR/$CL_DIR/cl.exe"; then
 MSVC_CXX="$VC_PRODUCT_DIR/$CL_DIR/cl.exe"
 fi
 else
@@ -3561,6 +3567,7 @@ if test "$_os" = "WINNT"; then
 fi
 fi
 
+AC_MSG_RESULT([$MSVC_CXX])
 # This gives us a posix path with 8.3 filename restrictions
 MSVC_CXX=`win_short_path_for_make "$MSVC_CXX"`
 fi
@@ -3577,7 +3584,11 @@ if test "$_os" = "WINNT"; then
 # Remove /cl.exe from CC case insensitive
 AC_MSG_RESULT([found Visual C++ $vcyear $vcexpress ($CC)])
 if test "$BITNESS_OVERRIDE" = ""; then
-COMPATH=`echo "$CC" | $SED -e 
's@\/[[Bb]][[Ii]][[Nn]]\/[[cC]][[lL]]\.[[eE]][[xX]][[eE]].*@@' -e 's@^.* @@'`
+   if test "$vcnum" = "150"; then
+   COMPATH="$VC_PRODUCT_DIR"
+   else
+   COMPATH=`echo "$CC" | $SED -e 
's@\/[[Bb]][[Ii]][[Nn]]\/[[cC]][[lL]]\.[[eE]][[xX]][[eE]].*@@' -e 's@^.* @@'`
+   fi
 else
 if test -n "$VC_PRODUCT_DIR"; then
 COMPATH=$VC_PRODUCT_DIR
@@ -9758,7 +9769,7 @@ ML_EXE=""
 if test "$_os" = "WINNT"; then
 if test "$BITNESS_OVERRIDE" = ""; then
 assembler=ml.exe
-assembler_bin=bin
+assembler_bin=$CL_DIR
 else
 if test "$vcexpress" = "Express"; then
 assembler=ml64.exe
@@ -12306,12 +12317,10 @@ if test "$build_os" = "cygwin"; then
 ILIB="$ILIB;$WINDOWS_SDK_HOME/lib/$winsdklibsubdir/um/x64"
 ILIB1="$ILIB1 
-LIBPATH:$WINDOWS_SDK_HOME/lib/$winsdklibsubdir/um/x64"
 fi
-if test $VCVER = 140 -o $VCVER = 150; then
-PathFormat "${UCRTSDKDIR}lib/$UCRTVERSION/ucrt/x64"
-ucrtlibpath_formatted=$formatted_path
-ILIB="$ILIB;$ucrtlibpath_formatted"
-ILIB1="$ILIB1 -LIBPATH:$ucrtlibpath_formatted"
-fi
+PathFormat "${UCRTSDKDIR}lib/$UCRTVERSION/ucrt/x64"
+ucrtlibpath_formatted=$formatted_path
+ILIB="$ILIB;$ucrtlibpath_formatted"
+ILIB1="$ILIB1 -LIBPATH:$ucrtlibpath_formatted"
 else
 if test $vcnum = "150"; then
 ILIB="$ILIB;$COMPATH/lib/x86"
@@ -12326,12 +12335,10 @@ if test "$build_os" = "cygwin"; then
 ILIB="$ILIB;$WINDOWS_SDK_HOME/lib/$winsdklibsubdir/um/x86"
 ILIB1="$ILIB1 
-LIBPATH:$WINDOWS_SDK_HOME/lib/$winsdklibsubdir/um/x86"
 fi
-if test $VCVER = 140; then
-PathFormat "${UCRTSDKDIR}lib/$UCRTVERSION/ucrt/x86"
-ucrtlibpath_formatted=$formatted_path
-ILIB="$ILIB;$ucrtlibpath_formatted"
-ILIB1="$ILIB1 -LIBPATH:$ucrtlibpath_formatted"
-fi
+PathFormat "${UCRTSDKDIR}lib/$UCRTVERSION/ucrt/x86"
+ucrtlibpath_formatted=$formatted_path
+ILIB="$ILIB;$ucrtlibpath_formatted"
+ILIB1="$ILIB1 -LIBPATH:$ucrtlibpath_formatted"
 fi
 if test -f "$DOTNET_FRAMEWORK_HOME/lib/mscoree.lib"; then
 ILIB="$ILIB;$DOTNET_FRAMEWORK_HOME/lib"
@@ -12539,6 +12546,10 @@ if test "$build_os" = "cygwin"; then
 else
 ATL_LIB="$ATL_LIB/amd64"
 fi
+else
+if test $VCVER = "150"; then
+ATL_LIB="$ATL_LIB/x86"
+fi
 fi
 # sort.exe and find.exe also exist in C:/Windows/system32 so need /usr/bin/
 PathFormat "/usr/bin/find.exe"
___
Libreoffice-commits 

Re: Applying as a participant in Google Summer of code

2017-03-05 Thread Jan Iversen
Welcome.

you might want to take a look at:
https://wiki.documentfoundation.org/Development/GSoC/2016#How_to_apply 


In order to apply successfully you need to have solved at least one non-trivial 
easyhack. We have made a step by step guide, helping you to build LibreOffice 
and get your first patch merged:
https://wiki.documentfoundation.org/Development/GetInvolved 


Have fun
Jan Iversen.___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: GSOC 17 Getting started

2017-03-05 Thread Jan Iversen
Welcome.

you might want to take a look at:
https://wiki.documentfoundation.org/Development/GSoC/2016#How_to_apply 


In order to apply successfully you need to have solved at least one non-trivial 
easyhack. We have made a step by step guide, helping you to build LibreOffice 
and get your first patch merged:
https://wiki.documentfoundation.org/Development/GetInvolved 


Have fun
Jan Iversen.

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


[Libreoffice-bugs] [Bug 102777] Calc crash or freeze when deleting scenario

2017-03-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102777

Julien Nabet  changed:

   What|Removed |Added

 CC||er...@redhat.com

--- Comment #8 from Julien Nabet  ---
popup message error: wrapped std::exception vector::_M_range_check: __n(which
is 2) >= this->size() (which is 2)

Interestingly, if you check "Copy Entire sheet" when creating scenario, it
doesn't crash.

Eike: thought you might be interested in this one.

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


[Libreoffice-bugs] [Bug 102777] Calc crash or freeze when deleting scenario

2017-03-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102777

--- Comment #7 from Julien Nabet  ---
Created attachment 131665
  --> https://bugs.documentfoundation.org/attachment.cgi?id=131665=edit
bt with debug symbols

On pc Debian x86-64 with master sources updated yesterday, I still can
reproduce this.
I attached bt with some gdb traces.

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


[Libreoffice-commits] core.git: 3 commits - accessibility/source cui/source dbaccess/source editeng/source filter/source reportdesign/source sc/source sd/inc sd/source sfx2/source starmath/source svto

2017-03-05 Thread Noel Grandin
 accessibility/source/extended/accessibletablistboxtable.cxx |2 
 cui/source/tabpages/paragrph.cxx|2 
 dbaccess/source/ui/dlg/paramdialog.cxx  |2 
 editeng/source/uno/unonrule.cxx |4 
 editeng/source/uno/unotext.cxx  |6 -
 filter/source/flash/swfexporter.cxx |2 
 filter/source/msfilter/msdffimp.cxx |2 
 filter/source/xsltfilter/XSLTFilter.cxx |2 
 reportdesign/source/ui/report/ReportController.cxx  |2 
 sc/source/filter/excel/xlchart.cxx  |   10 -
 sc/source/filter/excel/xlroot.cxx   |2 
 sc/source/filter/orcus/orcusfiltersimpl.cxx |2 
 sc/source/filter/xml/xmlwrap.cxx|2 
 sc/source/ui/docshell/docsh.cxx |3 
 sd/inc/sdattr.hxx   |   30 -
 sd/source/core/sdattr.cxx   |   67 
 sd/source/core/stlsheet.cxx |6 -
 sd/source/filter/html/htmlex.cxx|6 -
 sd/source/filter/xml/sdtransform.cxx|6 -
 sd/source/ui/dlg/dlgolbul.cxx   |4 
 sd/source/ui/func/fuchar.cxx|2 
 sd/source/ui/func/fupage.cxx|4 
 sd/source/ui/func/futempl.cxx   |4 
 sd/source/ui/sidebar/RecentlyUsedMasterPages.cxx|4 
 sd/source/ui/unoidl/unomodel.cxx|8 -
 sd/source/ui/unoidl/unopback.cxx|4 
 sd/source/ui/view/drviews2.cxx  |6 -
 sd/source/ui/view/drviewsj.cxx  |2 
 sfx2/source/doc/docfile.cxx |4 
 starmath/source/unomodel.cxx|4 
 svtools/source/config/helpopt.cxx   |6 -
 svx/source/dialog/rubydialog.cxx|4 
 svx/source/dialog/srchdlg.cxx   |2 
 svx/source/fmcomp/gridcell.cxx  |2 
 svx/source/table/cell.cxx   |4 
 svx/source/table/tablelayouter.cxx  |2 
 svx/source/tbxctrls/tbcontrl.cxx|4 
 svx/source/toolbars/extrusionbar.cxx|   16 +-
 svx/source/toolbars/fontworkbar.cxx |6 -
 svx/source/unodraw/unobrushitemhelper.cxx   |2 
 svx/source/unodraw/unoshape.cxx |4 
 sw/qa/extras/odfexport/odfexport.cxx|2 
 sw/source/core/fields/expfld.cxx|2 
 sw/source/core/txtnode/ndtxt.cxx|2 
 sw/source/core/unocore/swunohelper.cxx  |2 
 sw/source/core/unocore/unoframe.cxx |8 -
 sw/source/filter/html/htmlform.cxx  |   10 -
 sw/source/filter/ww8/ww8atr.cxx |4 
 sw/source/filter/ww8/ww8par.cxx |2 
 sw/source/filter/ww8/ww8par4.cxx|3 
 sw/source/ui/dbui/mmresultdialogs.cxx   |6 -
 sw/source/ui/index/cntex.cxx|6 -
 sw/source/uibase/config/fontcfg.cxx |2 
 sw/source/uibase/dbui/mailmergehelper.cxx   |2 
 sw/source/uibase/shells/drformsh.cxx|2 
 sw/source/uibase/shells/textdrw.cxx |4 
 sw/source/uibase/uiview/viewtab.cxx |   12 +-
 sw/source/uibase/uno/unoatxt.cxx|4 
 sw/source/uibase/uno/unotxdoc.cxx   |4 
 59 files changed, 117 insertions(+), 216 deletions(-)

New commits:
commit 7139563afe073b0e4e819fdaf7fe285e597f4c5f
Author: Noel Grandin 
Date:   Fri Mar 3 16:42:37 2017 +0200

make use of the SfxItemSet::GetItem method

Change-Id: I8201429993129b019a6dd51c203a9f8dcbb2253e
Reviewed-on: https://gerrit.libreoffice.org/34867
Tested-by: Jenkins 
Reviewed-by: Noel Grandin 

diff --git a/cui/source/tabpages/paragrph.cxx b/cui/source/tabpages/paragrph.cxx
index 3c28357..5a3e94cf 100644
--- a/cui/source/tabpages/paragrph.cxx
+++ b/cui/source/tabpages/paragrph.cxx
@@ -1619,7 +1619,7 @@ void SvxExtParagraphTabPage::Reset( const SfxItemSet* 
rSet )
 {
 m_pPageNumBox->EnableTriState(false);
 m_pPageNumBox->SetState(TRISTATE_TRUE);
-

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

2017-03-05 Thread Noel Grandin
 include/svtools/parhtml.hxx  |   34 +++-
 sfx2/source/bastyp/frmhtml.cxx   |8 --
 sfx2/source/bastyp/sfxhtml.cxx   |8 +-
 svtools/source/svhtml/htmlsupp.cxx   |   14 +--
 svtools/source/svhtml/parhtml.cxx|   78 +--
 sw/source/filter/html/htmldrawreader.cxx |   26 ++
 sw/source/filter/html/htmlfld.cxx|  124 +++
 sw/source/filter/html/htmlform.cxx   |   32 
 sw/source/filter/html/htmlgrin.cxx   |8 +-
 sw/source/filter/html/htmlnumreader.cxx  |   16 +---
 sw/source/filter/html/htmlsect.cxx   |3 
 sw/source/filter/html/htmltab.cxx|   43 +++---
 sw/source/filter/html/swhtml.cxx |   33 
 sw/source/filter/html/swhtml.hxx |6 -
 14 files changed, 201 insertions(+), 232 deletions(-)

New commits:
commit 59fbef6cf83083d678571f706bebd5f3147a3d0e
Author: Noel Grandin 
Date:   Thu Mar 2 12:20:07 2017 +0200

templatize HTMLEnumOption::GetEnum methods

And consequently fix bug in htmlfld.cxx in
the RES_DOCSTATFLD/SwDocStatSubType handling, where it was updating
the m_bUpdateDocStat fields by comparing the wrong enum variable.

Change-Id: If9a68699a9d375ace120a3bf4f4bf4d4ae20a8e0
Reviewed-on: https://gerrit.libreoffice.org/34857
Tested-by: Jenkins 
Reviewed-by: Noel Grandin 

diff --git a/include/svtools/parhtml.hxx b/include/svtools/parhtml.hxx
index f481066..a46f07f 100644
--- a/include/svtools/parhtml.hxx
+++ b/include/svtools/parhtml.hxx
@@ -72,10 +72,11 @@ enum HTMLScriptLanguage
 HTML_SL_UNKNOWN
 };
 
+template
 struct HTMLOptionEnum
 {
 const sal_Char *pName;  // value of an HTML option
-sal_uInt16 nValue;  // and corresponding value of an enum
+EnumT   nValue; // and corresponding value of an enum
 };
 
 /** Representation of an HTML option (=attribute in a start tag).
@@ -105,10 +106,33 @@ public:
 void GetNumbers( std::vector  ) const; // ... as 
numbers
 void GetColor( Color& ) const;  // ... as color
 
-// ... as enum; pOptEnums is an HTMLOptionEnum array
-sal_uInt16 GetEnum( const HTMLOptionEnum *pOptEnums,
-sal_uInt16 nDflt=0 ) const;
-bool GetEnum( sal_uInt16 , const HTMLOptionEnum *pOptEnums ) const;
+template
+EnumT GetEnum( const HTMLOptionEnum *pOptEnums,
+EnumT nDflt = static_cast(0) ) const
+{
+while( pOptEnums->pName )
+{
+if( aValue.equalsIgnoreAsciiCaseAscii( pOptEnums->pName ) )
+return pOptEnums->nValue;
+pOptEnums++;
+}
+return nDflt;
+}
+
+template
+bool GetEnum( EnumT , const HTMLOptionEnum *pOptEnums ) const
+{
+while( pOptEnums->pName )
+{
+if( aValue.equalsIgnoreAsciiCaseAscii( pOptEnums->pName ) )
+{
+rEnum = pOptEnums->nValue;
+return true;
+}
+pOptEnums++;
+}
+return false;
+}
 
 // ... and as a few special enums
 HTMLInputType GetInputType() const; // 
diff --git a/sfx2/source/bastyp/frmhtml.cxx b/sfx2/source/bastyp/frmhtml.cxx
index e421373..af567e9 100644
--- a/sfx2/source/bastyp/frmhtml.cxx
+++ b/sfx2/source/bastyp/frmhtml.cxx
@@ -38,12 +38,12 @@ static sal_Char const sHTML_SC_auto[] = "AUTO";
 #define HTML_O_READONLY "READONLY"
 #define HTML_O_EDIT "EDIT"
 
-static HTMLOptionEnum const aScollingTable[] =
+static HTMLOptionEnum const aScrollingTable[] =
 {
 { sHTML_SC_yes, ScrollingYes},
 { sHTML_SC_no,  ScrollingNo },
 { sHTML_SC_auto,ScrollingAuto   },
-{ nullptr,0   }
+{ nullptr,  (ScrollingMode)0 }
 };
 
 void SfxFrameHTMLParser::ParseFrameOptions(
@@ -93,9 +93,7 @@ void SfxFrameHTMLParser::ParseFrameOptions(
 bMarginHeight = true;
 break;
 case HTML_O_SCROLLING:
-pFrame->SetScrollingMode(
-(ScrollingMode)rOption.GetEnum( aScollingTable,
- ScrollingAuto ) );
+pFrame->SetScrollingMode( rOption.GetEnum( aScrollingTable, 
ScrollingAuto ) );
 break;
 case HTML_O_FRAMEBORDER:
 {
diff --git a/sfx2/source/bastyp/sfxhtml.cxx b/sfx2/source/bastyp/sfxhtml.cxx
index 5402493..ef9a066 100644
--- a/sfx2/source/bastyp/sfxhtml.cxx
+++ b/sfx2/source/bastyp/sfxhtml.cxx
@@ -47,15 +47,15 @@ using namespace ::com::sun::star;
 
 
 // 
-static HTMLOptionEnum const aAreaShapeOptEnums[] =
+static HTMLOptionEnum const aAreaShapeOptEnums[] =
 {
 { OOO_STRING_SVTOOLS_HTML_SH_rect,  IMAP_OBJ_RECTANGLE  },
 { OOO_STRING_SVTOOLS_HTML_SH_rectangle, IMAP_OBJ_RECTANGLE  },
 { OOO_STRING_SVTOOLS_HTML_SH_circ,  IMAP_OBJ_CIRCLE

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

2017-03-05 Thread Jochen Nitschke
 sw/source/core/docnode/node.cxx  |7 +++
 sw/source/core/layout/atrfrm.cxx |4 ++--
 2 files changed, 5 insertions(+), 6 deletions(-)

New commits:
commit e07dc67dedcb8450bc9d6076f5ef5322c316d20a
Author: Jochen Nitschke 
Date:   Mon Mar 6 00:13:15 2017 +0100

remove unnecessary casts

Change-Id: Ied96b8eea548771a71e69684ced1f1f3699ca237
Reviewed-on: https://gerrit.libreoffice.org/34910
Tested-by: Jenkins 
Reviewed-by: Noel Grandin 

diff --git a/sw/source/core/docnode/node.cxx b/sw/source/core/docnode/node.cxx
index 758a7c4..74a1698 100644
--- a/sw/source/core/docnode/node.cxx
+++ b/sw/source/core/docnode/node.cxx
@@ -1114,14 +1114,14 @@ bool SwContentNode::InvalidateNumRule()
 SwContentFrame *SwContentNode::getLayoutFrame( const SwRootFrame* _pRoot,
 const Point* pPoint, const SwPosition *pPos, const bool bCalcFrame ) const
 {
-return static_cast( ::GetFrameOfModify( _pRoot, 
*const_cast(static_cast(this)), FRM_CNTNT,
+return static_cast( ::GetFrameOfModify( _pRoot, *this, 
FRM_CNTNT,
 pPoint, pPos, bCalcFrame ));
 }
 
 SwRect SwContentNode::FindLayoutRect( const bool bPrtArea, const Point* pPoint 
) const
 {
 SwRect aRet;
-SwContentFrame* pFrame = static_cast( ::GetFrameOfModify( 
nullptr, *const_cast(static_cast(this)),
+SwContentFrame* pFrame = static_cast( ::GetFrameOfModify( 
nullptr, *this,
 FRM_CNTNT, pPoint ) );
 if( pFrame )
 aRet = bPrtArea ? pFrame->Prt() : pFrame->Frame();
@@ -1131,8 +1131,7 @@ SwRect SwContentNode::FindLayoutRect( const bool 
bPrtArea, const Point* pPoint )
 SwRect SwContentNode::FindPageFrameRect() const
 {
 SwRect aRet;
-SwFrame* pFrame = ::GetFrameOfModify( nullptr, 
*const_cast(static_cast(this)),
-FRM_CNTNT );
+SwFrame* pFrame = ::GetFrameOfModify( nullptr, *this, FRM_CNTNT );
 if( pFrame && nullptr != ( pFrame = pFrame->FindPageFrame() ))
 aRet = pFrame->Frame();
 return aRet;
diff --git a/sw/source/core/layout/atrfrm.cxx b/sw/source/core/layout/atrfrm.cxx
index 3c513ec7..496dda2 100644
--- a/sw/source/core/layout/atrfrm.cxx
+++ b/sw/source/core/layout/atrfrm.cxx
@@ -2691,7 +2691,7 @@ SwRect SwFrameFormat::FindLayoutRect( const bool 
bPrtArea, const Point* pPoint )
 else
 {
 const SwFrameType nFrameType = RES_FLYFRMFMT == Which() ? 
SwFrameType::Fly : FRM_ALL;
-pFrame = ::GetFrameOfModify( nullptr, 
*const_cast(static_cast(this)), nFrameType, 
pPoint);
+pFrame = ::GetFrameOfModify( nullptr, *this, nFrameType, pPoint);
 }
 
 if( pFrame )
@@ -3022,7 +3022,7 @@ void SwFlyFrameFormat::MakeFrames()
 
 SwFlyFrame* SwFlyFrameFormat::GetFrame( const Point* pPoint ) const
 {
-return static_cast(::GetFrameOfModify( nullptr, 
*const_cast(static_cast(this)), SwFrameType::Fly,
+return static_cast(::GetFrameOfModify( nullptr, *this, 
SwFrameType::Fly,
 pPoint ));
 }
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2017-03-05 Thread Jochen Nitschke
 sd/source/ui/func/fuprlout.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 7548289d6342bc26563360b9d8c0b37c7b03b38b
Author: Jochen Nitschke 
Date:   Mon Mar 6 00:24:09 2017 +0100

cppcheck: knownConditionTrueFalse

> Condition '!bError' is always true

Change-Id: I8dc7293ab57f765cc532565cac3d009742152387
Reviewed-on: https://gerrit.libreoffice.org/34911
Tested-by: Jenkins 
Reviewed-by: Noel Grandin 

diff --git a/sd/source/ui/func/fuprlout.cxx b/sd/source/ui/func/fuprlout.cxx
index 5674262..e615de9 100644
--- a/sd/source/ui/func/fuprlout.cxx
+++ b/sd/source/ui/func/fuprlout.cxx
@@ -239,7 +239,7 @@ void FuPresentationLayout::DoExecute( SfxRequest& rReq )
 static_cast(mpView)->BlockPageOrderChangedHint(false);
 
 // if the master page was visible, show it again
-if (!bError && !aSelectedPages.empty())
+if (!aSelectedPages.empty())
 {
 if (bOnMaster)
 {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2017-03-05 Thread Zdeněk Crhonek
 basic/qa/cppunit/test_vba.cxx |1 
 basic/qa/vba_tests/choose.vb  |   81 ++
 2 files changed, 82 insertions(+)

New commits:
commit 8528712b6e81c67002667305d4d5311f66929e60
Author: Zdeněk Crhonek 
Date:   Sun Mar 5 23:57:15 2017 +0100

VBA test CHOOSE  function

Change-Id: Ieb76595199ea1f6c23924d4860228fe5f4d30df1
Reviewed-on: https://gerrit.libreoffice.org/34909
Tested-by: Jenkins 
Reviewed-by: Zdenek Crhonek 

diff --git a/basic/qa/cppunit/test_vba.cxx b/basic/qa/cppunit/test_vba.cxx
index 5a44f9c..df33224 100644
--- a/basic/qa/cppunit/test_vba.cxx
+++ b/basic/qa/cppunit/test_vba.cxx
@@ -63,6 +63,7 @@ void VBATest::testMiscVBAFunctions()
 "cbool.vb",
 "cdate.vb",
 "cdbl.vb",
+"choose.vb",
 #ifndef WIN32 // missing 64bit Currency marshalling.
 "win32compat.vb", // windows compatibility hooks.
 #endif
diff --git a/basic/qa/vba_tests/choose.vb b/basic/qa/vba_tests/choose.vb
new file mode 100644
index 000..09ce64a
--- /dev/null
+++ b/basic/qa/vba_tests/choose.vb
@@ -0,0 +1,81 @@
+Option VBASupport 1
+Option Explicit
+Dim passCount As Integer
+Dim failCount As Integer
+Dim result As String
+
+Function doUnitTest() As String
+result = verify_testChoose()
+If failCount <> 0 And passCount > 0 Then
+doUnitTest = result
+Else
+doUnitTest = "OK"
+End If
+End Function
+
+
+
+Function verify_testChoose() As String
+
+passCount = 0
+failCount = 0
+
+result = "Test Results" & Chr$(10) & "" & Chr$(10)
+
+Dim testName As String
+Dim TestDateTime As Date
+Dim var1, var2
+testName = "Test Choose function"
+
+
+On Error GoTo errorHandler
+
+var2 = "Libre"
+var1 = Choose(1, "Libre", "Office", "Suite")
+TestLog_ASSERT var1 = var2, "the return Choose is: " & var1
+
+var2 = "Office"
+var1 = Choose(2, "Libre", "Office", "Suite")
+TestLog_ASSERT var1 = var2, "the return Choose is: " & var1
+
+var2 = "Suite"
+var1 = Choose(3, "Libre", "Office", "Suite")
+TestLog_ASSERT var1 = var2, "the return Choose is: " & var1
+
+
+var1 = Choose(4, "Libre", "Office", "Suite")
+TestLog_ASSERT IsNull(var1), "the return Choose is: Null4 "  
+
+var1 = Choose(0, "Libre", "Office", "Suite")
+TestLog_ASSERT IsNull(var1), "the return Choose is: Null0 " 
+
+var1 = Choose(-1, "Libre", "Office", "Suite")
+TestLog_ASSERT IsNull(var1), "the return Choose is: Null-1"
+
+result = result & Chr$(10) & "Tests passed: " & passCount & Chr$(10) & 
"Tests failed: " & failCount & Chr$(10)
+verify_testChoose = result
+
+Exit Function
+errorHandler:
+TestLog_ASSERT (False), testName & ": hit error handler"
+End Function
+
+Sub TestLog_ASSERT(assertion As Boolean, Optional testId As String, Optional 
testComment As String)
+
+If assertion = True Then
+passCount = passCount + 1
+Else
+Dim testMsg As String
+If Not IsMissing(testId) Then
+testMsg = testMsg + " : " + testId
+End If
+If Not IsMissing(testComment) And Not (testComment = "") Then
+testMsg = testMsg + " (" + testComment + ")"
+End If
+
+result = result & Chr$(10) & " Failed: " & testMsg
+failCount = failCount + 1
+End If
+
+End Sub
+
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 106033] LC_MESSAGE changes keyboard coding

2017-03-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106033

--- Comment #7 from Yan  ---
Debian libreoffice resets the environment by starting it via script:

LO_SAVE_LC_ALL="$LC_ALL"
LC_ALL=C
export LC_ALL

What exactly happens on your machine depends on the scripts called implicitly.

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


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

2017-03-05 Thread Takeshi Abe
 starmath/source/parse.cxx |6 ++
 1 file changed, 2 insertions(+), 4 deletions(-)

New commits:
commit dbb3123e7a1dbd6d64009f0b101fef7173a6870e
Author: Takeshi Abe 
Date:   Sat Mar 4 06:55:24 2017 +0900

starmath: Push next token to escape only in a valid case

Change-Id: I935e7d2992a93ff451bcc5689f2dc59fe7afff40
Reviewed-on: https://gerrit.libreoffice.org/34875
Tested-by: Jenkins 
Reviewed-by: Takeshi Abe 

diff --git a/starmath/source/parse.cxx b/starmath/source/parse.cxx
index 4bb9ff7..a2ba869 100644
--- a/starmath/source/parse.cxx
+++ b/starmath/source/parse.cxx
@@ -1548,14 +1548,12 @@ void SmParser::DoEscape()
 case TRLINE :
 case TLDLINE :
 case TRDLINE :
+
m_aNodeStack.push_front(o3tl::make_unique(m_aCurToken));
+NextToken();
 break;
 default:
 Error(SmParseError::UnexpectedToken);
 }
-
-m_aNodeStack.push_front(o3tl::make_unique(m_aCurToken));
-
-NextToken();
 }
 
 void SmParser::DoOperator()
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 106350] New: FORMATTING: literal tab \0x09 in text in cell lost after FILESAVE/FILEOPEN

2017-03-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106350

Bug ID: 106350
   Summary: FORMATTING: literal tab \0x09 in text in cell lost
after FILESAVE/FILEOPEN
   Product: LibreOffice
   Version: 5.2.5.1 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: jhow...@alumni.caltech.edu

Description:
If prose text is entered into a spreadsheet cell and that text contains a
literal ASCII/UTF-8  (0x09) character, it will display as expected UNTIL
the spreadsheet is saved and re-opened.  On re-opening, the 'tab' 
character is lost in the cell's text.

I do not know if the  (0x09) is lost during the FILESAVE operation, or lost
in the subsequent FILEOPEN operation.

Steps to Reproduce:
1. Open new Cals spreadsheet
2. Enter text into a cell
3. Enter a literal ASCII/UTF-8 'tab'  (0x09) in amongst the
  characters of the cell
4. Notice that text displayed in the cell correctly 'obeys' the
  intent of a horizontal tab, and stays that way if Calc
  saves the file (remains open, without [Close])
5. Go ahead and [Save] and [Exit]
6. Re-open the file with Calc
7. Notice that the 'tab' (amongst the characters originally entered)
  is now gone - not even converted to a space (0x20)
8. Re-insertion of a 'tab'  character (as by paste from an entry
  in another editor) restores desired/expected visual appearance
  and alignment

Actual Results:  
'tab'  (0x09) character completely eliminated from spreadsheet cell's
textual data

Expected Results:
'tab'  (0x09) character preserved through FILESAVE and FILEOPEN


Reproducible: Always

User Profile Reset: No

Additional Info:
This operation sequence works as expected in MSFT Excel, for example.


User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36
(KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36

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


[Libreoffice-commits] online.git: loleaflet/src

2017-03-05 Thread Henry Castro
 loleaflet/src/layer/AnnotationManager.js |   55 +++-
 loleaflet/src/layer/tile/CalcTileLayer.js|   60 +++
 loleaflet/src/layer/tile/ImpressTileLayer.js |8 +++
 loleaflet/src/layer/tile/TileLayer.js|   28 
 loleaflet/src/layer/tile/WriterTileLayer.js  |8 +++
 5 files changed, 76 insertions(+), 83 deletions(-)

New commits:
commit 9af9ce98294ce141784469a79a3961d347197fcd
Author: Henry Castro 
Date:   Sun Mar 5 22:19:23 2017 -0400

loleaflet: simplify popup menu of the annotation objects

Change-Id: I2eee2e317afc01fdb9aff90481cb546e3edf8b39

diff --git a/loleaflet/src/layer/AnnotationManager.js 
b/loleaflet/src/layer/AnnotationManager.js
index c816700..c07ab03 100644
--- a/loleaflet/src/layer/AnnotationManager.js
+++ b/loleaflet/src/layer/AnnotationManager.js
@@ -17,26 +17,6 @@ L.AnnotationManager = L.Class.extend({
this._map.on('AnnotationCancel', this._onAnnotationCancel, 
this);
this._map.on('AnnotationClick', this._onAnnotationClick, this);
this._map.on('AnnotationSave', this._onAnnotationSave, this);
-   var that = this;
-   $.contextMenu({
-   selector: '.loleaflet-annotation-menu',
-   trigger: 'none',
-   className: 'loleaflet-font',
-   items: {
-   modify: {
-   name: _('Modify'),
-   callback: function (key, options) {
-   
that._onAnnotationModify.call(that, options.$trigger.get(0).annotation);
-   }
-   },
-   remove: {
-   name: _('Remove'),
-   callback: function (key, options) {
-   
that._onAnnotationRemove.call(that, 
options.$trigger.get(0).annotation._data.id);
-   }
-   }
-   }
-   });
},
 
clear: function () {
@@ -188,9 +168,23 @@ L.AnnotationManager = L.Class.extend({
}
},
 
+   modify: function (annotation) {
+   annotation.edit();
+   this.select(annotation);
+   annotation.focus();
+   },
+
remove: function (id) {
+   var comment = {
+   Id: {
+   type: 'string',
+   value: id
+   }
+   };
+   this._map.sendUnoCommand('.uno:DeleteComment', comment);
this._map.removeLayer(this.removeItem(id));
this.unselect();
+   this._map.focus();
},
 
onACKComment: function (textMsg) {
@@ -216,7 +210,8 @@ L.AnnotationManager = L.Class.extend({
this.layout();
} else if (obj.comment.action === 'Remove') {
if (this.getItem(obj.comment.id)) {
-   this.remove(obj.comment.id);
+   this._map.removeLayer(this.removeItem(id));
+   this.unselect();
}
} else if (obj.comment.action === 'Modify') {
var modified = this.getItem(obj.comment.id);
@@ -241,24 +236,6 @@ L.AnnotationManager = L.Class.extend({
this.select(e.annotation);
},
 
-   _onAnnotationModify: function (annotation) {
-   annotation.edit();
-   this.select(annotation);
-   annotation.focus();
-   },
-
-   _onAnnotationRemove: function (id) {
-   var comment = {
-   Id: {
-   type: 'string',
-   value: id
-   }
-   };
-   this._map.sendUnoCommand('.uno:DeleteComment', comment);
-   this.remove(id);
-   this._map.focus();
-   },
-
_onAnnotationSave: function (e) {
var comment;
if (e.annotation._data.id === 'new') {
diff --git a/loleaflet/src/layer/tile/CalcTileLayer.js 
b/loleaflet/src/layer/tile/CalcTileLayer.js
index 000d795..4fbf4d1 100644
--- a/loleaflet/src/layer/tile/CalcTileLayer.js
+++ b/loleaflet/src/layer/tile/CalcTileLayer.js
@@ -63,36 +63,25 @@ L.CalcTileLayer = L.TileLayer.extend({
},
 
onAdd: function (map) {
-   var that = this;
L.TileLayer.prototype.onAdd.call(this, map);
this._annotations = {};
-   $.contextMenu({
-   selector: '.loleaflet-annotation-menu',
-   

[Libreoffice-bugs] [Bug 106337] calc from libreoffice-5-3 branch opens cell formatting when I click on hyphenation

2017-03-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106337

m.a.riosv  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||miguelangelrv@libreoffice.o
   ||rg
 Resolution|--- |NOTABUG

--- Comment #1 from m.a.riosv  ---
Because on the 'Alignment' tab of cell formatting is where the hyphenation
option is, you can select it after activate on the properties 'Wrap text
automatically'.
This is so from ever.

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


[Libreoffice-bugs] [Bug 106346] Crash in: ScPoolHelper::GetFormTable()

2017-03-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106346

Fred  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

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


[Libreoffice-bugs] [Bug 106346] Crash in: ScPoolHelper::GetFormTable()

2017-03-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106346

--- Comment #2 from Fred  ---
Created attachment 131664
  --> https://bugs.documentfoundation.org/attachment.cgi?id=131664=edit
Trying to change the background by value

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


Re: Applying as a participant in Google Summer of code

2017-03-05 Thread Shoaib Noor
https://github.com/shoaibnoor95/Google_Summer_of_code/tree/master/collection-for-google/Google_Summer_of_code
I have just updated my github account for the competition you can ask about any 
concept/application included in my repository
Regards
Shoaib Noor


From: Shoaib Noor
Sent: Friday, March 3, 2017 7:58:42 PM
To: libreoffice@lists.freedesktop.org
Subject: Applying as a participant in Google Summer of code


Dear All concern

Hope you are best of health
With due respect i am stating that i want to apply for the Google Summers of 
Code. I am a citizen of Pakistan and a student of BS(CS) in Iqra University 
besides it i am also learning Certified Mobile Application development and Full 
stack web development from a local organization which is affiliated from 
Microsoft and many other organization. I have good programming

skills in java currently making a professional restaurant management system in 
java and learning ASP.net and react.
I want to apply for the gsoc as a part of your organization and it is very kind 
of you if you suggest any project keeping in view the above mentioned expertise 
as per my point of view i might be good for the Libre office for android 
because i have the knowledge on both Java and C++ (console based).
Best Regards:

Shoaib Noor

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


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

2017-03-05 Thread Caolán McNamara
 vcl/inc/win/winlayout.hxx |   12 +++-
 vcl/win/gdi/winlayout.cxx |   38 --
 2 files changed, 19 insertions(+), 31 deletions(-)

New commits:
commit 29d2f85e198d5b844d5a10562723a65173cf22ea
Author: Caolán McNamara 
Date:   Sun Mar 5 21:35:23 2017 +

Restore "pPos and pGetNextGlypInfo always have the same value"

and...

"pEraseRect is always null"

This reverts commit b398dacbb471913e573e9b0b4cd31d94a9109223.

Change-Id: I5e7c07eefff0b6bd39d9ed7492134ea062e90fdf
Reviewed-on: https://gerrit.libreoffice.org/34907
Tested-by: Jenkins 
Reviewed-by: Khaled Hosny 

diff --git a/vcl/inc/win/winlayout.hxx b/vcl/inc/win/winlayout.hxx
index 42b25b6..bc1890b 100644
--- a/vcl/inc/win/winlayout.hxx
+++ b/vcl/inc/win/winlayout.hxx
@@ -179,9 +179,7 @@ public:
 
 virtual bool operator ()(CommonSalLayout const ,
 SalGraphics ,
-HDC hDC,
-const Rectangle* pRectToErase,
-Point* pPos, int* pGetNextGlypInfo) = 0;
+HDC hDC) = 0;
 };
 
 class ExTextOutRenderer : public TextOutRenderer
@@ -194,9 +192,7 @@ public:
 
 bool operator ()(CommonSalLayout const ,
 SalGraphics ,
-HDC hDC,
-const Rectangle* pRectToErase,
-Point* pPos, int* pGetNextGlypInfo) override;
+HDC hDC) override;
 };
 
 class D2DWriteTextOutRenderer : public TextOutRenderer
@@ -219,9 +215,7 @@ public:
 
 bool operator ()(CommonSalLayout const ,
 SalGraphics ,
-HDC hDC,
-const Rectangle* pRectToErase,
-Point* pPos, int* pGetNextGlypInfo) override;
+HDC hDC) override;
 
 inline bool BindDC(HDC hDC, Rectangle const & rRect = Rectangle(0, 0, 0, 
0)) {
 RECT const rc = { rRect.Left(), rRect.Top(), rRect.Right(), 
rRect.Bottom() };
diff --git a/vcl/win/gdi/winlayout.cxx b/vcl/win/gdi/winlayout.cxx
index c884c9e..a8d71fc 100644
--- a/vcl/win/gdi/winlayout.cxx
+++ b/vcl/win/gdi/winlayout.cxx
@@ -264,12 +264,8 @@ TextOutRenderer & TextOutRenderer::get(bool bUseDWrite)
 
 bool ExTextOutRenderer::operator ()(CommonSalLayout const ,
 SalGraphics & /*rGraphics*/,
-HDC hDC,
-const Rectangle* pRectToErase,
-Point* pPos, int* pGetNextGlypInfo)
+HDC hDC)
 {
-bool bGlyphs = false;
-const GlyphItem* pGlyph;
 HFONT hFont = static_cast(GetCurrentObject( hDC, OBJ_FONT ));
 HFONT hAltFont = nullptr;
 bool bUseAltFont = false;
@@ -284,16 +280,19 @@ bool ExTextOutRenderer::operator ()(CommonSalLayout const 
,
 hAltFont = CreateFontIndirectW();
 }
 }
-while (rLayout.GetNextGlyphs(1, , *pPos, *pGetNextGlypInfo))
+
+int nStart = 0;
+Point aPos(0, 0);
+const GlyphItem* pGlyph;
+while (rLayout.GetNextGlyphs(1, , aPos, nStart))
 {
-bGlyphs = true;
 WORD glyphWStr[] = { pGlyph->maGlyphId };
 if (hAltFont && pGlyph->IsVertical() == bUseAltFont)
 {
 bUseAltFont = !bUseAltFont;
 SelectFont(hDC, bUseAltFont ? hAltFont : hFont);
 }
-ExtTextOutW(hDC, pPos->X(), pPos->Y(), ETO_GLYPH_INDEX, nullptr, 
LPCWSTR(), 1, nullptr);
+ExtTextOutW(hDC, aPos.X(), aPos.Y(), ETO_GLYPH_INDEX, nullptr, 
LPCWSTR(), 1, nullptr);
 }
 if (hAltFont)
 {
@@ -302,7 +301,7 @@ bool ExTextOutRenderer::operator ()(CommonSalLayout const 
,
 DeleteObject(hAltFont);
 }
 
-return (pRectToErase && bGlyphs);
+return true;
 }
 
 D2DWriteTextOutRenderer::D2DWriteTextOutRenderer()
@@ -343,9 +342,7 @@ D2DWriteTextOutRenderer::~D2DWriteTextOutRenderer()
 
 bool D2DWriteTextOutRenderer::operator ()(CommonSalLayout const ,
 SalGraphics ,
-HDC hDC,
-const Rectangle* pRectToErase,
-Point* pPos, int* pGetNextGlypInfo)
+HDC hDC)
 {
 if (!Ready())
 return false;
@@ -353,7 +350,7 @@ bool D2DWriteTextOutRenderer::operator ()(CommonSalLayout 
const ,
 if (!BindFont(hDC))
 {
 // If for any reason we can't bind fallback to legacy APIs.
-return ExTextOutRenderer()(rLayout, rGraphics, hDC, pRectToErase, 
pPos, pGetNextGlypInfo);
+return ExTextOutRenderer()(rLayout, rGraphics, hDC);
 }
 
 Rectangle bounds;
@@ -365,19 +362,19 @@ bool D2DWriteTextOutRenderer::operator ()(CommonSalLayout 
const ,
 succeeded &= 
SUCCEEDED(mpRT->CreateSolidColorBrush(D2D1::ColorF(GetRValue(bgrTextColor) / 
255.0f, GetGValue(bgrTextColor) / 255.0f, GetBValue(bgrTextColor) / 255.0f), 
));
 
 HRESULT hr = S_OK;
-bool bGlyphs = false;
 if (succeeded)
 {
 mpRT->BeginDraw();
 
+int nStart = 0;
+Point aPos(0, 0);
 const GlyphItem* pGlyph;
-while (rLayout.GetNextGlyphs(1, , *pPos, *pGetNextGlypInfo))
+while (rLayout.GetNextGlyphs(1, , aPos, nStart))
 {
-bGlyphs = true;
 UINT16 glyphIndices[] = { pGlyph->maGlyphId };
  

GSOC 17 Getting started

2017-03-05 Thread Karan Shah
Greetings,
I am Karan Shah, a CSE second year undergraduate from Mumbai, India.  I am
really really excited about the prospect of working under your organization
as a part of the upcoming GSOC 2017.
I am an Android enthusiast and would like to work on developing and
contributing towards the LibreOffice Android app.
I have seen the bugs list and I want to get started with solving the bugs.
Can you please guide me as to where to get started from?
Regards,
Karan.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 99352] Some VclPtrs leak past DeInitVCL

2017-03-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99352

Björn Michaelsen  changed:

   What|Removed |Added

 CC||bjoern.michaelsen@canonical
   ||.com,
   ||markus.mohrhard@googlemail.
   ||com

--- Comment #21 from Björn Michaelsen  ---
(In reply to Commit Notification from comment #19)
> Markus Mohrhard committed a patch related to this issue.
> http://cgit.freedesktop.org/libreoffice/core/commit/
> ?id=60708af4a7ed48028cf3158d1101568aa5b0da81
> 
> Revert "tdf#99352: ensure ChartController is disposing its VclPtrs on
> DeInitVCL"
> 
> The original patch crashes charts on disposing, e.g. during the UI testing.

@moggi: Do you have a reproduction scenario for that? Some random manual
teasing of chart2 didnt immediately yield anything, so something specific would
be helpful.

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


[Libreoffice-bugs] [Bug 106349] New: solenv/gbuild/ComponentTarget.mk:50: *** No LIBFILENAME

2017-03-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106349

Bug ID: 106349
   Summary: solenv/gbuild/ComponentTarget.mk:50: *** No
LIBFILENAME
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Android Viewer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: 1502677...@qq.com

I want to compile Libreoffice for Android on ubuntu. Before March  4, 2017,
this is ok. On March 5, 2017, update local source by git pull, then the
following error happen: 

core>git pull
core>make

core/solenv/gbuild/ComponentTarget.mk:50: *** No LIBFILENAME set at component
target:
/home/jonathan/Project/sources/core/workdir/ComponentTarget/xmlsecurity/util/xsec_gpg.component


Platform: ubuntu 16.04
Git: remotes/origin/HEAD -> origin/master

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


[Libreoffice-bugs] [Bug 63368] FORMATTING: Images attached to cell get mispositioned when spreadsheet is edited

2017-03-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=63368

--- Comment #8 from Thomas Lendo  ---
Bug still present in 5.3.0.3.

I created Bug 106336 for the same behavior especially for columns before I
found this bug. I didn't notice that the image positioning problem (if anchored
to cell) not only exists with columns but also with rows.

But this bug is cluttered with meaningless comments, the other bug has a too
special summary (up to now). A LibO bugzilla expert should decide what to do.

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


[Libreoffice-bugs] [Bug 105776] Writer page-down & page-up navigation in default single-page view

2017-03-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105776

Thomas Lendo  changed:

   What|Removed |Added

Version|5.2.5.1 release |Inherited From OOo

--- Comment #2 from Thomas Lendo  ---
That's an old bug inherited from OpenOffice.org

https://bz.apache.org/ooo/show_bug.cgi?id=88716 (Page Up and Page Down doesn't
scroll a full page the first time)

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


[Libreoffice-bugs] [Bug 68459] EDITING: frames are jumping and impossible to position correctly with arrow keys

2017-03-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=68459

Thomas Lendo  changed:

   What|Removed |Added

   Hardware|Other   |All
 OS|Windows (All)   |All

--- Comment #17 from Thomas Lendo  ---
I confirm the impossibility to move the frame in the described manner with
arrow keys.

I also discovered that you can't move the frame with the mouse to a position
within the paragraph that started at the page before. It's only possible to
anchor it to the next paragraph. Maybe that behavior for arrow keys and mouse
has the same cause.

Version: 5.3.0.3
Build ID: 1:5.3.0~rc3-0ubuntu1~trusty1.1
CPU Threads: 2; OS Version: Linux 3.13; UI Render: default; VCL: gtk2; Layout
Engine: new; 
Locale: de-AT (de_DE.UTF-8); Calc: group

Jumping when deleting a frame is also covered by Bug 101932. That bug is newer
as this one but to respect the "one report per bug" rule I would suggest to
handle the jumping issue there.

mango: I think it's unlikely that this bug will be fixed in the near future
unless you will personally find a developer who is willing to work on it. There
are a thousand times more issues than developers and the priority is not high -
see
https://wiki.documentfoundation.org/QA/Bugzilla/Fields/Priority#Priority_Levels

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


[Libreoffice-bugs] [Bug 106111] PDF and Print text is cut, different font size and auto row adjust fails (steps in comment 19)

2017-03-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106111

--- Comment #30 from Khaled Hosny  ---
Sorry, I meant platforms other than Windows.

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


[Libreoffice-bugs] [Bug 50699] Template Changer: Allow ability to change a document' s associated template

2017-03-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=50699

--- Comment #40 from Patrick Neve  ---
@Pierre C has the right point of view.  (AOo folks are not quite up to speed
with Open Source's inroads into the enterprise world, they essentially blew
this issue off).  MS Word seems to meet this need, perhaps part of the reason
(but only a small part, contracts and MS licensing protocols being the primary
along with the continuing prejudice against Open Source) it is still prevalent
in that space.

@Patrick Many thanks for your efforts to fix the extension!

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


[Libreoffice-bugs] [Bug 99352] Some VclPtrs leak past DeInitVCL

2017-03-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99352

--- Comment #20 from Björn Michaelsen  ---
So with: changeset https://gerrit.libreoffice.org/34883,
https://gerrit.libreoffice.org/34877 and https://gerrit.libreoffice.org/34841,
and some more info on where these leaking pointers where created this is down
to:

  1 LEAKED VCLPTR: P12OpenGLWindow created at OPERATOR= line -1 referred to
from a PK6VclPtrI12OpenGLWindowE
  1 LEAKED VCLPTR: P12OutputDevice created at
chart2/source/view/main/DrawModelWrapper.cxx line 114 referred to from a
PK6VclPtrI12OutputDeviceE
  1 LEAKED VCLPTR: P13VirtualDevice created at
svx/source/svdraw/sdrpaintwindow.cxx line 112 referred to from a
PK6VclPtrI13VirtualDeviceE
 33 LEAKED VCLPTR: P13VirtualDevice created at RESET line -1 referred to
from a PK6VclPtrI13VirtualDeviceE
 50 LEAKED VCLPTR: P13VirtualDevice created at unknown line -1 referred to
from a PK6VclPtrI13VirtualDeviceE
120 LEAKED VCLPTR: P12OutputDevice created at unknown line -1 referred to
from a PK6VclPtrI12OutputDeviceE
260 LEAKED VCLPTR: 

That is down from 317 non-null VclPtrs on deinit in Comment 12 to 206 non-null
VclPtrs (down by 35%).

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


[Libreoffice-bugs] [Bug 99839] German localization of "page count": Seitenanzahl instead of Seitenzahl

2017-03-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99839

--- Comment #6 from Thomas Lendo  ---
Created attachment 131663
  --> https://bugs.documentfoundation.org/attachment.cgi?id=131663=edit
Screenshots of UI elements to insert page count

Made with LibO version: 5.3.0.3
Build-ID: 1:5.3.0~rc3-0ubuntu1~trusty1.1
CPU-Threads: 2; BS-Version: Linux 3.13; UI-Render: Standard; VCL: gtk2;
Layout-Engine: neu; 
Gebietsschema: de-AT (de_DE.UTF-8); Calc: group

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


[Libreoffice-bugs] [Bug 60592] Template Changer: Can no longer assign document to different template, extension will not work

2017-03-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=60592

Patrick Neve  changed:

   What|Removed |Added

 CC||pmn...@yahoo.com

--- Comment #21 from Patrick Neve  ---
@Patrick: Do you know if 1.2.7d works with AOo 4.x?  I'm on the verge of moving
to Libre Office as my MS Office alternative but am loathe to risk existing
documents (am very risk-averse).  Am installing Lo today in any case.

I agree that this should be part of Lo (AOo folks call it Trivial... sigh) but
if the extension works I'm happy.

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


[Libreoffice-bugs] [Bug 106224] savemodified very large size missing

2017-03-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106224

--- Comment #2 from Commit Notification 
 ---
Maxim Monastirsky committed a patch related to this issue.
It has been pushed to "master":

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

tdf#106224 Support extra large savemodified icon

It will be available in 5.4.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
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 106224] savemodified very large size missing

2017-03-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106224

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:5.4.0

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


[Libreoffice-commits] core.git: framework/inc framework/source icon-themes/galaxy

2017-03-05 Thread Maxim Monastirsky
 framework/inc/classes/resource.hrc|1 +
 framework/source/classes/resource.src |5 +
 framework/source/uielement/popuptoolbarcontroller.cxx |8 ++--
 icon-themes/galaxy/res/savemodified_extralarge.png|binary
 4 files changed, 12 insertions(+), 2 deletions(-)

New commits:
commit 98a03d9b0d13b8f811ccf8fc1a9b7f9469ed079c
Author: Maxim Monastirsky 
Date:   Mon Mar 6 00:28:09 2017 +0200

tdf#106224 Support extra large savemodified icon

For now just duplicated the large icon in Galaxy,
to satisfy the resource compiler.

Change-Id: Icf31df0185a1ec7f080d9600b2536bcaa5d0783e

diff --git a/framework/inc/classes/resource.hrc 
b/framework/inc/classes/resource.hrc
index 83656e5..ad3d984 100644
--- a/framework/inc/classes/resource.hrc
+++ b/framework/inc/classes/resource.hrc
@@ -55,6 +55,7 @@
 
 #define BMP_SAVEMODIFIED_SMALL  (RID_IMAGE_START+0)
 #define BMP_SAVEMODIFIED_LARGE  (RID_IMAGE_START+1)
+#define BMP_SAVEMODIFIED_EXTRALARGE (RID_IMAGE_START+2)
 
 #define POPUPMENU_TOOLBAR_QUICKCUSTOMIZATION(RID_MENU_START+0)
 
diff --git a/framework/source/classes/resource.src 
b/framework/source/classes/resource.src
index 745e10e..0d3b02d 100644
--- a/framework/source/classes/resource.src
+++ b/framework/source/classes/resource.src
@@ -214,4 +214,9 @@ Bitmap BMP_SAVEMODIFIED_LARGE
 File = "savemodified_large.png";
 };
 
+Bitmap BMP_SAVEMODIFIED_EXTRALARGE
+{
+File = "savemodified_extralarge.png";
+};
+
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/framework/source/uielement/popuptoolbarcontroller.cxx 
b/framework/source/uielement/popuptoolbarcontroller.cxx
index 3fa27a8..74ff9da 100644
--- a/framework/source/uielement/popuptoolbarcontroller.cxx
+++ b/framework/source/uielement/popuptoolbarcontroller.cxx
@@ -507,8 +507,12 @@ void SaveToolbarController::updateImage()
 }
 else if ( m_bModified )
 {
-Image aResImage(BitmapEx(eImageType == vcl::ImageType::Size16 ? 
FwkResId(BMP_SAVEMODIFIED_SMALL) : FwkResId(BMP_SAVEMODIFIED_LARGE)));
-aImage = aResImage;
+if (eImageType == vcl::ImageType::Size26)
+aImage = Image(BitmapEx(FwkResId(BMP_SAVEMODIFIED_LARGE)));
+else if (eImageType == vcl::ImageType::Size32)
+aImage = Image(BitmapEx(FwkResId(BMP_SAVEMODIFIED_EXTRALARGE)));
+else
+aImage = Image(BitmapEx(FwkResId(BMP_SAVEMODIFIED_SMALL)));
 }
 
 if ( !aImage )
diff --git a/icon-themes/galaxy/res/savemodified_extralarge.png 
b/icon-themes/galaxy/res/savemodified_extralarge.png
new file mode 100644
index 000..c1052e0
Binary files /dev/null and b/icon-themes/galaxy/res/savemodified_extralarge.png 
differ
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 106111] PDF and Print text is cut, different font size and auto row adjust fails (steps in comment 19)

2017-03-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106111

--- Comment #29 from Xisco Faulí  ---
I can also reproduce it on window 7 with build

Version: 5.4.0.0.alpha0+
Build ID: eb7b03b052ffe8c2c577b2349987653db6c53f76
CPU threads: 1; OS: Windows 6.1; UI render: default; 
TinderBox: Win-x86@62-merge-TDF, Branch:MASTER, Time: 2017-02-26_22:34:18
Locale: es-ES (es_ES); Calc: group

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


[Libreoffice-bugs] [Bug 106111] PDF and Print text is cut, different font size and auto row adjust fails (steps in comment 19)

2017-03-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106111

--- Comment #28 from Khaled Hosny  ---
So we are calculating different line spacing when printing? This seems
seriously broken and probably indicates a bigger problem, can any one reproduce
this on other platforms?

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


[Libreoffice-bugs] [Bug 99839] German localization of "page count": Seitenanzahl instead of Seitenzahl

2017-03-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99839

Thomas Lendo  changed:

   What|Removed |Added

 CC||thomas.le...@gmail.com
Summary|Page numbering work |German localization of
   |proprely but the|"page count": Seitenanzahl
   |translation in German is in |instead of Seitenzahl
   |one case incorrect. |

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


[Libreoffice-bugs] [Bug 99839] Page numbering work proprely but the translation in German is in one case incorrect.

2017-03-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99839

Thomas Lendo  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
   Hardware|x86-64 (AMD64)  |All
 Ever confirmed|0   |1
   Severity|normal  |minor

--- Comment #5 from Thomas Lendo  ---
Berni, you can change the user interface language of LibreOffice with Extras >
Optionen... > Spracheinstellungen > Sprachen > Benutzeroberfläche

As a suggestion: For easier reading, keep your bug report short. People that
should conform or work on the bug don't want to read long text. :)

---

I took a look and it seems that the wording was changed from "Seitenanzahl" to
"Seitenzahl" since 5.1 because I coulnd't find the term "Seitenanzahl" (page
count) in the UI - but in the help pages.

I agree with the bug reporter that the term "Seitenanzahl" would be better
understandable or less ambiguous than "Seitenzahl" which could also be taken
for "Seitennummer" (page number).

I will set the status to NEW and will change the summary to make it better
understandable what this bug is for.

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


[Libreoffice-bugs] [Bug 106348] LibreOffice hangs opening multiple docx

2017-03-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106348

Xisco Faulí  changed:

   What|Removed |Added

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

--- Comment #1 from Xisco Faulí  ---
Unfortunately without clear steps to reproduce it, we cannot track down the
origin of the problem.
Please provide a clearer set of step-by-step instructions on how to reproduce
the problem.
I have set the bug's status to 'NEEDINFO'. Please change it back to
'UNCONFIRMED' once the steps are provided

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


[Libreoffice-bugs] [Bug 106348] New: LibreOffice hangs opening multiple docx

2017-03-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106348

Bug ID: 106348
   Summary: LibreOffice hangs opening multiple docx
   Product: LibreOffice
   Version: 5.3.0.3 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: sc...@health.qld.gov.au

Created attachment 131662
  --> https://bugs.documentfoundation.org/attachment.cgi?id=131662=edit
Task Manager view of rogue LibreOffice processes

On upgrading to 5.3.0.3, we found that LibreOffice hangs when called multiple
times from ApexOfficePrint.  I have also informed ApexOfficePrint of this
issue.

The symptoms are:  multiple rogue LibreOffice processes which need to be killed
manually.

This has been tested with both x86 and x64 versions of LibreOffice 5.3.0.3.

The earlier version that we were using, 5.2.2.2 x86,  does not present these
symptoms;  (we have now reverted to this release)

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


[Libreoffice-bugs] [Bug 89013] Regular expressions doesn' t work with MATCH and VLOOKUP when searched range is in other file.

2017-03-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89013

m.a.riosv  changed:

   What|Removed |Added

 CC||arnaud.versini@libreoffice.
   ||org

--- Comment #4 from m.a.riosv  ---
*** Bug 106334 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
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 106334] Cut and paste rows creates too much conditionnal formating

2017-03-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106334

m.a.riosv  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||miguelangelrv@libreoffice.o
   ||rg
 Resolution|--- |DUPLICATE

--- Comment #5 from m.a.riosv  ---


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

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


[Libreoffice-bugs] [Bug 105012] Tangut glyph orientation failed with OpenGL disabled

2017-03-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105012

--- Comment #13 from Khaled Hosny  ---
Firefox does not use GDI, does it?

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


[Libreoffice-bugs] [Bug 106342] Function LOOKUP don' t work correctly with symbols or numbers and text

2017-03-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106342

m.a.riosv  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||miguelangelrv@libreoffice.o
   ||rg
 Resolution|--- |NOTABUG

--- Comment #1 from m.a.riosv  ---
There two issues with your file,
The data on the searched vector must be sorted.
LOOKUP() use regular experssions, so you must deactivated it because the comma
is part of the regular expressions.
To avoid the issue with regular expressions:
Menu/Tools/Options/LibreOffice Calc/Calculate - No wildcards or regex in
formulas

To avoid the sort issue you can use the MATCH() function in combination with
INDEX():
B2: =INDEX($Productos.$A$2:$A$5000;MATCH(B2;$Productos.$B$2:$B$5000;0))

https://help.libreoffice.org/Calc/Spreadsheet_Functions#LOOKUP
https://help.libreoffice.org/Calc/Spreadsheet_Functions#MATCH

There is no bug, please if you are not agree, reopen it.

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


[Libreoffice-bugs] [Bug 106347] BASIC: word Null is recognized in string

2017-03-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106347

--- Comment #2 from raal  ---
Created attachment 131661
  --> https://bugs.documentfoundation.org/attachment.cgi?id=131661=edit
printscreen

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


[Libreoffice-bugs] [Bug 106347] BASIC: word Null is recognized in string

2017-03-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106347

--- Comment #1 from raal  ---
Created attachment 131660
  --> https://bugs.documentfoundation.org/attachment.cgi?id=131660=edit
test file

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


[Libreoffice-bugs] [Bug 106347] New: BASIC: word Null is recognized in string

2017-03-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106347

Bug ID: 106347
   Summary: BASIC: word Null is recognized in string
   Product: LibreOffice
   Version: 5.4.0.0.alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: BASIC
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: r...@post.cz

Description:
word Null is recognized in string

Steps to Reproduce:
1.open attached file
2.run macro


Actual Results:  
error


Expected Results:
Macro works



Reproducible: Always

User Profile Reset: No

Additional Info:


User-Agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:51.0) Gecko/20100101
Firefox/51.0

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


[Libreoffice-bugs] [Bug 106346] Crash in: ScPoolHelper::GetFormTable()

2017-03-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106346

Xisco Faulí  changed:

   What|Removed |Added

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

--- Comment #1 from Xisco Faulí  ---
Thank you for reporting the bug. Please attach a sample document, as this makes
it easier for us to verify the bug. 
I have set the bug's status to 'NEEDINFO'. Please change it back to
'UNCONFIRMED' once the requested document is provided.
(Please note that the attachment will be public, remove any sensitive
information before attaching it. 
See
https://wiki.documentfoundation.org/QA/FAQ#How_can_I_eliminate_confidential_data_from_a_sample_document.3F
for help on how to do so.)

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


[Libreoffice-bugs] [Bug 106346] New: Crash in: ScPoolHelper::GetFormTable()

2017-03-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106346

Bug ID: 106346
   Summary: Crash in: ScPoolHelper::GetFormTable()
   Product: LibreOffice
   Version: 5.2.5.1 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: fklusm...@aol.com

This bug was filed from the crash reporting server and is
br-768d2797-306c-4816-a048-69e9eff6f7af.
=
EDITING

Version: 5.2.5.1
Build ID: 0312e1a284a7d50ca85a365c316c7abbf20a4d22
CPU Threads: 4; OS Version: Windows 6.2; UI Render: default; 
Locale: en-US (en_US); Calc: group

I was "practicing" conditional formatting, using paste special to copy
conditionally formatted from one column to another (with values entered) when
the crash occurred. An example of what I was doing:   
Column B
Row 6:  3.25

Row 8:  4.50

Row 10: 3.00
Row 11: 4.00
Row 12: 5.00

The conditional formatting for B10:B25 is:
C 1: Cell Value is equal to "" Apply Style Default.
C 2: Cell Value greater than $Sheet3.$B$8 Apply Style "HighBG" (red
background).
C 3: Cell Value less than $Sheet3.$B$6 Apply Style "LowBG" (yellow background).

I copied (Paste special - format only) B10 to D10, then used manage to edit
(the "high" and "low" value cell reference and verify /change the range. I did
this several times (different target ranges) before the crash.

I hope this helps you
-- Fred

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


[Libreoffice-bugs] [Bug 106111] PDF and Print text is cut, different font size and auto row adjust fails (steps in comment 19)

2017-03-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106111

--- Comment #26 from OfficeUser  ---
Can set  5.3.1 as target milestone?

--- Comment #27 from OfficeUser  ---
Can we set  5.3.1 as target milestone?

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


[Libreoffice-bugs] [Bug 106111] PDF and Print text is cut, different font size and auto row adjust fails (steps in comment 19)

2017-03-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106111

--- Comment #26 from OfficeUser  ---
Can set  5.3.1 as target milestone?

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


[Libreoffice-bugs] [Bug 106345] New: In search of a better name for last line justification

2017-03-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106345

Bug ID: 106345
   Summary: In search of a better name for last line justification
   Product: LibreOffice
   Version: 5.3.0.3 release
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: trivial
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: munzirt...@gmail.com

Description:
Format -> Paragraph -> Alignment -> Justified -> Last Line: left
The word left here is correct in left to right languages but in RTL it works as
right. The current functionality is correct but the name is misleading. I
suggest changing it to something like "start" or as scribus use of "justified"
and "force justfied" for the two modes if you wish.

Steps to Reproduce:
Format -> Paragraph

Actual Results:  
It shows "left"

Expected Results:
Should show "start"


Reproducible: Always

User Profile Reset: No

Additional Info:


User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:51.0) Gecko/20100101
Firefox/51.0

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


[Libreoffice-bugs] [Bug 105860] CALC: line spacing different between program versions

2017-03-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105860

--- Comment #15 from OfficeUser  ---
@Xisco: Thank you very much for the successful bibisect!

This patch makes so much trouble and must be revoked asap with effect for the
next  bugfix release. Is it already revoked from the branch?

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


[Libreoffice-bugs] [Bug 106111] PDF and Print text is cut, different font size and auto row adjust fails (steps in comment 19)

2017-03-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106111

OfficeUser  changed:

   What|Removed |Added

 Status|RESOLVED|NEW
 Resolution|DUPLICATE   |---

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


[Libreoffice-ux-advise] [Bug 105860] CALC: line spacing different between program versions

2017-03-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105860

--- Comment #14 from OfficeUser  ---
*** Bug 106111 has been marked as a duplicate of this bug. ***

-- 
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
https://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise


[Libreoffice-bugs] [Bug 105860] CALC: line spacing different between program versions

2017-03-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105860

--- Comment #14 from OfficeUser  ---
*** Bug 106111 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
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 97356] implement fallback export of Math object in PPTX

2017-03-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97356

Aleksas Pantechovskis  changed:

   What|Removed |Added

 CC||alex.pan...@gmail.com
   Assignee|libreoffice-b...@lists.free |alex.pan...@gmail.com
   |desktop.org |

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


[Libreoffice-bugs] [Bug 105012] Tangut glyph orientation failed with OpenGL disabled

2017-03-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105012

--- Comment #12 from Volga  ---
On this page I found Tangut N4694 works fine on Firefox, so how does FF
performanced?
https://wikisource.org/wiki/Tangut_Script_With_Chinese_Equivalents

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


[Libreoffice-bugs] [Bug 106111] PDF and Print text is cut, different font size and auto row adjust fails (steps in comment 19)

2017-03-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106111

OfficeUser  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #25 from OfficeUser  ---
@Xisco: Thank you very much for the successful bisect!

This patch makes so much trouble and must be revoked asap with effect for the
next  bugfix release. Is it already revoked from the branch?

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

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


[Libreoffice-bugs] [Bug 106111] PDF and Print text is cut, different font size and auto row adjust fails (steps in comment 19)

2017-03-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106111

Xisco Faulí  changed:

   What|Removed |Added

 Status|RESOLVED|NEW
 Resolution|DUPLICATE   |---

--- Comment #24 from Xisco Faulí  ---
I think better to keep it open...

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


[Libreoffice-bugs] [Bug 106111] PDF and Print text is cut, different font size and auto row adjust fails (steps in comment 19)

2017-03-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106111

--- Comment #23 from Khaled Hosny  ---
No idea what is going on, why calculating correct line height would affect
PDF/printing differently than the rendering on screen?

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


[Libreoffice-bugs] [Bug 100419] Can't scroll to the last page in print preview

2017-03-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100419

--- Comment #13 from Thomas Lendo  ---
I conform that the test file from kolAflash doesn't show the last page in print
preview when scrolling with mouse wheel with:

Version: 5.3.0.3
Build ID: 1:5.3.0~rc3-0ubuntu1~trusty1.1
CPU Threads: 2; OS Version: Linux 3.13; UI Render: default; VCL: gtk2; Layout
Engine: new; 
Locale: de-AT (de_DE.UTF-8); Calc: group

I noticed a similar behavior with a master document when print previewing the
whole document including sub-documents (in total about 150 page). Sometimes the
last 1-5 pages will not be shown when scrolling with mouse wheel. But I haven't
figured out when it occurs and when not. I assume the same cause. Used LibO
version 5.1.4.2 on Windows 8.

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


[Libreoffice-ux-advise] [Bug 105860] CALC: line spacing different between program versions

2017-03-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105860

--- Comment #13 from Xisco Faulí  ---
(In reply to Khaled Hosny from comment #7)
> We were already using different spacing on Linux and Mac, so at least we are
> now consistent across platforms.
> 
> I don’t consider this a regression, it is by design to fix how line spacing
> is calculated once and for all, which fixes issues like bug 55469.
> 
> This is not a bug AFAIC, however if we think strongly about preserving
> backward compatibility here (including the bugs, of course) then I think a
> flag needs to be set somewhere for old documents and propagated to VCL that
> signals calculating line spacing the old way.

After bug 106111, which is introduced by
34d7602954d4483b3bc9db700e7df2c15348947a, this can be considered a regression
in my humble opinion...

-- 
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
https://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise


[Libreoffice-bugs] [Bug 105860] CALC: line spacing different between program versions

2017-03-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105860

--- Comment #13 from Xisco Faulí  ---
(In reply to Khaled Hosny from comment #7)
> We were already using different spacing on Linux and Mac, so at least we are
> now consistent across platforms.
> 
> I don’t consider this a regression, it is by design to fix how line spacing
> is calculated once and for all, which fixes issues like bug 55469.
> 
> This is not a bug AFAIC, however if we think strongly about preserving
> backward compatibility here (including the bugs, of course) then I think a
> flag needs to be set somewhere for old documents and propagated to VCL that
> signals calculating line spacing the old way.

After bug 106111, which is introduced by
34d7602954d4483b3bc9db700e7df2c15348947a, this can be considered a regression
in my humble opinion...

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


[Libreoffice-bugs] [Bug 105860] CALC: line spacing different between program versions

2017-03-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105860

Xisco Faulí  changed:

   What|Removed |Added

 CC||norbert.n...@gmx.de

--- Comment #12 from Xisco Faulí  ---
*** Bug 106111 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
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-ux-advise] [Bug 105860] CALC: line spacing different between program versions

2017-03-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105860

Xisco Faulí  changed:

   What|Removed |Added

 CC||norbert.n...@gmx.de

--- Comment #12 from Xisco Faulí  ---
*** Bug 106111 has been marked as a duplicate of this bug. ***

-- 
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
https://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise


[Libreoffice-bugs] [Bug 106111] PDF and Print text is cut, different font size and auto row adjust fails (steps in comment 19)

2017-03-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106111

Xisco Faulí  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #22 from Xisco Faulí  ---
Same commit as in bug 105860. Closing as RESOLVED DUPLICATED

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

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


[Libreoffice-bugs] [Bug 106111] PDF and Print text is cut, different font size and auto row adjust fails (steps in comment 19)

2017-03-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106111

Xisco Faulí  changed:

   What|Removed |Added

   Keywords|bibisectRequest |bibisected, bisected
   Priority|high|medium
 CC||khaledho...@eglug.org
Version|5.2.0.0.alpha1  |5.3.0.0.alpha1+
Summary|PDF and Print text is cut,  |PDF and Print text is cut,
   |different font size and |different font size and
   |auto row adjust fails (see  |auto row adjust fails
   |comment 11 for regression   |(steps in comment 19)
   |details)|

--- Comment #21 from Xisco Faulí  ---
Regression introduced by:

author  Khaled Hosny 2016-11-09 13:22:43 (GMT)
committer   Khaled Hosny 2016-11-22 15:32:11
(GMT)
commit  34d7602954d4483b3bc9db700e7df2c15348947a (patch)
tree8dcfb93fc29815fd89481a7840d64d6c187534db
parent  c855aec445628f96d3d32cfde6efd4e51e4489c9 (diff)
tdf#55469 Consistent line spacing across platforms

Adding Cc: to Khaled Hosny

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


[Libreoffice-bugs] [Bug 50195] EDITING: Can't Select Image in Header when outside margins

2017-03-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=50195

--- Comment #11 from Thomas Lendo  ---
Bug still exists in version: 5.3.0.3
Build ID: 1:5.3.0~rc3-0ubuntu1~trusty1.1
CPU Threads: 2; OS Version: Linux 3.13; UI Render: default; VCL: gtk2; Layout
Engine: new; 
Locale: de-AT (de_DE.UTF-8); Calc: group

Tested the file attached in Comment 6.

The workaround mentioned in Comment 7 to focus the image in page 2 is still
working.

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


[Libreoffice-bugs] [Bug 98371] FILEOPEN PPT: Text Placed Outside Shape

2017-03-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98371

Xisco Faulí  changed:

   What|Removed |Added

Version|4.0.0.3 release |Inherited From OOo

--- Comment #4 from Xisco Faulí  ---
Reproduced in

LibreOffice 3.3.0 
OOO330m19 (Build:6)
tag libreoffice-3.3.0.4

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


[Libreoffice-bugs] [Bug 98371] FILEOPEN PPT: Text Placed Outside Shape

2017-03-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98371

Xisco Faulí  changed:

   What|Removed |Added

 CC||xiscofa...@libreoffice.org

--- Comment #3 from Xisco Faulí  ---
still reproducible in

Version: 5.4.0.0.alpha0+
Build ID: d3676ceeec55a41337ce5e6bc596f4f100d0638e
CPU threads: 4; OS: Linux 4.8; UI render: default; VCL: gtk3; 
Locale: ca-ES (ca_ES.UTF-8); Calc: group

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


[Libreoffice-bugs] [Bug 55066] FILEOPEN: flaws in importing 123 files

2017-03-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=55066

--- Comment #34 from Horst  ---
I tried to convert WOODSCREWS.123 to LO 5.3.0.3 and it is still the old
reported mess.
The converted woodscrews.123 with libwps is almost perfect.

My question: In which version of LO is change made?

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


[Libreoffice-bugs] [Bug 55066] FILEOPEN: flaws in importing 123 files

2017-03-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=55066

--- Comment #33 from Horst  ---
I tried to convert WOODSCREWS.123 to LO 5.3.0.3 and it is still the old
reported mess.
The converted woodscrews.123 with libwps is almost perfect.

My question: In which version of LO is change made?

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


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

2017-03-05 Thread Caolán McNamara
 vcl/inc/win/winlayout.hxx |   12 +---
 vcl/win/gdi/winlayout.cxx |   39 ++-
 2 files changed, 31 insertions(+), 20 deletions(-)

New commits:
commit b398dacbb471913e573e9b0b4cd31d94a9109223
Author: Caolán McNamara 
Date:   Sun Mar 5 21:31:09 2017 +

Revert "pPos and pGetNextGlypInfo always have the same value"

This reverts commit 7453cb58df4ce434a1252567f961cfe497064aca.

and...

Revert "pEraseRect is always null"

I suspect the problem is the change to D2DWriteTextOutRenderer::operator
in 7453cb58df4ce434a1252567f961cfe497064aca

aborts during windows tinderboxes CppunitTest_dbaccess_empty_stdlib_save etc

This reverts commit 073d920ef5914b5dfe491dbaf7fb18ba56293b85.

Change-Id: I372e104bd09e49bcf08306169db9777f2f26fff5

diff --git a/vcl/inc/win/winlayout.hxx b/vcl/inc/win/winlayout.hxx
index bc1890b..42b25b6 100644
--- a/vcl/inc/win/winlayout.hxx
+++ b/vcl/inc/win/winlayout.hxx
@@ -179,7 +179,9 @@ public:
 
 virtual bool operator ()(CommonSalLayout const ,
 SalGraphics ,
-HDC hDC) = 0;
+HDC hDC,
+const Rectangle* pRectToErase,
+Point* pPos, int* pGetNextGlypInfo) = 0;
 };
 
 class ExTextOutRenderer : public TextOutRenderer
@@ -192,7 +194,9 @@ public:
 
 bool operator ()(CommonSalLayout const ,
 SalGraphics ,
-HDC hDC) override;
+HDC hDC,
+const Rectangle* pRectToErase,
+Point* pPos, int* pGetNextGlypInfo) override;
 };
 
 class D2DWriteTextOutRenderer : public TextOutRenderer
@@ -215,7 +219,9 @@ public:
 
 bool operator ()(CommonSalLayout const ,
 SalGraphics ,
-HDC hDC) override;
+HDC hDC,
+const Rectangle* pRectToErase,
+Point* pPos, int* pGetNextGlypInfo) override;
 
 inline bool BindDC(HDC hDC, Rectangle const & rRect = Rectangle(0, 0, 0, 
0)) {
 RECT const rc = { rRect.Left(), rRect.Top(), rRect.Right(), 
rRect.Bottom() };
diff --git a/vcl/win/gdi/winlayout.cxx b/vcl/win/gdi/winlayout.cxx
index cf555de..c884c9e 100644
--- a/vcl/win/gdi/winlayout.cxx
+++ b/vcl/win/gdi/winlayout.cxx
@@ -264,8 +264,12 @@ TextOutRenderer & TextOutRenderer::get(bool bUseDWrite)
 
 bool ExTextOutRenderer::operator ()(CommonSalLayout const ,
 SalGraphics & /*rGraphics*/,
-HDC hDC)
+HDC hDC,
+const Rectangle* pRectToErase,
+Point* pPos, int* pGetNextGlypInfo)
 {
+bool bGlyphs = false;
+const GlyphItem* pGlyph;
 HFONT hFont = static_cast(GetCurrentObject( hDC, OBJ_FONT ));
 HFONT hAltFont = nullptr;
 bool bUseAltFont = false;
@@ -280,19 +284,16 @@ bool ExTextOutRenderer::operator ()(CommonSalLayout const 
,
 hAltFont = CreateFontIndirectW();
 }
 }
-
-int nStart = 0;
-Point aPos(0, 0);
-const GlyphItem* pGlyph;
-while (rLayout.GetNextGlyphs(1, , aPos, nStart))
+while (rLayout.GetNextGlyphs(1, , *pPos, *pGetNextGlypInfo))
 {
+bGlyphs = true;
 WORD glyphWStr[] = { pGlyph->maGlyphId };
 if (hAltFont && pGlyph->IsVertical() == bUseAltFont)
 {
 bUseAltFont = !bUseAltFont;
 SelectFont(hDC, bUseAltFont ? hAltFont : hFont);
 }
-ExtTextOutW(hDC, aPos.X(), aPos.Y(), ETO_GLYPH_INDEX, nullptr, 
LPCWSTR(), 1, nullptr);
+ExtTextOutW(hDC, pPos->X(), pPos->Y(), ETO_GLYPH_INDEX, nullptr, 
LPCWSTR(), 1, nullptr);
 }
 if (hAltFont)
 {
@@ -301,7 +302,7 @@ bool ExTextOutRenderer::operator ()(CommonSalLayout const 
,
 DeleteObject(hAltFont);
 }
 
-return true;
+return (pRectToErase && bGlyphs);
 }
 
 D2DWriteTextOutRenderer::D2DWriteTextOutRenderer()
@@ -342,7 +343,9 @@ D2DWriteTextOutRenderer::~D2DWriteTextOutRenderer()
 
 bool D2DWriteTextOutRenderer::operator ()(CommonSalLayout const ,
 SalGraphics ,
-HDC hDC)
+HDC hDC,
+const Rectangle* pRectToErase,
+Point* pPos, int* pGetNextGlypInfo)
 {
 if (!Ready())
 return false;
@@ -350,7 +353,7 @@ bool D2DWriteTextOutRenderer::operator ()(CommonSalLayout 
const ,
 if (!BindFont(hDC))
 {
 // If for any reason we can't bind fallback to legacy APIs.
-return ExTextOutRenderer()(rLayout, rGraphics, hDC);
+return ExTextOutRenderer()(rLayout, rGraphics, hDC, pRectToErase, 
pPos, pGetNextGlypInfo);
 }
 
 Rectangle bounds;
@@ -362,19 +365,19 @@ bool D2DWriteTextOutRenderer::operator ()(CommonSalLayout 
const ,
 succeeded &= 
SUCCEEDED(mpRT->CreateSolidColorBrush(D2D1::ColorF(GetRValue(bgrTextColor) / 
255.0f, GetGValue(bgrTextColor) / 255.0f, GetBValue(bgrTextColor) / 255.0f), 
));
 
 HRESULT hr = S_OK;
+bool bGlyphs = false;
 if (succeeded)
 {
 mpRT->BeginDraw();
 
-int nStart = 0;
-Point aPos(0, 0);
 const GlyphItem* pGlyph;
-while (rLayout.GetNextGlyphs(1, , aPos, nStart))
+while 

[Libreoffice-bugs] [Bug 106344] Wrong coordinates of elements in VSS file

2017-03-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106344

kakwa  changed:

   What|Removed |Added

Summary|Wrong coordinates of EMF|Wrong coordinates of
   |blobs in VSS file   |elements in VSS file

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


[Libreoffice-bugs] [Bug 106344] New: Wrong coordinates of EMF blobs in VSS file

2017-03-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106344

Bug ID: 106344
   Summary: Wrong coordinates of EMF blobs in VSS file
   Product: libvisio
   Version: unspecified
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: General
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: carpentier...@gmail.com

Hello,

I maintain a small tool called libvisio2svg:
https://github.com/kakwa/libvisio2svg

This tool glues together libvisio/librevenge, libwmf and libemf2svg (another
conversion library I maintain). This tool uses libvisio/librevenge to convert
VSS and VSD file to SVG(s), and then, in a second pass, converts the EMF/WMF
blobs commonly found in the output of libvisio/librevenge.

A user of mine had some issues with the following stencils:

- http://arcitura.com/system/application/visio/CCP_Visio_Stencil.zip
- https://www.veeam.com/vmware-esx-stencils-download.html#

With the CCP_Visio_Stencil the content is mostly one big EMF blob, and the
coordinates seems wrong. For example, using vss2raw, I get for the first
stencil:

- dimensions: "svg:height: 0.5377in, svg:width: 0.5370in"
- dimensions and position of the EMF blob: "svg:height: 0.5377in, svg:width:
0.5370in, svg:x: 48.in, svg:y: -10.5000in"

The EMF blob position (svg:x: 48.in, svg:y: -10.5000in) is weird, it places
the blob well outside the borders of the image.

This problem affects all images of this VSS file.

It's a bit less systematic with the VEEAM stencils, but most of the coordinates
are wrong to:
- dimension: "svg:height: 0.2613in, svg:width: 1.0018in"
- first point in path: 1.0016in, svg:y: -22.3309in

I also had some issues, with positions being slightly off with stencils like
the Visiocafe HP ones 
- http://www.visiocafe.com/downloads/hp/HPE-ProLiant.zip

(For example "DL20 Gen9 SFF front" where the height should be ~2 times what it
is).

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


[Libreoffice-commits] core.git: include/editeng

2017-03-05 Thread Caolán McNamara
 include/editeng/svxenum.hxx |   36 
 1 file changed, 32 insertions(+), 4 deletions(-)

New commits:
commit 5c783dc75f9f31b5393f0a921323583312a731ec
Author: Caolán McNamara 
Date:   Sun Mar 5 21:11:19 2017 +

ubsan: add in all the valid value for NumberingType to the SvxNumType enum

/include/editeng/numitem.hxx:69:67: runtime error: load of value 52, which 
is not a valid value for type ´SvxNumType´
#0 0x2b29cf86dc41 in SvxNumberType::SetNumberingType(SvxNumType) 
/include/editeng/numitem.hxx:69:67
#1 0x2b29d5448771 in 
SwXNumberingRules::SetPropertiesToNumFormat(SwNumFormat&, rtl::OUString&, 
rtl::OUString*, rtl::OUString*, rtl::OUString*, SwDoc*, SwDocShell*, 
com::sun::star::uno::Sequence const&) 
/sw/source/core/unocore/unosett.cxx:1851:25
#2 0x2b29d542f727 in 
SwXNumberingRules::SetNumberingRuleByIndex(SwNumRule&, 
com::sun::star::uno::Sequence const&, 
int) /sw/source/core/unocore/unosett.cxx:1517:5
#3 0x2b29d542b0e8 in SwXNumberingRules::replaceByIndex(int, 
com::sun::star::uno::Any const&) /sw/source/core/unocore/unosett.cxx:1180:9

make CppunitTest_sw_ooxmlexport CPPUNITTRACE="gdb --args"

Change-Id: I4bb11dbe29e286e937f177aa436213ae40152399

diff --git a/include/editeng/svxenum.hxx b/include/editeng/svxenum.hxx
index 3f8e47c..670c360 100644
--- a/include/editeng/svxenum.hxx
+++ b/include/editeng/svxenum.hxx
@@ -149,7 +149,7 @@ enum class SvxSpellArea
 /**
  * these must match the values in css::style::NumberingType
  */
-enum SvxNumType
+enum SvxNumType : sal_Int16
 {
 SVX_NUM_CHARS_UPPER_LETTER= 
css::style::NumberingType::CHARS_UPPER_LETTER,// Counts from a-z, aa - az, 
ba - bz, ...
 SVX_NUM_CHARS_LOWER_LETTER= 
css::style::NumberingType::CHARS_LOWER_LETTER,
@@ -176,10 +176,38 @@ enum SvxNumType
 SVX_NUM_AIU_HALFWIDTH_JA  = 
css::style::NumberingType::AIU_HALFWIDTH_JA,
 SVX_NUM_IROHA_FULLWIDTH_JA= 
css::style::NumberingType::IROHA_FULLWIDTH_JA,
 SVX_NUM_IROHA_HALFWIDTH_JA= 
css::style::NumberingType::IROHA_HALFWIDTH_JA,
-SVX_NUM_HANGUL_SYLLABLE_KO= 
css::style::NumberingType::HANGUL_SYLLABLE_KO,
-SVX_NUM_HANGUL_JAMO_KO= css::style::NumberingType::HANGUL_JAMO_KO,
-SVX_NUM_NUMBER_HANGUL_KO  = 
css::style::NumberingType::NUMBER_HANGUL_KO,
 SVX_NUM_NUMBER_UPPER_KO   = css::style::NumberingType::NUMBER_UPPER_KO,
+SVX_NUM_NUMBER_HANGUL_KO  = 
css::style::NumberingType::NUMBER_HANGUL_KO,
+SVX_NUM_HANGUL_JAMO_KO= css::style::NumberingType::HANGUL_JAMO_KO,
+SVX_NUM_HANGUL_SYLLABLE_KO= 
css::style::NumberingType::HANGUL_SYLLABLE_KO,
+SVX_NUM_HANGUL_CIRCLED_JAMO_KO = 
css::style::NumberingType::HANGUL_CIRCLED_JAMO_KO,
+SVX_NUM_HANGUL_CIRCLED_SYLLABLE_KO = 
css::style::NumberingType::HANGUL_CIRCLED_SYLLABLE_KO,
+SVX_NUM_CHARS_ARABIC  = css::style::NumberingType::CHARS_ARABIC,
+SVX_NUM_CHARS_THAI= css::style::NumberingType::CHARS_THAI,
+SVX_NUM_CHARS_HEBREW  = css::style::NumberingType::CHARS_HEBREW,
+SVX_NUM_CHARS_NEPALI  = css::style::NumberingType::CHARS_NEPALI,
+SVX_NUM_CHARS_KHMER   = css::style::NumberingType::CHARS_KHMER,
+SVX_NUM_CHARS_LAO = css::style::NumberingType::CHARS_LAO,
+SVX_NUM_CHARS_TIBETAN = css::style::NumberingType::CHARS_TIBETAN,
+SVX_NUM_CHARS_CYRILLIC_UPPER_LETTER_BG = 
css::style::NumberingType::CHARS_CYRILLIC_UPPER_LETTER_BG,
+SVX_NUM_CHARS_CYRILLIC_LOWER_LETTER_BG = 
css::style::NumberingType::CHARS_CYRILLIC_LOWER_LETTER_BG,
+SVX_NUM_CHARS_CYRILLIC_UPPER_LETTER_N_BG = 
css::style::NumberingType::CHARS_CYRILLIC_UPPER_LETTER_N_BG,
+SVX_NUM_CHARS_CYRILLIC_LOWER_LETTER_N_BG = 
css::style::NumberingType::CHARS_CYRILLIC_LOWER_LETTER_N_BG,
+SVX_NUM_CHARS_CYRILLIC_UPPER_LETTER_RU = 
css::style::NumberingType::CHARS_CYRILLIC_UPPER_LETTER_RU,
+SVX_NUM_CHARS_CYRILLIC_LOWER_LETTER_RU = 
css::style::NumberingType::CHARS_CYRILLIC_LOWER_LETTER_RU,
+SVX_NUM_CHARS_CYRILLIC_UPPER_LETTER_N_RU = 
css::style::NumberingType::CHARS_CYRILLIC_UPPER_LETTER_N_RU,
+SVX_NUM_CHARS_CYRILLIC_LOWER_LETTER_N_RU = 
css::style::NumberingType::CHARS_CYRILLIC_LOWER_LETTER_N_RU,
+SVX_NUM_CHARS_PERSIAN = css::style::NumberingType::CHARS_PERSIAN,
+SVX_NUM_CHARS_MYANMAR = css::style::NumberingType::CHARS_MYANMAR,
+SVX_NUM_CHARS_CYRILLIC_UPPER_LETTER_SR = 
css::style::NumberingType::CHARS_CYRILLIC_UPPER_LETTER_SR,
+SVX_NUM_CHARS_CYRILLIC_LOWER_LETTER_SR = 
css::style::NumberingType::CHARS_CYRILLIC_LOWER_LETTER_SR,
+SVX_NUM_CHARS_CYRILLIC_UPPER_LETTER_N_SR = 
css::style::NumberingType::CHARS_CYRILLIC_UPPER_LETTER_N_SR,
+SVX_NUM_CHARS_CYRILLIC_LOWER_LETTER_N_SR = 
css::style::NumberingType::CHARS_CYRILLIC_LOWER_LETTER_N_SR,
+SVX_NUM_CHARS_GREEK_UPPER_LETTER = 
css::style::NumberingType::CHARS_GREEK_UPPER_LETTER,
+

[Libreoffice-commits] core.git: postprocess/Rdb_services.mk

2017-03-05 Thread Caolán McNamara
 postprocess/Rdb_services.mk |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 82e1648dd3f1add532e389c03a56814e830a9dd9
Author: Caolán McNamara 
Date:   Sun Mar 5 20:53:22 2017 +

xsec_gpg isn't available under android

Change-Id: I6c4c20fde4c6723a13a1d6894fa7d293978fca42

diff --git a/postprocess/Rdb_services.mk b/postprocess/Rdb_services.mk
index 4e67e89..2bb1cd7 100644
--- a/postprocess/Rdb_services.mk
+++ b/postprocess/Rdb_services.mk
@@ -109,7 +109,7 @@ $(eval $(call gb_Rdb_add_components,services,\
xmloff/source/transform/xof \
xmloff/util/xo \
xmlscript/util/xmlscript \
-   $(if $(filter-out MACOSX WNT,$(OS)),xmlsecurity/util/xsec_gpg) \
+   $(if $(filter-out WNT MACOSX ANDROID 
IOS,$(OS)),xmlsecurity/util/xsec_gpg) \
$(if $(ENABLE_NSS), \
xmlsecurity/util/xmlsecurity \
xmlsecurity/util/xsec_xmlsec$(if $(filter WNT,$(OS)),.windows)) 
\
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Windows TB builds

2017-03-05 Thread V Stuart Foote
None of the Windows TB builds of master (TB 39, 42, 62)  are posting. 

Don't know the cause, but we're waiting  on a TB build to get a look at some
of Khaled's latest for font handling for Default and OpenGL rendering.

Thanks.



--
View this message in context: 
http://nabble.documentfoundation.org/Windows-TB-builds-tp4209506.html
Sent from the Dev mailing list archive at Nabble.com.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 106343] New: child windows corrupted [ radeon evergreen_cs_track_validate_texture:831 texture invalid]

2017-03-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106343

Bug ID: 106343
   Summary: child windows corrupted [radeon
evergreen_cs_track_validate_texture:831 texture
invalid]
   Product: LibreOffice
   Version: 5.3.1.1 rc
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: a...@corti.de

Created attachment 131659
  --> https://bugs.documentfoundation.org/attachment.cgi?id=131659=edit
Screenshot - corrupted childwindow

Opening child windows in the GUI of writer, calc, impress or draw results in a
corrupted child window.

OS: Suse Tumbleweed 
Graphics: AMD A10 with OSS graphics drivers
MESA: 17.0.0
Window Manager: kde plasma / kwin 5.9.1

How to reproduce (can always be reproduced but it seems to need the symbol
child window to trigger) :
* Start writer, calc, impress or draw
* Select "Insert->Symbol"
  If that works select "Extra->Options" 
  If that still works select "Insert->Symbol" multiple times
* At some point the screen start flickering and the desktop becomes unusable
* In KDE I can go to the top-left corner of the desktop to show all
applications on the desktop -> That still works and I see the new child-window
which was supposed to open as a garbeled picture. 
* In the Xorg.0.log I get hundreds of the following errors:

2017-03-05T21:24:10.686432+01:00 athlon kernel: [32203.426452] radeon
:00:01.0: evergreen_surface_check_linear_aligned:216 texture pitch 840
invalid must be aligned with 64
2017-03-05T21:24:10.686474+01:00 athlon kernel: [32203.426456] radeon
:00:01.0: evergreen_cs_track_validate_texture:831 texture invalid
0x0d1c1a01 0x124c 0x0a0a 0x 0x 0x8002001a
2017-03-05T21:24:10.686481+01:00 athlon kernel: [32203.426497]
[drm:radeon_cs_ioctl [radeon]] *ERROR* Invalid command stream !

* After closing the the corrupted childwindow everything works again normally.


See screen shots of corrupted window attached .

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


[Libreoffice-bugs] [Bug 106264] Writer crashes on startup in: cppu::_copyConstructAnyFromData (_uno_Any *, void *, _typelib_TypeDescriptionReference *, _typelib_TypeDescription *, void (*)(void *), _u

2017-03-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106264

--- Comment #7 from larsi...@hotmail.com ---
I don't know if I should mention this here, but the same also happens in Calc
as soon as I press F11 to display the Styles sidebar. Crash report ID:
d6d6f6e3-3a0e-4e77-ac72-4a842d407a01

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


[Libreoffice-bugs] [Bug 106111] PDF and Print text is cut, different font size and auto row adjust fails ( see comment 11 for regression details)

2017-03-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106111

Xisco Faulí  changed:

   What|Removed |Added

Version|5.3.0.3 release |5.2.0.0.alpha1

--- Comment #20 from Xisco Faulí  ---
I can reproduce it in

Version: 5.2.0.0.alpha1+
Build ID: 5b168b3fa568e48e795234dc5fa454bf24c9805e
CPU Threads: 4; OS Version: Linux 4.8; UI Render: default; 
Locale: ca-ES (ca_ES.UTF-8)

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


[Libreoffice-commits] online.git: loleaflet/src

2017-03-05 Thread Henry Castro
 loleaflet/src/control/Control.Menubar.js |1 
 loleaflet/src/layer/AnnotationManager.js |9 ++--
 loleaflet/src/layer/tile/ImpressTileLayer.js |   28 +++
 loleaflet/src/layer/tile/WriterTileLayer.js  |6 +++--
 4 files changed, 40 insertions(+), 4 deletions(-)

New commits:
commit 42823172a27db2e40d050eda6d5f44795d6ffd21
Author: Henry Castro 
Date:   Sun Mar 5 16:25:26 2017 -0400

loleaflet: insert Impress annotations

Impress does not send anchor position property of the annotation object, so 
tweak the code
to set the cursor position

Change-Id: I12e365ed600a53b5a2c1bcb0ef52dec078a258f2

diff --git a/loleaflet/src/control/Control.Menubar.js 
b/loleaflet/src/control/Control.Menubar.js
index d066e66..da2fbee 100644
--- a/loleaflet/src/control/Control.Menubar.js
+++ b/loleaflet/src/control/Control.Menubar.js
@@ -200,6 +200,7 @@ L.Control.Menubar = L.Control.extend({
},
{name: _('Insert'), type: 'menu', menu: [
{name: _('Image'), id: 'insertgraphic', type: 
'action'},
+   {name: _('Comment...'), id: 'insertcomment', 
type: 'action'},
{type: 'separator'},
{name: _('Special character...'), id: 
'specialcharacter', type: 'action'}]
},
diff --git a/loleaflet/src/layer/AnnotationManager.js 
b/loleaflet/src/layer/AnnotationManager.js
index 3f4f431..c816700 100644
--- a/loleaflet/src/layer/AnnotationManager.js
+++ b/loleaflet/src/layer/AnnotationManager.js
@@ -53,6 +53,9 @@ L.AnnotationManager = L.Class.extend({
this.clear();
for (var index in comments) {
comment = comments[index];
+   if (!comment.anchorPos) {
+   continue;
+   }
comment.anchorPos = 
L.LOUtil.stringToPoint(comment.anchorPos);

this._items.push(L.annotation(this._map.options.maxBounds.getSouthEast(), 
comment).addTo(this._map));
}
@@ -194,10 +197,11 @@ L.AnnotationManager = L.Class.extend({
var obj = JSON.parse(textMsg.substring('comment:'.length + 1));
 
if (obj.comment.action === 'Add') {
-   obj.comment.anchorPos = 
L.LOUtil.stringToPoint(obj.comment.anchorPos);
var added = this.getItem('new');
if (added) {
delete obj.comment.action;
+   obj.comment.anchorPos = obj.comment.anchorPos ? 
L.LOUtil.stringToPoint(obj.comment.anchorPos) :
+   added._data.anchorPos;
added._data = obj.comment;
this._items.sort(function(a, b) {
return Math.abs(a._data.anchorPos.y) - 
Math.abs(b._data.anchorPos.y) ||
@@ -215,9 +219,10 @@ L.AnnotationManager = L.Class.extend({
this.remove(obj.comment.id);
}
} else if (obj.comment.action === 'Modify') {
-   obj.comment.anchorPos = 
L.LOUtil.stringToPoint(obj.comment.anchorPos);
var modified = this.getItem(obj.comment.id);
if (modified) {
+   obj.comment.anchorPos = obj.comment.anchorPos ? 
L.LOUtil.stringToPoint(obj.comment.anchorPos) :
+   modified._data.anchorPos;
modified._data = obj.comment;
modified.update();
this.update();
diff --git a/loleaflet/src/layer/tile/ImpressTileLayer.js 
b/loleaflet/src/layer/tile/ImpressTileLayer.js
index e384d5f..0c1b267 100644
--- a/loleaflet/src/layer/tile/ImpressTileLayer.js
+++ b/loleaflet/src/layer/tile/ImpressTileLayer.js
@@ -6,10 +6,38 @@
 L.ImpressTileLayer = L.TileLayer.extend({
 
newAnnotation: function (comment) {
+   if (!comment.anchorPos && this._isCursorVisible) {
+   comment.anchorPos = 
this._latLngToTwips(this._visibleCursor.getNorthWest());
+   }
+   if (comment.anchorPos) {
+   this._annotations.add(comment, true);
+   }
},
 
onAdd: function (map) {
L.TileLayer.prototype.onAdd.call(this, map);
+   this._annotations = L.annotationManager(map);
+   },
+
+   _onCommandValuesMsg: function (textMsg) {
+   var values = 
JSON.parse(textMsg.substring(textMsg.indexOf('{')));
+   if (!values) {
+   return;
+   }
+
+   if (values.comments) {
+   this._annotations.fill(values.comments);
+  

[Libreoffice-bugs] [Bug 106327] Error 1303 on install

2017-03-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106327

V Stuart Foote  changed:

   What|Removed |Added

 CC||vstuart.fo...@utsa.edu
 Resolution|FIXED   |WORKSFORME
Summary|resolved|Error 1303 on install

--- Comment #2 from V Stuart Foote  ---
Not clear how it resolved. As you note, the MSI error 1303 is a permissions
issue. Usually if an account is a member of Administrators group that is
sufficient.

But there are elements recorded to global cache and fonts for example that
refuse to come off.

For some installations, it happens that you must use the actual build-in
Administrator account either from a graphical login, or lauch a command window
"Run as Administrator" and use CLI msiexec.exe /i syntax to load.

The CLI install is helpful as it allows you to capture a complete log of the
installation. We would need such here to be able to identify further what the
issue had been on your initial attempts.

If it recurs, please see if you can capture the Microsoft installer log.

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


[Libreoffice-bugs] [Bug 106339] diagrams

2017-03-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106339

V Stuart Foote  changed:

   What|Removed |Added

 CC||vstuart.fo...@utsa.edu

--- Comment #6 from V Stuart Foote  ---
Could you please perform the test the opposite direction. 

That is Save-as from MS Word to an ODF Open Document Text.odt document. Then
open that into LibreOffice Writer. Better fidelity? Save and reopen either Word
or Writer.

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


  1   2   >