[Libreoffice-commits] core.git: Branch 'aoo/trunk' - vcl/aqua vcl/Library_vcl.mk

2017-10-12 Thread Jim Jagielski
 vcl/Library_vcl.mk  |7 +--
 vcl/aqua/source/dtrans/PictToBmpFlt.cxx |2 +-
 2 files changed, 6 insertions(+), 3 deletions(-)

New commits:
commit 3215360f49ce63f773db32d1640de1e23c040b78
Author: Jim Jagielski 
Date:   Thu Oct 12 15:32:34 2017 +

macOS compilation fixes, mostly due to 10.7/10.9 SDK differences

and items deprecated

diff --git a/vcl/Library_vcl.mk b/vcl/Library_vcl.mk
index 0f6393ce9ec1..673e0e680ba1 100755
--- a/vcl/Library_vcl.mk
+++ b/vcl/Library_vcl.mk
@@ -106,13 +106,15 @@ $(eval $(call gb_Library_add_libs,vcl,\
 endif
 
 ifeq ($(OS),MACOSX)
-$(eval $(call gb_Library_set_ldflags,vcl,\
+$(eval $(call gb_Library_add_ldflags,vcl,\
 $$(LDFLAGS) \
 ))
 endif
 
 ifeq ($(GUIBASE),aqua)
 $(eval $(call gb_Library_add_cxxflags,vcl,\
+$$(CXXFLAGS) \
+$$(OBJCXXFLAGS) \
 $(gb_OBJCXXFLAGS) \
 ))
 ifeq ($(ENABLE_CAIRO),TRUE)
@@ -503,13 +505,14 @@ $(eval $(call gb_Library_add_linked_libs,vcl,\
 AppleRemote \
 ))
 $(eval $(call gb_Library_add_libs,vcl,\
+$$(LDFLAGS) \
 -framework Cocoa \
 -framework Carbon \
 -framework CoreFoundation \
 ))
 # ??? what about this
 ifneq ($(MACOSX_DEPLOYMENT_TARGET),10.7)
-$(eval $(call gb_Library_set_ldflags,vcl, $$(LDFLAGS) -framework QuickTime ))
+$(eval $(call gb_Library_add_ldflags,vcl, $$(LDFLAGS) -framework QuickTime ))
 endif
 endif
 
diff --git a/vcl/aqua/source/dtrans/PictToBmpFlt.cxx 
b/vcl/aqua/source/dtrans/PictToBmpFlt.cxx
index ef103a8a2f80..549edeba3a44 100644
--- a/vcl/aqua/source/dtrans/PictToBmpFlt.cxx
+++ b/vcl/aqua/source/dtrans/PictToBmpFlt.cxx
@@ -31,7 +31,7 @@
 #define DEPRECATED_ATTRIBUTE
 
 #include 
-#include 
+// #include 
 #include 
 
 #include "PictToBmpFlt.hxx"
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2017-10-12 Thread Szymon Kłos
 vcl/source/control/tabctrl.cxx |  123 ++---
 1 file changed, 20 insertions(+), 103 deletions(-)

New commits:
commit 4454feb360cc0c832adc21a38e21074d00baa456
Author: Szymon Kłos 
Date:   Sun Oct 1 20:48:16 2017 +0200

Notebookbar: allow only one tab line

Change-Id: I5f671bdc34e5852af06c99db93e859e8cf837c0d
Reviewed-on: https://gerrit.libreoffice.org/43009
Tested-by: Jenkins 
Reviewed-by: Szymon Kłos 

diff --git a/vcl/source/control/tabctrl.cxx b/vcl/source/control/tabctrl.cxx
index 27d6ffee522e..bcc767b62ce8 100644
--- a/vcl/source/control/tabctrl.cxx
+++ b/vcl/source/control/tabctrl.cxx
@@ -2355,6 +2355,7 @@ bool NotebookbarTabControlBase::ImplPlaceTabs( long 
nWidth )
 
 long nMaxWidth = nWidth - HAMBURGER_DIM;
 long nShortcutsWidth = m_pShortcuts != nullptr ? 
m_pShortcuts->GetSizePixel().getWidth() + 1 : 0;
+long nFullWidth = nShortcutsWidth;
 
 const long nOffsetX = 2 + GetItemsOffset().X() + nShortcutsWidth;
 const long nOffsetY = 2 + GetItemsOffset().Y();
@@ -2371,7 +2372,13 @@ bool NotebookbarTabControlBase::ImplPlaceTabs( long 
nWidth )
 {
 long aSize = ImplGetItemSize( &(*it), nMaxWidth ).getWidth();
 if( !it->maText.isEmpty() && aSize < 100)
+{
+nFullWidth += 100;
 aSize = 100;
+}
+else
+nFullWidth += aSize;
+
 aWidths.push_back(aSize);
 }
 else
@@ -2388,13 +2395,8 @@ bool NotebookbarTabControlBase::ImplPlaceTabs( long 
nWidth )
 long nX = nOffsetX;
 long nY = nOffsetY;
 
-sal_uInt16 nLines = 0;
-sal_uInt16 nCurLine = 0;
-
 long nLineWidthAry[100];
-sal_uInt16 nLinePosAry[101];
 nLineWidthAry[0] = 0;
-nLinePosAry[0] = 0;
 
 size_t nIndex = 0;
 sal_uInt16 nPos = 0;
@@ -2404,25 +2406,6 @@ bool NotebookbarTabControlBase::ImplPlaceTabs( long 
nWidth )
 {
 Size aSize = ImplGetItemSize( &(*it), nMaxWidth );
 
-bool bNewLine = false;
-if (!aBreakIndexes.empty() && nIndex > aBreakIndexes.front())
-{
-aBreakIndexes.pop_front();
-bNewLine = true;
-}
-
-if ( bNewLine && (nWidth > 2+nOffsetX) )
-{
-if ( nLines == 99 )
-break;
-
-nX = nOffsetX;
-nY += aSize.Height();
-nLines++;
-nLineWidthAry[nLines] = 0;
-nLinePosAry[nLines] = nPos;
-}
-
 if ( !it->mbEnabled )
 {
 nPos++;
@@ -2430,7 +2413,7 @@ bool NotebookbarTabControlBase::ImplPlaceTabs( long 
nWidth )
 }
 
 // set minimum tab size
-if( !it->maText.isEmpty() && aSize.getWidth() < 100)
+if( nFullWidth < nMaxWidth && !it->maText.isEmpty() && 
aSize.getWidth() < 100)
 aSize.Width() = 100;
 
 if( !it->maText.isEmpty() && aSize.getHeight() < 28 )
@@ -2441,95 +2424,29 @@ bool NotebookbarTabControlBase::ImplPlaceTabs( long 
nWidth )
 mbSmallInvalidate = false;
 
 it->maRect = aNewRect;
-it->mnLine = nLines;
+it->mnLine = 0;
 it->mbFullVisible = true;
 
-nLineWidthAry[nLines] += aSize.Width();
+nLineWidthAry[0] += aSize.Width();
 nX += aSize.Width();
 
-if ( it->mnId == mnCurPageId )
-nCurLine = nLines;
-
 nPos++;
 }
 
-if ( nLines )
-{ // two or more lines
-long nLineHeightAry[100];
-long nIH = mpTabCtrlData->maItemList[0].maRect.Bottom()-2;
-
-for ( sal_uInt16 i = 0; i < nLines+1; i++ )
-{
-if ( i <= nCurLine )
-nLineHeightAry[i] = nIH*(nLines-(nCurLine-i)) + 
GetItemsOffset().Y();
-else
-nLineHeightAry[i] = nIH*(i-nCurLine-1) + GetItemsOffset().Y();
-}
-
-nLinePosAry[nLines+1] = (sal_uInt16)mpTabCtrlData->maItemList.size();
-
-long nDX = 0;
-long nModDX = 0;
-long nIDX = 0;
-
-sal_uInt16 i = 0;
-sal_uInt16 n = 0;
+// only one line
+if(ImplGetSVData()->maNWFData.mbCenteredTabs)
+{
+int nRightSpace = nMaxWidth;//space left on the right by the tabs
 for( std::vector< ImplTabItem >::iterator it = 
mpTabCtrlData->maItemList.begin();
- it != mpTabCtrlData->maItemList.end(); ++it )
+it != mpTabCtrlData->maItemList.end(); ++it )
 {
-if ( i == nLinePosAry[n] )
-{
-if ( n == nLines+1 )
-break;
-
-nIDX = 0;
-if( nLinePosAry[n+1]-i > 0 )
-{
-long nAvailableWidth = nWidth - nOffsetX - 
nLineWidthAry[n] - HAMBURGER_DIM;
-nDX = nAvailableWidth / ( nLinePosAry[n+1] - i );
-nModDX = nAvailableWidth % ( 

[Libreoffice-commits] core.git: helpcontent2

2017-10-12 Thread Ilmari Lauhakangas
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 9261939c6f1566d00c2403460cb42482b0f5b5d6
Author: Ilmari Lauhakangas 
Date:   Thu Oct 12 19:58:06 2017 +0200

Updated core
Project: help  54d40a66cc5bdf829be02c0f5a0f6feb48ccb901

Tweak the language menu

Simplified the markup and tweaked the look a bit.

Change-Id: Ifc296a82b17215e7bcfbfc17432aacddb922664b
Reviewed-on: https://gerrit.libreoffice.org/43345
Reviewed-by: Olivier Hallot 
Tested-by: Olivier Hallot 

diff --git a/helpcontent2 b/helpcontent2
index 6e8527a15389..54d40a66cc5b 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 6e8527a15389c64292665175159aabfa0a463bab
+Subproject commit 54d40a66cc5bdf829be02c0f5a0f6feb48ccb901
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] help.git: help3xsl/default.css help3xsl/online_transform.xsl

2017-10-12 Thread Ilmari Lauhakangas
 help3xsl/default.css  |   32 ++
 help3xsl/online_transform.xsl |  134 +-
 2 files changed, 88 insertions(+), 78 deletions(-)

New commits:
commit 54d40a66cc5bdf829be02c0f5a0f6feb48ccb901
Author: Ilmari Lauhakangas 
Date:   Thu Oct 12 19:58:06 2017 +0200

Tweak the language menu

Simplified the markup and tweaked the look a bit.

Change-Id: Ifc296a82b17215e7bcfbfc17432aacddb922664b
Reviewed-on: https://gerrit.libreoffice.org/43345
Reviewed-by: Olivier Hallot 
Tested-by: Olivier Hallot 

diff --git a/help3xsl/default.css b/help3xsl/default.css
index d686169b1..4feb3ae04 100644
--- a/help3xsl/default.css
+++ b/help3xsl/default.css
@@ -231,14 +231,16 @@ header {
 float: left;
 margin-right: .5em;
 }
-header ul {
+header nav {
 margin-top: .7em;
 padding: 0;
 display: none;
+border: 1px solid;
+position: relative;
 }
 /* Create a style for the first level items */
 
-header > ul > li > a {
+header nav a {
 color: #33;
 background-color: #EE;
 display: block;
@@ -246,17 +248,19 @@ header > ul > li > a {
 padding: 0.2em 0.4em;
 text-decoration: none;
 font-weight: bold;
-border: 1px solid;
+border-width: 0 1px 0 0;
+border-style: solid;
 border-color: #33;
 font-size: 1.5em;
-}
-header ul li {
-/* make sure the width is honored */
-
 flex-shrink: 0;
-list-style-type: none;
 z-index: 100;
+white-space: nowrap;
+}
+
+header nav a:last-child {
+border-right-width: 0;
 }
+
 header label {
 cursor: pointer;
 font-size: 1.2em;
@@ -264,7 +268,7 @@ header label {
 top: 2em;
 float: right;
 }
-header input[type="checkbox"]:checked ~ ul {
+header input[type="checkbox"]:checked ~ nav {
 background: #f1f1f1;
 color: #444;
 z-index: 100;
@@ -275,6 +279,7 @@ header input[type="checkbox"]:checked ~ ul {
 /* allow for scrolling */
 
 overflow-x: auto;
+overflow-y: hidden;
 /* make it smooth on iOS */
 
 -webkit-overflow-scrolling: touch;
@@ -559,12 +564,17 @@ header input[type=checkbox],
 max-width: 1024px;
 margin: auto;
 }
-header > ul > li > a {
+header nav a {
 font-size: 1em;
+white-space: normal;
+border-width: 0 0 1px 0;
+}
+header nav a:last-child {
+border-bottom-width: 0;
 }
 /* change the language menu direction to stacked */
 
-header input[type="checkbox"]:checked ~ ul {
+header input[type="checkbox"]:checked ~ nav {
 flex-direction: column;
 max-width: 7.5em;
 float: right;
diff --git a/help3xsl/online_transform.xsl b/help3xsl/online_transform.xsl
index f3ddebee4..1d036fdb7 100644
--- a/help3xsl/online_transform.xsl
+++ b/help3xsl/online_transform.xsl
@@ -144,73 +144,73 @@
 
 
  ▼
-
-English 
(USA)
-አ
ማርኛ
-العربية
-Asturianu
-Български
-বাংলা
-বাংলা
-བོད་ཡིག / Bod skad
-Bosanski
-Català
-Català
-Valencia
-Česky
-Dansk
-Deutsch
- 
ཇོང་ཁ
-Ελληνικά
-English 
(GB)
-English 
(ZA)
-Esperanto
-Español
-Eesti
-Euskara
-Suomi
-Français
-Galego
-ગુજરાતી
-עברית
-हिन्दी
-Hrvatski
-Magyar
-Bahasa 
Indonesia
-Íslenska
-Italiano
-日本語
-ქარ
თული
-ភាសាខ្មែរ
-한국어
-ລາວ
-Lietuvių
-Latviešu
-Македонски
-Norsk (bokmål / 
riksmål)
-नेपाली
-Nederlands
-Norsk 
(nynorsk)
-Oromoo
-Polski
-Português
-Português do 
Brasil
-Română
-Р
усский
-සිංහල
-Sidámo 
'Afó
-Slovenčina
-Slovenščina
-Shqip
-Svenska
-தமிழ்
-Тоҷикӣ
-Türkçe
-ئۇيغۇرچە
-Українська
-Tiếng 
Việt
-中文 
(简体字)
-  

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

2017-10-12 Thread Johnny_M
 sc/source/core/inc/interpre.hxx |   26 +-
 1 file changed, 13 insertions(+), 13 deletions(-)

New commits:
commit 0c1ccab0d559b01a69ba5b1b598bc2c885ffa8d1
Author: Johnny_M 
Date:   Tue Oct 3 11:52:49 2017 +0200

Translate German variable names in Calc (financial)

These names of variables correspond to German function names in Calc and 
were
translated to their English equivalents. For used translations, see, e.g.,

https://translations.documentfoundation.org/de/libo54_help/translate/#search=RMZ=target=exact,case

Note: This is an alignment of the function declaration to the definitions
in /core/sc/source/core/tool/interpr2.cxx, some of which were translated
on f8b9b8ec5686c1453e335d895aa78faba5fdf268, while others were already in 
English.

Change-Id: Ifb01992e42af707a08a02139ffb8313d3b92701c
Reviewed-on: https://gerrit.libreoffice.org/43077
Tested-by: Jenkins 
Reviewed-by: Eike Rathke 

diff --git a/sc/source/core/inc/interpre.hxx b/sc/source/core/inc/interpre.hxx
index fa257e8c6f04..bd9008d47bde 100644
--- a/sc/source/core/inc/interpre.hxx
+++ b/sc/source/core/inc/interpre.hxx
@@ -771,32 +771,32 @@ private:
 void ScMIRR();
 void ScISPMT();
 
-static double ScGetBw(double fInterest, double fZzr, double fRmz,
-  double fZw, bool bPayInAdvance);
+static double ScGetBw(double fInterest, double fNper, double fPmt,
+  double fFv, bool bPayInAdvance);
 void ScPV();
 void ScSYD();
-static double ScGetGDA(double fWert, double fRest, double fDauer,
-   double fPeriode, double fFactor);
+static double ScGetGDA(double fValue, double fRest, double fTimeLength,
+   double fPeriod, double fFactor);
 void ScDDB();
 void ScDB();
-static double ScInterVDB(double fWert,double fRest,double fDauer,double 
fDauer1,
-double fPeriode,double fFactor);
+static double ScInterVDB(double fValue, double fRest, double fTimeLength, 
double fTimeLength1,
+ double fPeriod, double fFactor);
 void ScVDB();
 void ScPDuration();
 void ScSLN();
-static double ScGetRmz(double fInterest, double fZzr, double fBw,
-   double fZw, bool bPayInAdvance);
+static double ScGetRmz(double fInterest, double fNper, double fPv,
+   double fFv, bool bPayInAdvance);
 void ScPMT();
 void ScRRI();
-static double ScGetZw(double fInterest, double fZzr, double fRmz,
-  double fBw, bool bFlag);
+static double ScGetZw(double fInterest, double fNper, double fPmt,
+  double fPv, bool bFlag);
 void ScFV();
 void ScNper();
 static bool RateIteration(double fNper, double fPayment, double fPv,
-double fFv, bool bPayType, double& fGuess);
+  double fFv, bool bPayType, double& fGuess);
 void ScRate();
-double ScGetCompoundInterest(double fInterest, double fZr, double fZzr, 
double fBw,
- double fZw, bool bPayInAdvance, double& fRmz);
+double ScGetCompoundInterest(double fInterest, double fPer, double fNper, 
double fPv,
+ double fFv, bool bPayInAdvance, double& fPmt);
 void ScIpmt();
 void ScPpmt();
 void ScCumIpmt();
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] online.git: tools/Config.cpp

2017-10-12 Thread Andras Timar
 tools/Config.cpp |2 ++
 1 file changed, 2 insertions(+)

New commits:
commit 11ad1b4ab98706e73ad208c79da2e52d9857cc19
Author: Andras Timar 
Date:   Thu Oct 12 21:40:55 2017 +0200

loolconfig: don't show option for set-support-key, it it's not compiled in

Change-Id: Ie3baeee860e5ef0a797a3061373e266f40b41809

diff --git a/tools/Config.cpp b/tools/Config.cpp
index 6de6597f..dcf3d07a 100644
--- a/tools/Config.cpp
+++ b/tools/Config.cpp
@@ -118,10 +118,12 @@ void Config::defineOptions(OptionSet& optionSet)
 .repeatable(false)
 .argument("number"));
 
+#if ENABLE_SUPPORT_KEY
 optionSet.addOption(Option("support-key", "", "Specify the support key 
[set-support-key].")
 .required(false)
 .repeatable(false)
 .argument("key"));
+#endif
 }
 
 void Config::handleOption(const std::string& optionName, const std::string& 
optionValue)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2017-10-12 Thread Cor Nouws
 desktop/source/app/cmdlinehelp.cxx |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit 75d78b09438dcfa045626efd9f19d4a91a031e26
Author: Cor Nouws 
Date:   Thu Oct 12 21:03:34 2017 +0200

EPUB export: add simple example to command line help

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

diff --git a/desktop/source/app/cmdlinehelp.cxx 
b/desktop/source/app/cmdlinehelp.cxx
index 43028a72fd10..07b5672ef377 100644
--- a/desktop/source/app/cmdlinehelp.cxx
+++ b/desktop/source/app/cmdlinehelp.cxx
@@ -154,7 +154,8 @@ namespace desktop
 "   used more than once, the last value of 
OutputFileExtension\n"
 "   [:OutputFilterName] is effective. If --outdir 
is used more\n"
 "   than once, only its last value is effective. 
For example:\n"
-"   --convert-to pdf *.doc\n"
+"   --convert-to pdf *.odt\n"
+"   --convert-to epub *.doc\n"
 "   --convert-to pdf:writer_pdf_Export --outdir 
/home/user *.doc\n"
 "   --convert-to \"html:XHTML Writer File:UTF8\" 
*.doc\n"
 "   --convert-to \"txt:Text (encoded):UTF8\" *.doc\n"
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Stoyan Dimitrov [:stoyan] license statement

2017-10-12 Thread Стоян Димитров
All of my past & future contributions to LibreOffice may be licensed under the 
WTFPL license and if needed migrated to MPLv2/LGPLv3+ dual license. 
-- 
С.___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


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

2017-10-12 Thread Miklos Vajna
 sw/source/core/layout/dbg_lay.cxx |   11 ++-
 1 file changed, 6 insertions(+), 5 deletions(-)

New commits:
commit 3672cdd35985201ea87463cf032fedd02c052f4d
Author: Miklos Vajna 
Date:   Thu Oct 12 21:00:43 2017 +0200

sw: resurrect dbg_lay functionality

Example instdir/program/dbg_lay.ini:

# 0x0007
[record] 524287

This logs all functions and all frames. To have it:

1) Don't mention hex values in the example, support for this was removed
in ef513fd4b049b214a03fbe6e62a5ea43680a7a9b (remove unnecessary use of
OString::getStr, 2017-05-26).

2) "all frame IDs" is represented with a nullptr, so don't clear it
unconditionally.

3) Fix two other regressions from bytestring conversion in commit
778ef20d74ce499e4e0c4b0e3e4506b44938b975 (sw now ByteString free except
for windows related ones, 2011-11-04).

(Additionally you need a dbgutil build, dbg_lay.go has to exists in the
same dir, and output goes to dbg_lay.out in the same dir.)

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

diff --git a/sw/source/core/layout/dbg_lay.cxx 
b/sw/source/core/layout/dbg_lay.cxx
index 23c3d879306a..2baa1a7bd469 100644
--- a/sw/source/core/layout/dbg_lay.cxx
+++ b/sw/source/core/layout/dbg_lay.cxx
@@ -82,8 +82,8 @@
  *  listed; default is 0 which means that none are logged. It's also
  *  possible to remove functions using '!'.
  *  An example INI file:
- *   #Functions: all, except PRTARE
- *   [record] 0xFFFE !0x200
+ *   #Functions: all(0x0007), except PrintArea (0x200)
+ *   [record] 524287 !512
  *   [frmid]
  *   #the following FrameIds:
  *   1 2 12 13 14 15
@@ -282,7 +282,8 @@ SwImplProtocol::~SwImplProtocol()
 pStream->Close();
 delete pStream;
 }
-pFrameIds->clear();
+if (pFrameIds)
+pFrameIds->clear();
 delete pFrameIds;
 aVars.clear();
 }
@@ -339,7 +340,7 @@ void SwImplProtocol::CheckLine( OString& rLine )
 {
 OString aTok = rLine.getToken( 0, ' ', nIndex );
 bool bNo = false;
-if( '!' == aTok[0] )
+if( !aTok.isEmpty() && '!' == aTok[0] )
 {
 bNo = true; // remove this function/type
 aTok = aTok.copy(1);
@@ -407,7 +408,7 @@ void SwImplProtocol::FileInit()
 aLine.clear();
 }
 else
-aLine = OString(c);
+aLine += OString(c);
 }
 if( !aLine.isEmpty() )
 CheckLine( aLine ); // evaluate last line
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2017-10-12 Thread Szymon Kłos
 sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui |  321 ---
 1 file changed, 172 insertions(+), 149 deletions(-)

New commits:
commit 923cea6817e29405a8cdf3b3f608fef84aeb4ec1
Author: Szymon Kłos 
Date:   Sat Sep 9 15:57:31 2017 +0200

tdf#107239 make PriorityHBox working in the compact notebookbar

Change-Id: Iaf087dcf71714338718088c5265d41df7e8beef4
Reviewed-on: https://gerrit.libreoffice.org/42125
Tested-by: Jenkins 
Reviewed-by: andreas_kainz 

diff --git a/sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui 
b/sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui
index 1bcc0e3a44c3..76f657ac5978 100644
--- a/sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui
+++ b/sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui
@@ -1,5 +1,5 @@
 
-
+
 
   
   
@@ -3900,6 +3900,138 @@
 5
 bottom
 
+  
+True
+False
+end
+5
+
+  
+True
+False
+vertical
+
+  
+True
+False
+end
+
+  
+True
+False
+icons
+False
+
+  
+True
+True
+.uno:SearchDialog
+  
+  
+False
+True
+  
+
+  
+  
+False
+True
+0
+  
+
+
+  
+_Menu
+True
+True
+False
+center
+True
+none
+True
+  
+  
+False
+True
+1
+  
+
+  
+  
+False
+True
+0
+  
+
+
+  
+True
+False
+
+  
+True
+False
+end
+True
+icons
+False
+1
+
+  
+True
+True
+.uno:HelpIndex
+  
+  
+False
+True
+  
+
+  
+  
+False
+True
+0
+  
+
+
+  
+_Tools
+True
+True
+False
+none
+True
+  
+  
+False
+True
+1
+  
+
+  
+  
+False
+True
+1
+  
+
+  
+  
+False
+True
+0
+  
+
+  
+  
+False
+False
+end
+0
+  
+
+
   
 True
 False
@@ -4012,7 +4144,22 @@
   
 False
 True
-0
+1
+   

[Libreoffice-commits] core.git: jvmfwk/plugins jvmfwk/source

2017-10-12 Thread Julien Nabet
 jvmfwk/plugins/sunmajor/pluginlib/gnujre.cxx|   50 +---
 jvmfwk/plugins/sunmajor/pluginlib/sunjavaplugin.cxx |   40 ++--
 jvmfwk/plugins/sunmajor/pluginlib/util.cxx  |   33 +
 jvmfwk/plugins/sunmajor/pluginlib/vendorbase.cxx|   37 ++
 jvmfwk/source/elements.cxx  |   15 ++
 jvmfwk/source/framework.cxx |   26 +++---
 6 files changed, 84 insertions(+), 117 deletions(-)

New commits:
commit 2ea531c0578bb7f0a34ec7de0aaea595e0387928
Author: Julien Nabet 
Date:   Thu Oct 12 20:32:17 2017 +0200

Use loop ranges in jvmfwk

to simplify and avoid all the typedefs

Change-Id: Ia14337dd71b55fc24f162b5436af76aeeb8d2575
Reviewed-on: https://gerrit.libreoffice.org/43346
Reviewed-by: Noel Grandin 
Tested-by: Jenkins 
Reviewed-by: Julien Nabet 

diff --git a/jvmfwk/plugins/sunmajor/pluginlib/gnujre.cxx 
b/jvmfwk/plugins/sunmajor/pluginlib/gnujre.cxx
index 4485828a8926..22285bb0c18c 100644
--- a/jvmfwk/plugins/sunmajor/pluginlib/gnujre.cxx
+++ b/jvmfwk/plugins/sunmajor/pluginlib/gnujre.cxx
@@ -97,7 +97,6 @@ bool GnuInfo::initialize(vector > 
props)
 //javax.accessibility.assistive_technologies from system properties
 
 OUString sJavaLibraryPath;
-typedef vector >::const_iterator it_prop;
 OUString const sVendorProperty("java.vendor");
 OUString const sVersionProperty("java.version");
 OUString const sJavaHomeProperty("java.home");
@@ -112,28 +111,27 @@ bool GnuInfo::initialize(vector 
> props)
 bool bJavaLibraryPath = false;
 bool bAccess = false;
 
-typedef vector >::const_iterator it_prop;
-for (it_prop i = props.begin(); i != props.end(); ++i)
+for (auto const& prop : props)
 {
-if(! bVendor && sVendorProperty == i->first)
+if(! bVendor && sVendorProperty == prop.first)
 {
-m_sVendor = i->second;
+m_sVendor = prop.second;
 bVendor = true;
 }
-else if (!bVersion && sVersionProperty == i->first)
+else if (!bVersion && sVersionProperty == prop.first)
 {
-m_sVersion = i->second;
+m_sVersion = prop.second;
 bVersion = true;
 }
-else if (!bHome && sGNUHomeProperty == i->first)
+else if (!bHome && sGNUHomeProperty == prop.first)
 {
-m_sHome = i->second;
+m_sHome = prop.second;
 bHome = true;
 }
-else if (!bJavaHome && sJavaHomeProperty == i->first)
+else if (!bJavaHome && sJavaHomeProperty == prop.first)
 {
OUString fileURL;
-   if (osl_getFileURLFromSystemPath(i->second.pData,& fileURL.pData) ==
+   if (osl_getFileURLFromSystemPath(prop.second.pData,& fileURL.pData) 
==
osl_File_E_None)
{
//make sure that the drive letter have all the same case
@@ -146,15 +144,15 @@ bool GnuInfo::initialize(vector 
> props)
}
}
 }
-else if (!bJavaLibraryPath && sJavaLibraryPathProperty == i->first)
+else if (!bJavaLibraryPath && sJavaLibraryPathProperty == prop.first)
 {
 sal_Int32 nIndex = 0;
-osl_getFileURLFromSystemPath(i->second.getToken(0, ':', 
nIndex).pData, );
+osl_getFileURLFromSystemPath(prop.second.getToken(0, ':', 
nIndex).pData, );
 bJavaLibraryPath = true;
 }
-else if (!bAccess && sAccessProperty == i->first)
+else if (!bAccess && sAccessProperty == prop.first)
 {
-if (!i->second.isEmpty())
+if (!prop.second.isEmpty())
 {
 m_bAccessibility = true;
 bAccess = true;
@@ -179,11 +177,10 @@ bool GnuInfo::initialize(vector 
> props)
 vector libpaths = getVectorFromCharArray(arRtPaths, size);
 
 bool bRt = false;
-typedef vector::const_iterator i_path;
-for(i_path ip = libpaths.begin(); ip != libpaths.end(); ++ip)
+for (auto const& libpath : libpaths)
 {
 //Construct an absolute path to the possible runtime
-OUString usRt= m_sHome + *ip;
+OUString usRt= m_sHome + libpath;
 DirectoryItem item;
 if(DirectoryItem::get(usRt, item) == File::E_None)
 {
@@ -197,10 +194,10 @@ bool GnuInfo::initialize(vector 
> props)
 if (!bRt)
 {
 m_sHome = m_sJavaHome;
-for(i_path ip = libpaths.begin(); ip != libpaths.end(); ++ip)
+for (auto const& libpath : libpaths)
 {
 //Construct an absolute path to the possible runtime
-OUString usRt= m_sHome + *ip;

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

2017-10-12 Thread Szymon Kłos
 include/oox/drawingml/drawingmltypes.hxx |   15 +++
 oox/source/export/chartexport.cxx|   22 +-
 oox/source/export/drawingml.cxx  |4 +++-
 sd/qa/unit/data/pptx/smartart-rotation2.pptx |binary
 sd/qa/unit/export-tests-ooxml2.cxx   |   13 +
 5 files changed, 32 insertions(+), 22 deletions(-)

New commits:
commit 3cbb6e73ecbff5d83be817c0dab680c5d925c6fa
Author: Szymon Kłos 
Date:   Fri Oct 6 16:04:25 2017 +0200

SmartArt: export text rotation in the PPTX

Change-Id: I74bfc172fe7434d14de468ecfd3412636e53780c
Reviewed-on: https://gerrit.libreoffice.org/43202
Tested-by: Jenkins 
Reviewed-by: Szymon Kłos 

diff --git a/include/oox/drawingml/drawingmltypes.hxx 
b/include/oox/drawingml/drawingmltypes.hxx
index 0b1ea4be7c72..751f7865c374 100644
--- a/include/oox/drawingml/drawingmltypes.hxx
+++ b/include/oox/drawingml/drawingmltypes.hxx
@@ -151,6 +151,21 @@ struct IndexRange {
 /** retrieve the content of CT_IndexRange */
 IndexRange GetIndexRange( const css::uno::Reference< 
css::xml::sax::XFastAttributeList >& xAttributes );
 
+/**
+* nRotation is a 100th of a degree and the return value is
+* in a 60,000th of a degree
+*
+* Also rotation is in opposite directions so multiply with -1
+*/
+inline OString calcRotationValue(sal_Int32 nRotation)
+{
+if (nRotation > 18000) // 180 degree
+{
+nRotation -= 36000;
+}
+nRotation *= -600;
+return OString::number(nRotation);
+}
 
 const sal_Int32 EMU_PER_HMM = 360;  /// 360 EMUs per 1/100 mm.
 const sal_Int32 EMU_PER_PT = 12700;
diff --git a/oox/source/export/chartexport.cxx 
b/oox/source/export/chartexport.cxx
index e3b69806df07..ffd1481ffdbe 100644
--- a/oox/source/export/chartexport.cxx
+++ b/oox/source/export/chartexport.cxx
@@ -893,26 +893,6 @@ void ChartExport::exportLegend( const Reference< 
css::chart::XChartDocument >& x
 pFS->endElement( FSNS( XML_c, XML_legend ) );
 }
 
-namespace {
-
-/**
- * nRotation is a 100th of a degree and the return value is
- * in a 60,000th of a degree
- *
- * Also rotation is in opposite directions so multiply with -1
- */
-OString calcRotationValue(sal_Int32 nRotation)
-{
-if (nRotation > 18000) // 180 degree
-{
-nRotation -= 36000;
-}
-nRotation *= -600;
-return OString::number(nRotation);
-}
-
-}
-
 void ChartExport::exportTitle( const Reference< XShape >& xShape )
 {
 OUString sText;
@@ -945,7 +925,7 @@ void ChartExport::exportTitle( const Reference< XShape >& 
xShape )
 
 pFS->singleElement( FSNS( XML_a, XML_bodyPr ),
 XML_vert, sWritingMode,
-XML_rot, calcRotationValue(nRotation).getStr(),
+XML_rot, oox::drawingml::calcRotationValue(nRotation).getStr(),
 FSEND );
 // TODO: lstStyle
 pFS->singleElement( FSNS( XML_a, XML_lstStyle ),
diff --git a/oox/source/export/drawingml.cxx b/oox/source/export/drawingml.cxx
index 64e916e1033f..5beb7212ce0b 100644
--- a/oox/source/export/drawingml.cxx
+++ b/oox/source/export/drawingml.cxx
@@ -2224,6 +2224,8 @@ void DrawingML::WriteText( const Reference< XInterface >& 
rXIface, const OUStrin
 if( !xXText.is() )
 return;
 
+sal_Int32 nTextRotateAngle = 0;
+
 #define DEFLRINS 254
 #define DEFTBINS 127
 sal_Int32 nLeft, nRight, nTop, nBottom;
@@ -2263,7 +2265,6 @@ void DrawingML::WriteText( const Reference< XInterface >& 
rXIface, const OUStrin
 {
 for ( sal_Int32 i = 0, nElems = aProps.getLength(); i < nElems; 
++i )
 {
-sal_Int32 nTextRotateAngle = 0;
 if ( aProps[ i ].Name == "TextPreRotateAngle" && ( aProps[ i 
].Value >>= nTextRotateAngle ) )
 {
 if ( nTextRotateAngle == -90 )
@@ -2320,6 +2321,7 @@ void DrawingML::WriteText( const Reference< XInterface >& 
rXIface, const OUStrin
XML_anchor, sVerticalAlignment,
XML_anchorCtr, bHorizontalCenter ? "1" : 
nullptr,
XML_vert, sWritingMode,
+   XML_rot, (nTextRotateAngle != 0) ? 
oox::drawingml::calcRotationValue( nTextRotateAngle * 100 ).getStr() : nullptr,
FSEND );
 if( !presetWarp.isEmpty())
 {
diff --git a/sd/qa/unit/data/pptx/smartart-rotation2.pptx 
b/sd/qa/unit/data/pptx/smartart-rotation2.pptx
new file mode 100755
index ..e1c4493a7407
Binary files /dev/null and b/sd/qa/unit/data/pptx/smartart-rotation2.pptx differ
diff --git a/sd/qa/unit/export-tests-ooxml2.cxx 
b/sd/qa/unit/export-tests-ooxml2.cxx
index 1ba4f1362d23..acbeaa7142bb 100644
--- a/sd/qa/unit/export-tests-ooxml2.cxx
+++ b/sd/qa/unit/export-tests-ooxml2.cxx
@@ -119,6 +119,7 @@ public:
 void testTdf112647();
 void testGroupRotation();
 void testTdf104788();
+void 

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

2017-10-12 Thread andreas kainz
 sw/uiconfig/swriter/ui/notebookbar_compact.ui| 4904 +--
 sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui |   56 
 sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui|   54 
 3 files changed, 3221 insertions(+), 1793 deletions(-)

New commits:
commit d029193e8a4172cd2b08db203d6ec091749d15bf
Author: andreas kainz 
Date:   Fri Oct 13 01:45:29 2017 +0200

update notebookbar with better dropdown menues

Change-Id: I1af49673e4eab35ea33d8d306773eef41c97807b
Reviewed-on: https://gerrit.libreoffice.org/43356
Reviewed-by: andreas_kainz 
Tested-by: andreas_kainz 

diff --git a/sw/uiconfig/swriter/ui/notebookbar_compact.ui 
b/sw/uiconfig/swriter/ui/notebookbar_compact.ui
index 2139141761ee..b1c771b3cd21 100644
--- a/sw/uiconfig/swriter/ui/notebookbar_compact.ui
+++ b/sw/uiconfig/swriter/ui/notebookbar_compact.ui
@@ -245,1461 +245,2456 @@
   
 
   
-  
+  
 True
 False
 
-  
+  
 True
 False
-.uno:AddDirect
+.uno:Undo
   
 
 
-  
+  
 True
 False
-.uno:AutoPilotMenu
+.uno:Redo
   
 
 
-  
+  
 True
 False
-.uno:NewDoc
+.uno:Repeat
   
 
 
-  
+  
 True
 False
   
 
 
-  
+  
 True
 False
-.uno:OpenFromWriter
+.uno:Cut
   
 
 
-  
+  
 True
 False
-.uno:OpenRemote
+.uno:Copy
   
 
 
-  
+  
 True
 False
-.uno:RecentFileList
+.uno:Paste
   
 
 
-  
+  
 True
 False
+.uno:PasteSpecial
   
 
 
-  
+  
 True
 False
-.uno:Reload
+.uno:PasteUnformatted
   
 
 
-  
+  
 True
 False
-.uno:VersionDialog
   
 
 
-  
+  
 True
 False
-.uno:CloseDoc
+.uno:SelectAll
   
 
 
-  
+  
 True
 False
+.uno:SelectionModeDefault
   
 
 
-  
+  
 True
 False
-.uno:Save
+.uno:SelectionModeBlock
   
 
 
-  
+  
 True
 False
-.uno:SaveAsRemote
+.uno:SelectTextMode
   
 
 
-  
+  
 True
 False
-.uno:SaveAs
+.uno:ShadowCursor
   
 
 
-  
+  
 True
 False
   
 
 
-  
+  
 True
 False
-.uno:CheckOut
+vnd.sun.star.findbar:FocusToFindbar
   
 
 
-  
+  
 True
 False
-.uno:CancelCheckOut
+.uno:SearchDialog
   
 
 
-  
+  
 True
 False
-.uno:CheckIn
+.uno:GotoPage
   
 
 
-  
+  
 True
 False
   
 
 
-  
+  
 True
 False
-.uno:ExportTo
+.uno:TrackChanges
   
 
 
-  
+  
 True
 False
-.uno:ExportToPDF
+.uno:ShowTrackedChanges
   
 
 
-  
+  
 True
 False
-.uno:ExportToEPUB
+.uno:AcceptTrackedChanges
   
 
 
-  
+  
 True
 False
   
 
 
-  
+  
 True
 False
-.uno:SendMail
+.uno:ProtectTraceChangeMode
   
 
 
-  
+  
 True
 False
-.uno:SendViaBluetooth
+.uno:CompareDocuments
   
 
 
-  
+  
 True
 False
-.uno:NewGlobalDoc
+.uno:MergeDocuments
   
 
 
-  
+  
 True
 False
   
 
 
-  
+  
 True
 False
-.uno:WebHtml
+.uno:EditHyperlink
   
 
 
-  
+  
 True
 False
-.uno:PrintPreview
+.uno:EditFootnote
   
 
 
-  
+  
 True
 False
-.uno:Print
+.uno:IndexEntryDialog
   
 
 
-  
+  
 True
 False
-.uno:PrinterSetup
+.uno:AuthoritiesEntryDialog
   
 
 
-  
+  
 True
 False
+.uno:FieldDialog
   
 
 
-  
+  
 True
 False
-.uno:Signature
+.uno:LinkDialog
   
 
 
-  
+  
 True
 False
-.uno:SignPDF
+.uno:ImageMapDialog
   
 
 
-  
+  
 True
 False
-.uno:SetDocumentProperties
+.uno:ObjectMenue
   
 
 
-  
+  
 True
 False
+.uno:ChangeDatabaseField
   
 
 
- 

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

2017-10-12 Thread Julien Nabet
 sc/source/ui/docshell/externalrefmgr.cxx |1 
 sc/source/ui/unoobj/chart2uno.cxx|   32 +--
 2 files changed, 14 insertions(+), 19 deletions(-)

New commits:
commit 1fd77c6cc4ff45c6771af292ade23b22202ddb97
Author: Julien Nabet 
Date:   Fri Oct 13 00:19:23 2017 +0200

Replace lists by vectors in chart2uno (sc)

+ remove useless 'using ::std::list' in externalrefmgr (sc)

Change-Id: Iacff73fafe5a048b47abea865a77645a960e1a0d
Reviewed-on: https://gerrit.libreoffice.org/43355
Tested-by: Jenkins 
Reviewed-by: Julien Nabet 

diff --git a/sc/source/ui/docshell/externalrefmgr.cxx 
b/sc/source/ui/docshell/externalrefmgr.cxx
index 2282f14e63f4..fe36e9f0a07c 100644
--- a/sc/source/ui/docshell/externalrefmgr.cxx
+++ b/sc/source/ui/docshell/externalrefmgr.cxx
@@ -68,7 +68,6 @@ using ::std::find_if;
 using ::std::for_each;
 using ::std::distance;
 using ::std::pair;
-using ::std::list;
 using namespace formula;
 
 #define SRCDOC_LIFE_SPAN 3  // 5 minutes (in 100th of a sec)
diff --git a/sc/source/ui/unoobj/chart2uno.cxx 
b/sc/source/ui/unoobj/chart2uno.cxx
index 089ac69d9708..31b210d4c5d9 100644
--- a/sc/source/ui/unoobj/chart2uno.cxx
+++ b/sc/source/ui/unoobj/chart2uno.cxx
@@ -74,7 +74,6 @@ using namespace ::formula;
 using ::com::sun::star::uno::Sequence;
 using ::std::unique_ptr;
 using ::std::vector;
-using ::std::list;
 using ::std::distance;
 using ::std::shared_ptr;
 
@@ -118,10 +117,10 @@ private:
 OUStringBuffer & m_rBuffer;
 };
 
-OUString lcl_createTableNumberList( const ::std::list< SCTAB > & rTableList )
+OUString lcl_createTableNumberList( const ::std::vector< SCTAB > & 
rTableVector )
 {
 OUStringBuffer aBuffer;
-::std::for_each( rTableList.begin(), rTableList.end(), 
lcl_appendTableNumber( aBuffer ));
+::std::for_each( rTableVector.begin(), rTableVector.end(), 
lcl_appendTableNumber( aBuffer ));
 // remove last trailing ' '
 if( !aBuffer.isEmpty() )
 aBuffer.setLength( aBuffer.getLength() - 1 );
@@ -1512,7 +1511,7 @@ ScChart2DataProvider::createDataSource(
 return xResult;
 
 ScChart2DataSource* pDS = nullptr;
-::std::list< uno::Reference< chart2::data::XLabeledDataSequence > > aSeqs;
+::std::vector< uno::Reference< chart2::data::XLabeledDataSequence > > 
aSeqs;
 
 // Fill Categories
 if( bCategories )
@@ -1559,15 +1558,12 @@ ScChart2DataProvider::createDataSource(
 }
 
 pDS = new ScChart2DataSource(m_pDocument);
-::std::list< uno::Reference< chart2::data::XLabeledDataSequence > 
>::iterator aItr( aSeqs.begin() );
-::std::list< uno::Reference< chart2::data::XLabeledDataSequence > 
>::iterator aEndItr( aSeqs.end() );
 
 //reorder labeled sequences according to aSequenceMapping
 ::std::vector< uno::Reference< chart2::data::XLabeledDataSequence > > 
aSeqVector;
-while(aItr != aEndItr)
+for (auto const & aSeq : aSeqs)
 {
-aSeqVector.push_back(*aItr);
-++aItr;
+aSeqVector.push_back(aSeq);
 }
 
 ::std::map< sal_Int32, uno::Reference< chart2::data::XLabeledDataSequence 
> > aSequenceMap;
@@ -1608,12 +1604,12 @@ class InsertTabNumber
 {
 public:
 InsertTabNumber() :
-mpTabNumList(new list)
+mpTabNumVector(new vector)
 {
 }
 
 InsertTabNumber(const InsertTabNumber& r) :
-mpTabNumList(r.mpTabNumList)
+mpTabNumVector(r.mpTabNumVector)
 {
 }
 
@@ -1623,15 +1619,15 @@ public:
 return;
 
 const ScSingleRefData& r = *pToken->GetSingleRef();
-mpTabNumList->push_back(r.Tab());
+mpTabNumVector->push_back(r.Tab());
 }
 
-void getList(list& rList)
+void getVector(vector& rVector)
 {
-mpTabNumList->swap(rList);
+mpTabNumVector->swap(rVector);
 }
 private:
-shared_ptr< list > mpTabNumList;
+shared_ptr< vector > mpTabNumVector;
 };
 
 class RangeAnalyzer
@@ -1907,12 +1903,12 @@ uno::Sequence< beans::PropertyValue > SAL_CALL 
ScChart2DataProvider::detectArgum
 
 // TableNumberList
 {
-list aTableNumList;
+vector aTableNumVector;
 InsertTabNumber func;
 func = ::std::for_each(aAllTokens.begin(), aAllTokens.end(), func);
-func.getList(aTableNumList);
+func.getVector(aTableNumVector);
 aResult.emplace_back( "TableNumberList", -1,
-  uno::makeAny( lcl_createTableNumberList( 
aTableNumList ) ),
+  uno::makeAny( lcl_createTableNumberList( 
aTableNumVector ) ),
   beans::PropertyState_DIRECT_VALUE );
 }
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2017-10-12 Thread Julien Nabet
 configmgr/source/components.cxx |   12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

New commits:
commit a5a905e7ff2e3a19020b6c486e77695aece71b8c
Author: Julien Nabet 
Date:   Thu Oct 12 23:55:20 2017 +0200

Replace list by vector in components (configmgr)

Change-Id: I772b9b1b1d8fdbbc1dc7e38904490a6533686a90
Reviewed-on: https://gerrit.libreoffice.org/43353
Tested-by: Jenkins 
Reviewed-by: Julien Nabet 

diff --git a/configmgr/source/components.cxx b/configmgr/source/components.cxx
index 3b4111bc0fb9..7459ef4e5d45 100644
--- a/configmgr/source/components.cxx
+++ b/configmgr/source/components.cxx
@@ -23,7 +23,7 @@
 #include 
 #include 
 #include 
-#include 
+#include 
 #include 
 
 #include 
@@ -79,17 +79,17 @@ namespace configmgr {
 
 namespace {
 
-struct UnresolvedListItem {
+struct UnresolvedVectorItem {
 OUString name;
 rtl::Reference< ParseManager > manager;
 
-UnresolvedListItem(
+UnresolvedVectorItem(
 OUString const & theName,
 rtl::Reference< ParseManager > const & theManager):
 name(theName), manager(theManager) {}
 };
 
-typedef std::list< UnresolvedListItem > UnresolvedList;
+typedef std::vector< UnresolvedVectorItem > UnresolvedVector;
 
 void parseXcsFile(
 OUString const & url, int layer, Data & data, Partial const * partial,
@@ -750,7 +750,7 @@ void Components::parseXcdFiles(int layer, OUString const & 
url) {
 throw css::uno::RuntimeException(
 "cannot open directory " + url);
 }
-UnresolvedList unres;
+UnresolvedVector unres;
 std::set< OUString > existingDeps;
 std::set< OUString > processedDeps;
 for (;;) {
@@ -794,7 +794,7 @@ void Components::parseXcdFiles(int layer, OUString const & 
url) {
 }
 while (!unres.empty()) {
 bool isResolved = false;
-for (UnresolvedList::iterator i(unres.begin()); i != unres.end();) {
+for (UnresolvedVector::iterator i(unres.begin()); i != unres.end();) {
 if (i->manager->parse()) {
 processedDeps.insert(i->name);
 i = unres.erase(i);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2017-10-12 Thread Tjipke van der Heide
 svl/source/passwordcontainer/passwordcontainer.cxx |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 7ada9875ac6d340918eda85bcdba17bd19a20454
Author: Tjipke van der Heide 
Date:   Thu Oct 12 15:11:46 2017 +0200

tdf#100726 improved readability of OUString/Ostring concatenation

changed variable aResult to use concationation operator + instead of +=

Change-Id: I1547a869a9b6ede6e64727a1048232caf404acb7
Reviewed-on: https://gerrit.libreoffice.org/43340
Tested-by: Jenkins 
Reviewed-by: Muhammet Kara 

diff --git a/svl/source/passwordcontainer/passwordcontainer.cxx 
b/svl/source/passwordcontainer/passwordcontainer.cxx
index f310b6d8b00a..e31f5f239d80 100644
--- a/svl/source/passwordcontainer/passwordcontainer.cxx
+++ b/svl/source/passwordcontainer/passwordcontainer.cxx
@@ -67,8 +67,8 @@ static OUString createIndex(const vector< OUString >& lines)
 }
 else
 {
-aResult += "_";
-aResult += OUString::number(  *pLine, 16 );
+aResult += "_"
++ OUString::number(  *pLine, 16 );
 }
 
 pLine++;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Tjipke license statement

2017-10-12 Thread Tjipke van der Heide
All of my past & future contributions to LibreOffice may be licensed
under the MPLv2/LGPLv3+ dual license.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] core.git: Branch 'private/thb/gpg4libre' - comphelper/Library_comphelper.mk comphelper/source

2017-10-12 Thread Thorsten Behrens
 comphelper/Library_comphelper.mk |1 +
 comphelper/source/misc/storagehelper.cxx |7 ---
 2 files changed, 5 insertions(+), 3 deletions(-)

New commits:
commit 67997a416ecf716a6686bcfd1b09d591bc28e744
Author: Thorsten Behrens 
Date:   Thu Oct 12 11:42:03 2017 +0200

Fix build

Change-Id: I6b457704bbe3ebbe5548e1d84fad92569dbecc4a

diff --git a/comphelper/Library_comphelper.mk b/comphelper/Library_comphelper.mk
index 25449f09d919..342cc1629db0 100644
--- a/comphelper/Library_comphelper.mk
+++ b/comphelper/Library_comphelper.mk
@@ -37,6 +37,7 @@ $(eval $(call gb_Library_add_defs,comphelper,\
 ))
 
 $(eval $(call gb_Library_use_externals,comphelper,\
+   gpgmepp \
 boost_headers \
 icuuc \
 icu_headers \
diff --git a/comphelper/source/misc/storagehelper.cxx 
b/comphelper/source/misc/storagehelper.cxx
index 5f3defa34bf1..91e958ae3199 100644
--- a/comphelper/source/misc/storagehelper.cxx
+++ b/comphelper/source/misc/storagehelper.cxx
@@ -464,11 +464,11 @@ uno::Sequence< beans::NamedValue > 
OStorageHelper::CreateGpgPackageEncryptionDat
 std::unique_ptr ctx;
 GpgME::Error err = GpgME::checkEngine(GpgME::OpenPGP);
 if (err)
-throw RuntimeException("The GpgME library failed to initialize for the 
OpenPGP protocol.");
+throw uno::RuntimeException("The GpgME library failed to initialize 
for the OpenPGP protocol.");
 
 ctx.reset( GpgME::Context::createForProtocol(GpgME::OpenPGP) );
 if (ctx == nullptr)
-throw RuntimeException("The GpgME library failed to initialize for the 
OpenPGP protocol.");
+throw uno::RuntimeException("The GpgME library failed to initialize 
for the OpenPGP protocol.");
 ctx->setArmor(false);
 ctx->setKeyListMode(GPGME_KEYLIST_MODE_LOCAL);
 std::vector keys;
@@ -476,6 +476,7 @@ uno::Sequence< beans::NamedValue > 
OStorageHelper::CreateGpgPackageEncryptionDat
 ctx->key(
 "0x909BE2575CEDBEA3", err, true));
 
+#if 0
 // good, ctx is setup now, let's sign the lot
 GpgME::Data data_in(
 
reinterpret_cast(xmlSecBufferGetData(pDsigCtx->transformCtx.result)),
@@ -505,7 +506,7 @@ uno::Sequence< beans::NamedValue > 
OStorageHelper::CreateGpgPackageEncryptionDat
 aContainer[0].Value = makeAny(aGpgEncryptionData);
 aContainer[1].Name = "EncryptionKey";
 aContainer[1].Value = makeAny(aEncryptionData);
-
+#endif
 (void)aDocName;
 
 return aContainer;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


BlueGem Technologies license statement

2017-10-12 Thread BlueGem Technologies
All of my past & future contributions to LibreOffice may be
   licensed under the MPLv2/LGPLv3+ dual license.

-- 
BlueGem Technologies
www.bluegemtech.com
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] core.git: download.lst external/pdfium

2017-10-12 Thread Miklos Vajna
 download.lst  |4 ++--
 external/pdfium/Library_pdfium.mk |   34 +-
 external/pdfium/ubsan.patch   |8 
 3 files changed, 27 insertions(+), 19 deletions(-)

New commits:
commit 5352dfbbe22b59983e1b91366908724138b9783a
Author: Miklos Vajna 
Date:   Thu Oct 12 00:04:04 2017 +0200

pdfium: update to 3235

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

diff --git a/download.lst b/download.lst
index ef9cf8e55c4b..9a2cdc5de70f 100644
--- a/download.lst
+++ b/download.lst
@@ -188,8 +188,8 @@ export OWNCLOUD_ANDROID_LIB_SHA256SUM := 
b18b3e3ef7fae6a79b62f2bb43cc47a5346b633
 export OWNCLOUD_ANDROID_LIB_TARBALL := 
owncloud-android-library-0.9.4-no-binary-deps.tar.gz
 export PAGEMAKER_SHA256SUM := 
3b5de037692f8e156777a75e162f6b110fa24c01749e4a66d7eb83f364e52a33
 export PAGEMAKER_TARBALL := libpagemaker-0.0.3.tar.bz2
-export PDFIUM_SHA256SUM := 
76b08c5bc9cd41ccdd58aa41491d3f8e1fad517d7cb3e16d285b68ab175dc0fa
-export PDFIUM_TARBALL := pdfium-3196.tar.bz2
+export PDFIUM_SHA256SUM := 
7dc0d33fc24b1612865f5e173d48800ba3f2db891c57e3f92b9d2ce56ffeb72f
+export PDFIUM_TARBALL := pdfium-3235.tar.bz2
 export PIXMAN_SHA256SUM := 
21b6b249b51c6800dc9553b65106e1e37d0e25df942c90531d4c3997aa20a88e
 export PIXMAN_TARBALL := e80ebae4da01e77f68744319f01d52a3-pixman-0.34.0.tar.gz
 export LIBPNG_SHA256SUM := 
2f1e960d92ce3b3abd03d06dfec9637dfbd22febf107a536b44f7a47c60659f6
diff --git a/external/pdfium/Library_pdfium.mk 
b/external/pdfium/Library_pdfium.mk
index 13457c1a781e..5ae29a937344 100644
--- a/external/pdfium/Library_pdfium.mk
+++ b/external/pdfium/Library_pdfium.mk
@@ -270,6 +270,8 @@ $(eval $(call 
gb_Library_add_generated_exception_objects,pdfium,\
 UnpackedTarball/pdfium/core/fpdfapi/page/cpdf_psfunc \
 UnpackedTarball/pdfium/core/fpdfapi/page/cpdf_sampledfunc \
 UnpackedTarball/pdfium/core/fpdfapi/page/cpdf_stitchfunc \
+UnpackedTarball/pdfium/core/fpdfapi/parser/cpdf_object_avail \
+UnpackedTarball/pdfium/core/fpdfapi/parser/cpdf_page_object_avail \
 ))
 
 # fpdfdoc
@@ -303,7 +305,6 @@ $(eval $(call 
gb_Library_add_generated_exception_objects,pdfium,\
 UnpackedTarball/pdfium/core/fpdfdoc/cpvt_color \
 UnpackedTarball/pdfium/core/fpdfdoc/cpvt_fontmap \
 UnpackedTarball/pdfium/core/fpdfdoc/cpvt_generateap \
-UnpackedTarball/pdfium/core/fpdfdoc/cpvt_sectioninfo \
 UnpackedTarball/pdfium/core/fpdfdoc/cpvt_wordinfo \
 UnpackedTarball/pdfium/core/fpdfdoc/csection \
 UnpackedTarball/pdfium/core/fpdfdoc/ctypeset \
@@ -345,23 +346,18 @@ $(eval $(call 
gb_Library_add_generated_exception_objects,pdfium,\
 UnpackedTarball/pdfium/core/fxcodec/jbig2/JBig2_Segment \
 UnpackedTarball/pdfium/core/fxcodec/jbig2/JBig2_SymbolDict \
 UnpackedTarball/pdfium/core/fxcodec/jbig2/JBig2_TrdProc \
-UnpackedTarball/pdfium/core/fxcodec/lgif/cgifcontext \
-UnpackedTarball/pdfium/core/fxcodec/lgif/fx_gif \
 UnpackedTarball/pdfium/core/fxcodec/lbmp/fx_bmp \
+UnpackedTarball/pdfium/core/fxcodec/codec/ccodec_scanlinedecoder \
+UnpackedTarball/pdfium/core/fxcodec/gif/cfx_gif \
+UnpackedTarball/pdfium/core/fxcodec/gif/cfx_gifcontext \
+UnpackedTarball/pdfium/core/fxcodec/gif/cfx_lzwdecompressor \
 ))
 
 # fxcrt
 $(eval $(call gb_Library_add_generated_exception_objects,pdfium,\
 UnpackedTarball/pdfium/core/fxcrt/cfx_blockbuffer \
-UnpackedTarball/pdfium/core/fxcrt/cfx_bytestring \
-UnpackedTarball/pdfium/core/fxcrt/cfx_crtfileaccess \
 UnpackedTarball/pdfium/core/fxcrt/cfx_memorystream \
 UnpackedTarball/pdfium/core/fxcrt/cfx_seekablestreamproxy \
-UnpackedTarball/pdfium/core/fxcrt/cfx_widestring \
-UnpackedTarball/pdfium/core/fxcrt/fx_basic_buffer \
-UnpackedTarball/pdfium/core/fxcrt/fx_basic_gcc \
-UnpackedTarball/pdfium/core/fxcrt/fx_basic_utf \
-UnpackedTarball/pdfium/core/fxcrt/fx_basic_util \
 UnpackedTarball/pdfium/core/fxcrt/fx_bidi \
 UnpackedTarball/pdfium/core/fxcrt/fx_coordinates \
 UnpackedTarball/pdfium/core/fxcrt/fx_extension \
@@ -370,8 +366,6 @@ $(eval $(call 
gb_Library_add_generated_exception_objects,pdfium,\
 UnpackedTarball/pdfium/core/fxcrt/fx_system \
 UnpackedTarball/pdfium/core/fxcrt/fx_ucddata \
 UnpackedTarball/pdfium/core/fxcrt/fx_unicode \
-UnpackedTarball/pdfium/core/fxcrt/fxcrt_posix \
-UnpackedTarball/pdfium/core/fxcrt/fxcrt_windows \
 UnpackedTarball/pdfium/core/fxcrt/xml/cxml_attritem \
 UnpackedTarball/pdfium/core/fxcrt/xml/cxml_attrmap \
 UnpackedTarball/pdfium/core/fxcrt/xml/cxml_databufacc \
@@ -401,6 +395,16 @@ $(eval $(call 
gb_Library_add_generated_exception_objects,pdfium,\
 UnpackedTarball/pdfium/core/fxcrt/css/cfx_cssvaluelist \
 

[Libreoffice-bugs] [Bug 113080] context menu should include items "copy comment" and " paste comment"

2017-10-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113080

--- Comment #1 from Mohamed  ---
I tested the feature on :
• Operating system : Windows 8.1 Pro 64-bits.
• LibreOffice : Version: 5.4.2.2
Build ID: 22b09f6418e8c2d508a9eaf86b2399209b0990f4
CPU threads: 4; OS: Windows 6.2; UI render: default; 
Locale: en-US (en_US); Calc: group

And also on :
• Operating system : Ubuntu 16.04.3 64-bits.
• LibreOffice :Version: 5.4.2.2
Build ID: 22b09f6418e8c2d508a9eaf86b2399209b0990f4
CPU threads: 8; OS: Linux 4.4; UI render: default; VCL: gtk2; 
Locale: ja-JP (ja_JP.UTF-8); Calc: group

It's right the option of copy/paste a comment doesn't exist. Moreover, when I
select only the comment box, the copy/paste exist on the context menu but
grayed and not 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 113086] Function Wizard select range in other sheet get #REF!

2017-10-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113086

--- Comment #2 from Aschalew  ---
Created attachment 136943
  --> https://bugs.documentfoundation.org/attachment.cgi?id=136943=edit
Spreadsheet name get #REF

Reproduce;

Windows 10(x64)

LibreOffice:
Version: 5.4.2.2 (x64)
Build ID: 22b09f6418e8c2d508a9eaf86b2399209b0990f4
CPU threads: 8; OS: Windows 6.19; UI render: default; 
Locale: en-US (en_US); Calc: group

I have tried according the steps mentioned above, but it reproduce the same
thing for me too!

-- 
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 113082] Screen goes gray when try to "save as"

2017-10-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113082

--- Comment #1 from Mohamed  ---
I created new Writer and Impress files and checked the issue you mentioned on:
• Operating system : Ubuntu 16.04.3 64-bits.
• LibreOffice :Version: 5.4.2.2
Build ID: 22b09f6418e8c2d508a9eaf86b2399209b0990f4
CPU threads: 8; OS: Linux 4.4; UI render: default; VCL: gtk2; 
Locale: ja-JP (ja_JP.UTF-8); Calc: group

The « Save as » is working normally and the issue doesn’t occur. I recommend
you to try the last fresh version of LibreOffice.

-- 
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 113075] Slow Motion

2017-10-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113075

tommy27  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||ba...@quipo.it
 Resolution|--- |INSUFFICIENTDATA

--- Comment #1 from tommy27  ---
this is a valid suggestion but still too generic to be submitted to a bug
tracker with is intended to deal with specific bugs, in this case specific
performance issue that need a test file to be analized.

-- 
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 100726] Improve readability of OUString/OString concatenations

2017-10-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100726

--- Comment #27 from Commit Notification 
 ---
Tjipke van der Heide committed a patch related to this issue.
It has been pushed to "master":

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

tdf#100726 improved readability of OUString/Ostring concatenation

It will be available in 6.0.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 100726] Improve readability of OUString/OString concatenations

2017-10-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100726

Commit Notification  changed:

   What|Removed |Added

 Whiteboard|target:5.3.0 target:5.4.0   |target:5.3.0 target:5.4.0
   ||target:6.0.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 112993] RTL: Violet color missing from color palette

2017-10-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112993

--- Comment #4 from Gabor Kelemen  ---
I'll look into this once home from the conference.

I have seen such when I accidentally made some holes on the translation
handling code and it was unable to match a color name with a translation in
method SvxUnoConvertResourceStringBuiltIn :
https://opengrok.libreoffice.org/s?refs=SvxUnoConvertResourceStringBuiltIn=core

But no idea why does it happen only for some languages and not others.

-- 
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 43808] [META] Right to left language issues (RTL/CTL)

2017-10-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=43808

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||113064


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=113064
[Bug 113064] [META] RTL/CTL textbox related issues
-- 
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 103494] [META] Textbox bugs and enhancements

2017-10-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103494

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||113064


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=113064
[Bug 113064] [META] RTL/CTL textbox related issues
-- 
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 113064] New: [META] RTL/CTL textbox related issues

2017-10-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113064

Bug ID: 113064
   Summary: [META] RTL/CTL textbox related issues
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: philip...@hotmail.com
Blocks: 43808, 103494


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=43808
[Bug 43808] [META] Right to left language issues (RTL/CTL)
https://bugs.documentfoundation.org/show_bug.cgi?id=103494
[Bug 103494] [META] Textbox bugs and enhancements
-- 
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 113064] [META] RTL/CTL textbox related issues

2017-10-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113064

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||kaplanl...@gmail.com
 Ever confirmed|0   |1

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


[Libreoffice-bugs] [Bug 113065] New: RTL: Inserted textbox should use current text direction and not always use LTR

2017-10-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113065

Bug ID: 113065
   Summary: RTL: Inserted textbox should use current text
direction and not always use LTR
   Product: LibreOffice
   Version: Inherited From OOo
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: philip...@hotmail.com
Blocks: 113064

steps:
1. open writer with an rtl locale set (e.g. arabic or hebrew)
2. notice that the align right and right-to-left buttons are toggled in the
formatting toolbar
3. insert a textbox (Insert > Textbox or click the textbox toolbar button)
4. notice that the align right button is toggled in the text object toolbar,
but the left-to-right button is toggled for text direction

Version: 6.0.0.0.alpha0+
Build ID: 4d1ee296def5fde9c77702d3d19d76be33cbdaad
CPU threads: 2; OS: Linux 4.4; UI render: default; VCL: gtk2; 
Locale: ar-SA (en_US.UTF-8); Calc: group


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=113064
[Bug 113064] [META] RTL/CTL textbox related issues
-- 
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 113064] [META] RTL/CTL textbox related issues

2017-10-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113064
Bug 113064 depends on bug 112596, which changed state.

Bug 112596 Summary: Textbox failed to correct typing for RTL after //
https://bugs.documentfoundation.org/show_bug.cgi?id=112596

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 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-bugs] [Bug 112596] Textbox failed to correct typing for RTL after //

2017-10-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112596

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||philip...@hotmail.com
 Blocks||113064
 Resolution|--- |DUPLICATE

--- Comment #1 from Yousuf Philips (jay)  ---
Hi Mosaab,

Thank you for filing the bug. The problem is that when inserting a textbox, it
doesn't use the currently set text direction, which is reported in bug 113065.

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


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=113064
[Bug 113064] [META] RTL/CTL textbox related issues
-- 
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 113065] RTL: Inserted textbox should use current text direction and not always use LTR

2017-10-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113065

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

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


[Libreoffice-bugs] [Bug 113066] New: Mis-interpreting of graphics semicircles

2017-10-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113066

Bug ID: 113066
   Summary: Mis-interpreting of graphics semicircles
   Product: LibreOffice
   Version: 5.4.2.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: graphics stack
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: arc...@pancontrols.com

Created attachment 136922
  --> https://bugs.documentfoundation.org/attachment.cgi?id=136922=edit
Documents with a graphics image which is misinterpreted by LibreOffice, and
those created by MSWord are correctly opened by MSWord and incorrectly by
LibrOffice Writer

Images with semicircles appear to be misinterpreted with the semi-circle drawn
back-to-front.

-- 
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 113064] [META] RTL/CTL textbox related issues

2017-10-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113064

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||113062


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=113062
[Bug 113062] Numbering > 9 appear reversed while editing a textbox in impress
-- 
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 43808] [META] Right to left language issues (RTL/CTL)

2017-10-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=43808

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on|103495  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103495
[Bug 103495] Space between Arabic/Hebrew word missing in textboxes when
sentence begins with English word
-- 
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 103495] Space between Arabic/ Hebrew word missing in textboxes when sentence begins with English word

2017-10-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103495

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Blocks|43808, 103494   |113064


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=43808
[Bug 43808] [META] Right to left language issues (RTL/CTL)
https://bugs.documentfoundation.org/show_bug.cgi?id=103494
[Bug 103494] [META] Textbox bugs and enhancements
https://bugs.documentfoundation.org/show_bug.cgi?id=113064
[Bug 113064] [META] RTL/CTL textbox related issues
-- 
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 113064] [META] RTL/CTL textbox related issues

2017-10-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113064

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||103492


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103492
[Bug 103492] Arabic words not formed well in textboxes when sentence begins
with English word
-- 
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 103494] [META] Textbox bugs and enhancements

2017-10-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103494

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on|103492  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103492
[Bug 103492] Arabic words not formed well in textboxes when sentence begins
with English word
-- 
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 43808] [META] Right to left language issues (RTL/CTL)

2017-10-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=43808

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on|103492  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103492
[Bug 103492] Arabic words not formed well in textboxes when sentence begins
with English word
-- 
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 112810] [META] Arabic language-specific RTL issues

2017-10-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112810

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||103492


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103492
[Bug 103492] Arabic words not formed well in textboxes when sentence begins
with English word
-- 
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 103492] Arabic words not formed well in textboxes when sentence begins with English word

2017-10-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103492

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Blocks|43808, 103494   |112810, 113064


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=43808
[Bug 43808] [META] Right to left language issues (RTL/CTL)
https://bugs.documentfoundation.org/show_bug.cgi?id=103494
[Bug 103494] [META] Textbox bugs and enhancements
https://bugs.documentfoundation.org/show_bug.cgi?id=112810
[Bug 112810] [META] Arabic language-specific RTL issues
https://bugs.documentfoundation.org/show_bug.cgi?id=113064
[Bug 113064] [META] RTL/CTL textbox related issues
-- 
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 103494] [META] Textbox bugs and enhancements

2017-10-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103494

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on|103495  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103495
[Bug 103495] Space between Arabic/Hebrew word missing in textboxes when
sentence begins with English word
-- 
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 113064] [META] RTL/CTL textbox related issues

2017-10-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113064

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||103495


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103495
[Bug 103495] Space between Arabic/Hebrew word missing in textboxes when
sentence begins with English word
-- 
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 113065] RTL: Inserted textbox should use current text direction and not always use LTR

2017-10-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113065

Yousuf Philips (jay)  changed:

   What|Removed |Added

 CC||moc...@hotmail.com

--- Comment #1 from Yousuf Philips (jay)  ---
*** Bug 112596 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 113064] [META] RTL/CTL textbox related issues

2017-10-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113064

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||112596


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=112596
[Bug 112596] Textbox failed to correct typing for RTL after //
-- 
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 104757] ODBC data source connected to Access DB: inserting data by drag and drop into a table in Writer returns no data, only shows database field names or aliases (Windows).

2017-10-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104757

Alex Thurgood  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #9 from Alex Thurgood  ---
@Ken: I might be able to test this on a Windows 10 machine, but which ODBC
driver are you using and which version of Access ?

-- 
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 108115] Merging registry modules can overflow

2017-10-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108115

Xisco Faulí  changed:

   What|Removed |Added

 Status|ASSIGNED|NEW
   Assignee|chris.sherloc...@gmail.com  |libreoffice-b...@lists.free
   ||desktop.org

--- Comment #3 from Xisco Faulí  ---
Dear Chris Sherlock,
This bug has been in ASSIGNED status for more than 3 months without any
activity. Resetting it to NEW.
Please assigned it back to yourself if you're still working on this.

-- 
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 99535] Problem with inherited font size from another style

2017-10-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99535

pubpe...@laposte.net changed:

   What|Removed |Added

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

--- Comment #4 from pubpe...@laposte.net ---
It seems to work correctly in LO 5.2.7.2.
Big thanks to developers.

-- 
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 112998] Calc Freezes (Not Responding) When Auto-filter Is Set and Row /Column Freeze Enabled and Fcitx Input Method Enabled

2017-10-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112998

--- Comment #8 from Peter Nowee  ---
Sorry, I cannot reproduce this (#112998) with gtk2 or gtk3 on Debian.

Version: 5.4.1.2.0+
Build ID: 1:5.4.1-1~bpo9+1
CPU threads: 2; OS: Linux 4.9; UI render: default; VCL: gtk2; 
Locale: en-US (en_US.UTF-8); Calc: group

Version: 5.4.1.2.0+
Build ID: 1:5.4.1-1~bpo9+1
CPU threads: 2; OS: Linux 4.9; UI render: default; VCL: gtk3; 
Locale: en-US (en_US.UTF-8); Calc: group

(I can still reproduce #85795 with both gtk2 and gtk3.)

-- 
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 106294] CRASH when LibreOffice is closed while running a macro

2017-10-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106294

Xisco Faulí  changed:

   What|Removed |Added

 Status|ASSIGNED|NEW
   Assignee|lemoyne.cas...@gmail.com|libreoffice-b...@lists.free
   ||desktop.org

--- Comment #5 from Xisco Faulí  ---
Dear  LeMoyne Castle,
This bug has been in ASSIGNED status for more than 3 months without any
activity. Resetting it to NEW.
Please assigned it back to yourself if you're still working on this.

-- 
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 107967] System path on Unix starting with double-slashes converted to single slash

2017-10-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107967

Xisco Faulí  changed:

   What|Removed |Added

 Status|ASSIGNED|NEW
   Assignee|chris.sherloc...@gmail.com  |libreoffice-b...@lists.free
   ||desktop.org

--- Comment #4 from Xisco Faulí  ---
Dear Chris Sherlock,
This bug has been in ASSIGNED status for more than 3 months without any
activity. Resetting it to NEW.
Please assigned it back to yourself if you're still working on this.

-- 
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 113036] "hyphen" is changed to a "soft hyphen" in a pdf export

2017-10-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113036

--- Comment #4 from grhansolo  ---
TDF? What is 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 84389] EDITING: copy - paste to same sheet bug

2017-10-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84389

--- Comment #4 from Zineta  ---
LO 5.2.7;LO 6.0 and earlier
OS:Win 7
You will have error , "insert into multiple selection not possible." if you
paste 
selected cells to cells where some cells are hidden by filter.

But if you skip hidden rows you can paste it to current sheet.
Also when select all filtered  column it can be pasted no matter if hidden rows
exists.
Why not just check option copy results to, instead copy filtered cells?

-- 
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 113051] Impress Slide Pane doesn't update with Pasted Chart from Calc

2017-10-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113051

--- Comment #2 from Alex Thurgood  ---
No repro with 

Version: 5.4.2.2
Build ID: 22b09f6418e8c2d508a9eaf86b2399209b0990f4
Threads CPU : 4; OS : Mac OS X 10.13; UI Render : par défaut; 
Locale : fr-FR (fr_FR.UTF-8); Calc: group


The slide preview updated immediately as soon as I pasted in the Calc chart via
the shortcut key CMD-V.

-- 
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 113051] Impress Slide Pane doesn't update with Pasted Chart from Calc

2017-10-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113051

--- Comment #3 from Alex Thurgood  ---
I am using Mac OSX 10.13 on a Macmini for the test.

-- 
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 113061] No characters (font) in flatpak fresh on Fedora

2017-10-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113061

--- Comment #1 from Jan Vlug  ---
Created attachment 136918
  --> https://bugs.documentfoundation.org/attachment.cgi?id=136918=edit
Screenshot that shows the problem

-- 
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 113061] New: No characters (font) in flatpak fresh on Fedora

2017-10-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113061

Bug ID: 113061
   Summary: No characters (font) in flatpak fresh on Fedora
   Product: LibreOffice
   Version: 5.4.2.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: jan.pub...@famvlug.nl

Description:
I installed LibreOffice fresh via flatpak on my Fedora 26 system following the
instructions at: https://www.libreoffice.org/download/flatpak/

When I run LibreOffice, I'm missing characters in the menus, see attachment.

I'm running on Wayland if that might be important.

Steps to Reproduce:
flatpak run org.libreoffice.LibreOffice/x86_64/fresh

Actual Results:  
Gtk-Message: Failed to load module "pk-gtk-module"
Gtk-Message: Failed to load module "pk-gtk-module"

(soffice:11): Pango-WARNING **: failed to create cairo scaled font, expect ugly
output. the offending font is 'Cantarell 11'

(soffice:11): Pango-WARNING **: font_face status is: file not found

(soffice:11): Pango-WARNING **: scaled_font status is: file not found

(soffice:11): Pango-WARNING **: shaping failure, expect ugly output.
shape-engine='PangoFcShapeEngine', font='Cantarell 11', text='●'

(soffice:11): Pango-WARNING **: failed to create cairo scaled font, expect ugly
output. the offending font is 'Cantarell 11'

(soffice:11): Pango-WARNING **: font_face status is: file not found

(soffice:11): Pango-WARNING **: scaled_font status is: file not found


Expected Results:
Correctly displayed characters in the menu.


Reproducible: Always

User Profile Reset: No

Additional Info:


User-Agent: Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:56.0) Gecko/20100101
Firefox/56.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 112998] Calc Freezes (Not Responding) When Auto-filter Is Set and Row /Column Freeze Enabled and Fcitx Input Method Enabled

2017-10-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112998

--- Comment #9 from Peter Nowee  ---
fcitx was running, by the way.

-- 
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 105980] Filter lost the Regular expression after saving

2017-10-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105980

Xisco Faulí  changed:

   What|Removed |Added

 Status|ASSIGNED|NEW
   Assignee|juergen.funk...@cib.de  |libreoffice-b...@lists.free
   ||desktop.org

--- Comment #3 from Xisco Faulí  ---
Dear Juergen Funk (CIB),
This bug has been in ASSIGNED status for more than 3 months without any
activity. Resetting it to NEW.
Please assigned it back to yourself if you're still working on this.

-- 
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 112558] Single line spacing of Calibri and Times New Roman no longer calculated correctly in Calc compared to Writer

2017-10-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112558

--- Comment #21 from Caolán McNamara  ---
part of this puzzle is probably (or at least to complicate this some more)
"external leading", in writer this can be turned off and on by
tools->options->writer->compatibility->"do not add leading (extra space)
between lines of text"

-- 
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 35107] A hyperlink in writer document doesn' t expose correct role and URL to AT-SPI.

2017-10-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=35107

Xisco Faulí  changed:

   What|Removed |Added

 Status|ASSIGNED|NEW
 CC||xiscofa...@libreoffice.org
   Assignee|jaragu...@igalia.com|libreoffice-b...@lists.free
   ||desktop.org

--- Comment #15 from Xisco Faulí  ---
Dear Jacobo Aragunde Pérez,
This bug has been in ASSIGNED status for more than 3 months without any
activity. Resetting it to NEW.
Please assigned it back to yourself if you're still working on this.

-- 
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 104654] Slideshow: ANIMATIONS lost after backward show with transition

2017-10-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104654

Xisco Faulí  changed:

   What|Removed |Added

 Status|ASSIGNED|NEW
   Assignee|regis.perdr...@gmail.com|libreoffice-b...@lists.free
   ||desktop.org

--- Comment #13 from Xisco Faulí  ---
Dear Regis Perdreau,
This bug has been in ASSIGNED status for more than 3 months without any
activity. Resetting it to NEW.
Please assigned it back to yourself if you're still working on this.

-- 
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 113036] "hyphen" is changed to a "soft hyphen" in a pdf export

2017-10-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113036

--- Comment #2 from grhansolo  ---
Hi,

I tried it with the last stable version (5.3.6.1). In 5.3.6.1 there is no bug.
The bug is only in the EOL Version 5.1.6.2. 

5.1.6.2 is part of the offical Mint 17.3 repository. Mint 17.3 based on Ubuntu
LTS (14.04). 

Why is the bug in LO 5.1.6.2 not fixed? It is part of a LTS version.

-- 
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 113036] "hyphen" is changed to a "soft hyphen" in a pdf export

2017-10-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113036

Julien Nabet  changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |WORKSFORME

--- Comment #3 from Julien Nabet  ---
5.1 is EOL and not supported officially by TDF anymore
"LTS" must be for Mint, not for TDF.

-- 
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 104262] Import Corel Print House files

2017-10-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104262

Xisco Faulí  changed:

   What|Removed |Added

 Status|ASSIGNED|NEW
   Assignee|travi...@g.ucla.edu |libreoffice-b...@lists.free
   ||desktop.org

--- Comment #5 from Xisco Faulí  ---
Dear M Travis,
This bug has been in ASSIGNED status for more than 3 months without any
activity. Resetting it to NEW.
Please assigned it back to yourself if you're still working on this.

-- 
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 112990] LO60master on macOS: crashing at start

2017-10-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112990

--- Comment #10 from mi...@filmsi.net ---
Who can I send the crash report to? I don't want to publish it here.

-- 
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 112990] LO60master on macOS: crashing at start

2017-10-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112990

--- Comment #11 from Martin Srebotnjak  ---
I checked, thread 9 crashed, it seems connected to JVM, it doesn't matter if
there is a new profile (without Java settings) or an existing one (with Java
set up).
So maybe this makes sense to someone:

Thread 9 Crashed:
0   libsystem_kernel.dylib  0x7fff54fe5fce __pthread_kill + 10
1   libsystem_pthread.dylib 0x7fff55123150 pthread_kill + 333
2   libsystem_c.dylib   0x7fff54f4232a abort + 127
3   libuno_sal.dylib.3  0x00010ae84be9 (anonymous
namespace)::callSystemHandler(int, __siginfo*, void*) + 185
4   libuno_sal.dylib.3  0x00010ae84962 (anonymous
namespace)::signalHandlerFunction(int, __siginfo*, void*) + 162
5   libjvm.dylib0x00014acb44b7
os::Bsd::chained_handler(int, __siginfo*, void*) + 181
6   libjvm.dylib0x00014acb8431
JVM_handle_bsd_signal + 146
7   libjvm.dylib0x00014acb4a6f signalHandler(int,
__siginfo*, void*) + 47
8   libsystem_platform.dylib0x7fff55116f5a _sigtramp + 26
9   ??? 00 0 + 0
10  libjava_uno.dylib   0x0001610fc36b UNO_proxy_free + 91
11  libuno_cppu.dylib.3 0x00010b27b843 (anonymous
namespace)::s_stub_defenv_revokeInterface(__va_list_tag (*) [1]) + 595
12  libuno_cppu.dylib.3 0x00010b276a9e
s_environment_invoke_v(_uno_Environment*, _uno_Environment*, void
(*)(__va_list_tag (*) [1]), __va_list_tag (*) [1]) + 174
13  libuno_cppu.dylib.3 0x00010b2769d9
uno_Environment_invoke_v + 41
14  libuno_cppu.dylib.3 0x00010b276b5d
uno_Environment_invoke + 141
15  libjava_uno.dylib   0x0001610fc4c9 UNO_proxy_release +
9
16  libgcc3_uno.dylib   0x00011771c155
bridges::cpp_uno::shared::freeCppInterfaceProxy(_uno_ExtEnvironment*, void*) +
149
17  libuno_cppu.dylib.3 0x00010b27b843 (anonymous
namespace)::s_stub_defenv_revokeInterface(__va_list_tag (*) [1]) + 595
18  libuno_cppu.dylib.3 0x00010b276a9e
s_environment_invoke_v(_uno_Environment*, _uno_Environment*, void
(*)(__va_list_tag (*) [1]), __va_list_tag (*) [1]) + 174
19  libuno_cppu.dylib.3 0x00010b2769d9
uno_Environment_invoke_v + 41
20  libuno_cppu.dylib.3 0x00010b276b5d
uno_Environment_invoke + 141
21  libgcc3_uno.dylib   0x00011771c74d
bridges::cpp_uno::shared::CppInterfaceProxy::releaseProxy() + 301
22  libgcc3_uno.dylib   0x000117713f5f cpp_vtable_call +
447
23  libgcc3_uno.dylib   0x000117713d56
privateSnippetExecutor + 118
24  liblnglo.dylib  0x000111b721c5
com::sun::star::uno::Reference::~Reference()
+ 21
25  liblnglo.dylib  0x000111b6f372
std::__1::pair
>::~pair() + 18
26  liblnglo.dylib  0x000111b6f332
std::__1::__tree,
std::__1::__map_value_compare,
std::__1::less, true>,
std::__1::allocator >
>::destroy(std::__1::__tree_node,
void*>*) + 50
27  liblnglo.dylib  0x000111b6e29e
GrammarCheckingIterator::dispose() + 270
28  libswlo.dylib   0x000162224437 (anonymous
namespace)::doDispose(com::sun::star::uno::Reference
const&) + 87
29  libswlo.dylib   0x0001622244de
sw::proofreadingiterator::dispose() + 94
30  libswlo.dylib   0x000162221d09 FinitCore() + 25
31  libswlo.dylib   0x00016281a35e SwDLL::~SwDLL() +
110
32  libswlo.dylib   0x00016281a77b
comphelper::unique_disposing_ptr::reset(SwDLL*) + 27
33  libswlo.dylib   0x00016281a58b
comphelper::unique_disposing_solar_mutex_reset_ptr::reset(SwDLL*) + 59
34  libswlo.dylib   0x00016281b175
comphelper::unique_disposing_solar_mutex_reset_ptr::~unique_disposing_solar_mutex_reset_ptr()
+ 53
35  libsystem_c.dylib   0x7fff54f43069
__cxa_finalize_ranges + 351
36  libsystem_c.dylib   0x7fff54f4337a exit + 55
37  libjvm.dylib0x00014ab1d26a vm_direct_exit(int)
+ 28
38  libjvm.dylib0x00014ade200d
VM_Operation::evaluate() + 79
39  libjvm.dylib0x00014ade0677
VMThread::evaluate_operation(VM_Operation*) + 223
40  libjvm.dylib0x00014ade0ac4 VMThread::loop() +
808
41  

[Libreoffice-bugs] [Bug 113036] "hyphen" is changed to a "soft hyphen" in a pdf export

2017-10-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113036

--- Comment #5 from Julien Nabet  ---
TDF: "The Document Foundation"
https://en.wikipedia.org/wiki/The_Document_Foundation, the organism which
produces LibreOffice

-- 
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 112990] LO60master on macOS: crashing at start

2017-10-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112990

--- Comment #12 from Martin Srebotnjak  ---
It seems to be connected to language grammarchecking/spellchecking
code/functionality ... If I disable the grammar checking and spell-checking, it
still crashes, but at least the main window sometimes opens ...

-- 
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 85994] Images in DOCX are Fliped Horizontally when in Right-to-Left Format

2017-10-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=85994

Lior Kaplan  changed:

   What|Removed |Added

 CC||kaplanl...@gmail.com
 Blocks||43808

--- Comment #15 from Lior Kaplan  ---
Still happens in LibreOffice 5.4.1.


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=43808
[Bug 43808] [META] Right to left language issues (RTL/CTL)
-- 
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 43808] [META] Right to left language issues (RTL/CTL)

2017-10-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=43808

Lior Kaplan  changed:

   What|Removed |Added

 Depends on||85994


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=85994
[Bug 85994] Images in DOCX are Fliped Horizontally when in Right-to-Left Format
-- 
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 113063] In a textbox and RTL directionality - weak characters misplaced when sentence begins with LTR text

2017-10-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113063

--- Comment #1 from Lior Kaplan  ---
Created attachment 136921
  --> https://bugs.documentfoundation.org/attachment.cgi?id=136921=edit
testdoc for 113063

As demonstrated during LibOCon 2017

-- 
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 112950] PDF export of RTL text messed up in some cases

2017-10-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112950

Lior Kaplan  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||io...@users.sourceforge.net
   ||, kaplanl...@gmail.com
 Blocks||112812
 Ever confirmed|0   |1

--- Comment #5 from Lior Kaplan  ---
Confirmed with LibreOffice 5.4.1 on Debian 64bit.

Seems to happen only with Culmus fonts. CCing Maxim Iorsh for his opinion on
this (as their creator).


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=112812
[Bug 112812] [META] Hebrew language-specific RTL issues
-- 
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 112812] [META] Hebrew language-specific RTL issues

2017-10-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112812

Lior Kaplan  changed:

   What|Removed |Added

 Depends on||112950


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=112950
[Bug 112950] PDF export of RTL text messed up in some cases
-- 
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 107360] No Access connection for 64 bit LO (Windows) - see Comment 7

2017-10-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107360

Timur  changed:

   What|Removed |Added

Summary|No Access connection|No Access connection for 64
   |(Windows)   |bit LO (Windows) - see
   ||Comment 7

-- 
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 43808] [META] Right to left language issues (RTL/CTL)

2017-10-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=43808

Lior Kaplan  changed:

   What|Removed |Added

 Depends on||67594


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=67594
[Bug 67594] [RTF Import] [RTL] Writer imports punctuation signs incorrectly in
RTL text.
-- 
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 49320] FILEOPEN particular Hebrew MSO2007 .docx latin-alphabet document shows confused LTR RTL

2017-10-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=49320

--- Comment #8 from Lior Kaplan  ---
Still happens 5.4.1.

-- 
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 113062] Numbering > 9 appear reversed while editing a textbox in impress

2017-10-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113062

--- Comment #1 from Lior Kaplan  ---
Created attachment 136920
  --> https://bugs.documentfoundation.org/attachment.cgi?id=136920=edit
testdoc for 113062

As demonstrated during LibOCon 2017

-- 
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 104757] ODBC data source connected to Access DB: inserting data by drag and drop into a table in Writer returns no data, only shows database field names or aliases (Windows).

2017-10-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104757

--- Comment #10 from Ken  ---
Hello Alex Good Day to you. I am using Access 2016 with the latest available
ODBC driver for 32 bit (I think).The file version is "AccessDataBaseEngine"
version 14.0.6119.5000 Part of my team uses the DB as a client install with the
latest Access runtime to access data within Access.
I must admit I thought this thread may have been forgotten. I do think I have
another clue that may help you to determine where the issue is in the code. I
figured this out when testing the latest release of LO. I still try every
version to see if by chance the problem has been resolved. 

Here is what I found out that I think will help to resolve this. If I consider
that the command button "data to text" is a method to copy and paste with
formatting parameters, then we may know what is wrong. Per my earlier mails and
step recording it is easily noted that everything copies and paste into the
writer document except the data to table. In the latest version of LO I tried
highlighting data in the table then used right click to choose "copy", when I
pasted to the document everything worked as if I had used the command button in
Version: 5.1.6.2. Things were perfect again although not user friendly. Now for
the extremely interesting part, when I went back into Version: 5.1.6.2
(working) and tried the same steps (right click etc.) the behavior mirrored
what happens in the latest version of LO when using the command button "table
inserts but no data". 

In summary what works in one version works exactly opposite in the other
version. Does this help to maybe track down the root of the issue? I hope the
way I have presented this makes sense. I can do a step recording if need be but
hope I have painted a clear picture of the behavior and a clue to the
resolution. I have a test environment and would be willing to test any possible
solution.

-- 
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 113063] New: In a textbox and RTL directionality - weak characters misplaced when sentence begins with LTR text

2017-10-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113063

Bug ID: 113063
   Summary: In a textbox and RTL directionality - weak characters
misplaced when sentence begins with LTR text
   Product: LibreOffice
   Version: 5.4.1.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: kaplanl...@gmail.com

Description:
Similar to bug #103495 but for Impress. More severe as all text in Impress is
in textboxes (while in writer can be done without).

Steps to Reproduce:

Copy this sentence to a textbox in impress. Notice the location of the full
stop.

English עבריתmore עוד.

Actual Results:  
Text appears in the wrong order

Expected Results:
For it to appear in right order, e.g. the full stop at the end of the sentence.


Reproducible: Always

User Profile Reset: No

Additional Info:


User-Agent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like
Gecko) Chrome/60.0.3112.78 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-bugs] [Bug 113063] In a textbox and RTL directionality - weak characters misplaced when sentence begins with LTR text

2017-10-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113063

Lior Kaplan  changed:

   What|Removed |Added

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

-- 
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 103495] Space between Arabic/ Hebrew word missing in textboxes when sentence begins with English word

2017-10-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103495

Lior Kaplan  changed:

   What|Removed |Added

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

-- 
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 67594] [RTF Import] [RTL] Writer imports punctuation signs incorrectly in RTL text.

2017-10-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=67594

Lior Kaplan  changed:

   What|Removed |Added

 CC||kaplanl...@gmail.com
 Blocks||43808

--- Comment #14 from Lior Kaplan  ---
Confirmed with LibreOffice 5.4.1.


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=43808
[Bug 43808] [META] Right to left language issues (RTL/CTL)
-- 
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 63847] Page number in TOC sometimes gets "CTL font" attribute in mixed LTR/RTL document

2017-10-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=63847

Lior Kaplan  changed:

   What|Removed |Added

 CC||kaplanl...@gmail.com

--- Comment #6 from Lior Kaplan  ---
Still happens in 5.4.1.

-- 
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 63444] Prevent Dialogs, Lists, etc in RTL sheets from expanding outside of LibreOffice Window

2017-10-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=63444

--- Comment #20 from Lior Kaplan  ---
Still happens in 5.4.1.

-- 
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 55361] RTL text appears reversed during animation

2017-10-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=55361

--- Comment #10 from Lior Kaplan  ---
Demonstrated in LibOCon 2017.

-- 
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 50301] : RTL .doc file layout problem

2017-10-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=50301

Lior Kaplan  changed:

   What|Removed |Added

 Blocks||112810

--- Comment #9 from Lior Kaplan  ---
Do you have a simpler document which the problem still happens? Might make it
easier to fix.


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=112810
[Bug 112810] [META] Arabic language-specific RTL issues
-- 
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 112810] [META] Arabic language-specific RTL issues

2017-10-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112810

Lior Kaplan  changed:

   What|Removed |Added

 Depends on||50301


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=50301
[Bug 50301] : RTL .doc file layout problem
-- 
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 113062] New: Numbering > 9 appear reversed while editing a textbox in impress

2017-10-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113062

Bug ID: 113062
   Summary: Numbering > 9 appear reversed while editing a textbox
in impress
   Product: LibreOffice
   Version: 5.4.1.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: kaplanl...@gmail.com

Description:
When you edit a textbox in LTR direction the numbering will show 01, 11, 21 and
31 instead of 10, 11, 12 and 13. Leaving the textbox edit mode with show them
correctly.

While this doesn't affect the presentation itself, it makes Impress looks "half
baked" while creating the presentation.

Steps to Reproduce:
1. In a text box, turn on numbering.
2. Enter more than 9 items on the list
3. Change list directionality to RTL

Actual Results:  
numbers bigger than 9 appear backwords (01, 11, 21, 31)

Expected Results:
numbers bigger than 9 appear as 10, 11, 12 and 13


Reproducible: Always

User Profile Reset: No

Additional Info:


User-Agent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like
Gecko) Chrome/60.0.3112.78 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-bugs] [Bug 112810] [META] Arabic language-specific RTL issues

2017-10-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112810

Lior Kaplan  changed:

   What|Removed |Added

 Depends on||64830


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=64830
[Bug 64830] RTL: The Arabic languages for the CTL spellcheck should be merged
into 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 64830] RTL: The Arabic languages for the CTL spellcheck should be merged into one

2017-10-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=64830

Lior Kaplan  changed:

   What|Removed |Added

 CC||kaplanl...@gmail.com
 Blocks||112810


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=112810
[Bug 112810] [META] Arabic language-specific RTL issues
-- 
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 65563] RTL text (Arabic/Hebrew) appear LTR during input in cells although the text layout is RTL!

2017-10-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=65563

--- Comment #12 from Lior Kaplan  ---
Still happens in LibreOffice 5.4.1.

-- 
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 113042] FILESAVE: Saving an large calc sheet is slower in LibO5.4 compared to LibO5.3

2017-10-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113042

--- Comment #6 from Telesto  ---
The bisect results should be right. I checked it again (but I didn't reverse
the commit).

-- 
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 112990] LO60master on macOS: crashing at start when Java-based grammar/spellchecking invoked

2017-10-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112990

Alex Thurgood  changed:

   What|Removed |Added

Summary|LO60master on macOS:|LO60master on macOS:
   |crashing at start   |crashing at start when
   ||Java-based
   ||grammar/spellchecking
   ||invoked

-- 
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 112990] LO60master on macOS: crashing at start

2017-10-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112990

--- Comment #13 from Alex Thurgood  ---
(In reply to Martin Srebotnjak from comment #12)
> It seems to be connected to language grammarchecking/spellchecking
> code/functionality ... If I disable the grammar checking and spell-checking,
> it still crashes, but at least the main window sometimes opens ...

So, how is this grammar/spell checking invoked ? 
Is it due to an extension ?
Which version of JDK are you using within LO ?

-- 
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 113042] FILESAVE: Saving an large calc sheet is slower in LibO5.4 compared to LibO5.3

2017-10-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113042

--- Comment #7 from Julien Nabet  ---
(In reply to Telesto from comment #6)
> The bisect results should be right. I checked it again (but I didn't reverse
> the commit).

Saving concerns export part whereas the quoted patch concerns import part.
(unless the result of import triggers something buggy for export?)

Callgrind trace (quoted by Michael) can be retrieved on Linux by following this
process
https://wiki.documentfoundation.org/QA/BugReport/Debug_Information#GNU.2FLinux:_How_to_get_a_callgrind_trace
but it may take a lot of time to get it since you test on a large 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 113064] [META] RTL/CTL textbox related issues

2017-10-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113064

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||113065


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=113065
[Bug 113065] RTL: Inserted textbox should use current text direction and not
always use LTR
-- 
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   3   4   >