Re: Requesting to mentor my new Idea for GSOC 2017(LibreOffice organisation)

2017-03-02 Thread Miklos Vajna
Hi Kshitij,

On Fri, Mar 03, 2017 at 09:22:34AM +0530, Kshitij Warungase 
 wrote:
>   I am Kshitij senior undergraduate student(Computer Science).
>   From many years I am going to use LibreOffice and found some issues.
> So, as an Computer Science student I want to contribute to one of this
> issue. We cant call this idea as an issue, but it is an addon.
> 
> Idea:
> *Importing and Exporting files from and to Google
> Drive/DropBox.*
> Many times we need to import files from Other Storage like
> Google Drive or BitBucket or DropBox. So, We can add an AddOn such that
> anyone can import file from online storage and export it to the same or
> other.

Do you realize Google Drive support is already there? BitBucket (isn't
that just hg/git hosting?) and/or DropBox may make sense via libcmis,
provided you find someone to mentor the project.

> Also went through LibreOffice source code and understood the
> architecture. It will be my pleasure, if you support my Idea and ready to
>  mentor it.

The best you can do to prove that is to contribute small patches, see
 for details.

Having one or two non-trivial easy hacks solved is a requirement for applying
as a student. See instructions from last year at
.

> If you like my idea then, in further communication I will tell
> you my next plan of execution and how I am going to complete it.

I would say first focus on completing some easy hacks, then you go start
writing your application.

Regards,

Miklos


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


[Libreoffice-commits] core.git: animations/source basctl/source basic/qa basic/source bridges/source

2017-03-02 Thread Andrea Gelmini
 animations/source/animcore/animcore.cxx   |4 ++--
 basctl/source/basicide/baside2b.cxx   |2 +-
 basic/qa/vba_tests/ole_ObjAssignNoDflt.vb |2 +-
 basic/source/classes/sb.cxx   |2 +-
 basic/source/runtime/runtime.cxx  |2 +-
 basic/source/sbx/sbxform.cxx  |2 +-
 bridges/source/cpp_uno/gcc3_linux_sparc/cpp2uno.cxx   |2 +-
 bridges/source/cpp_uno/gcc3_linux_sparc64/cpp2uno.cxx |2 +-
 bridges/source/cpp_uno/gcc3_linux_x86-64/abi.cxx  |2 +-
 bridges/source/cpp_uno/gcc3_linux_x86-64/uno2cpp.cxx  |2 +-
 bridges/source/cpp_uno/gcc3_macosx_x86-64/abi.cxx |2 +-
 bridges/source/cpp_uno/gcc3_macosx_x86-64/uno2cpp.cxx |2 +-
 bridges/source/cpp_uno/gcc3_solaris_sparc/cpp2uno.cxx |2 +-
 13 files changed, 14 insertions(+), 14 deletions(-)

New commits:
commit 0a850f3e15ef762f33688b11a07624ec2674caa1
Author: Andrea Gelmini 
Date:   Thu Mar 2 12:29:36 2017 +0100

Fix typos

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

diff --git a/animations/source/animcore/animcore.cxx 
b/animations/source/animcore/animcore.cxx
index b45e48f..ff30100 100644
--- a/animations/source/animcore/animcore.cxx
+++ b/animations/source/animcore/animcore.cxx
@@ -121,7 +121,7 @@ class AnimationNodeBase :   public XAnimateMotion,
 public OWeakObject
 {
 public:
-// our first, last and only protection from mutli-threads!
+// our first, last and only protection from multi-threads!
 Mutex maMutex;
 };
 
@@ -364,7 +364,7 @@ private:
 /** current iteration position */
 ChildList_t::iterator   maIter;
 
-/** our first, last and only protection from mutli-threads! */
+/** our first, last and only protection from multi-threads! */
 Mutex   maMutex;
 };
 
diff --git a/basctl/source/basicide/baside2b.cxx 
b/basctl/source/basicide/baside2b.cxx
index d2d96b8..a82d57c 100644
--- a/basctl/source/basicide/baside2b.cxx
+++ b/basctl/source/basicide/baside2b.cxx
@@ -476,7 +476,7 @@ bool EditorWindow::ImpCanModify()
 if ( StarBASIC::IsRunning() && rModulWindow.GetBasicStatus().bIsRunning )
 {
 // If in Trace-mode, abort the trace or refuse input
-// Remove markers in the modules in Notify at Basic::Stoped
+// Remove markers in the modules in Notify at Basic::Stopped
 if (ScopedVclPtrInstance(nullptr, WB_OK_CANCEL, 
IDEResId(RID_STR_WILLSTOPPRG).toString())->Execute() == RET_OK)
 {
 rModulWindow.GetBasicStatus().bIsRunning = false;
diff --git a/basic/qa/vba_tests/ole_ObjAssignNoDflt.vb 
b/basic/qa/vba_tests/ole_ObjAssignNoDflt.vb
index 9a86424..e1be5d3 100644
--- a/basic/qa/vba_tests/ole_ObjAssignNoDflt.vb
+++ b/basic/qa/vba_tests/ole_ObjAssignNoDflt.vb
@@ -23,7 +23,7 @@ End If
 cn.CommandTimeout = origTimeout ' restore timeout
 Rem Double check objCmd.ActiveConnection is pointing to objCmd.ActiveConnection
 If objCmd.ActiveConnection.CommandTimeout <> origTimeout Then
-doUnitTest = "FAIL expected orignal timeout " & origTimeout & " but got " 
&  objCmd.ActiveConnection.CommandTimeout
+doUnitTest = "FAIL expected original timeout " & origTimeout & " but got " 
&  objCmd.ActiveConnection.CommandTimeout
 Exit Function
 End If
 doUnitTest = "OK" ' no error
diff --git a/basic/source/classes/sb.cxx b/basic/source/classes/sb.cxx
index f00b6a2..fdb8caf 100644
--- a/basic/source/classes/sb.cxx
+++ b/basic/source/classes/sb.cxx
@@ -1626,7 +1626,7 @@ bool StarBASIC::CError( SbError code, const OUString& 
rMsg,
 {
 SolarMutexGuard aSolarGuard;
 
-// compiler error during runtime -> stop programm
+// compiler error during runtime -> stop program
 if( IsRunning() )
 {
 // #109018 Check if running Basic is affected
diff --git a/basic/source/runtime/runtime.cxx b/basic/source/runtime/runtime.cxx
index e3615b1..2e342c9 100644
--- a/basic/source/runtime/runtime.cxx
+++ b/basic/source/runtime/runtime.cxx
@@ -1974,7 +1974,7 @@ void SbiRuntime::StepSET()
 {
 SbxVariableRef refVal = PopVar();
 SbxVariableRef refVar = PopVar();
-StepSET_Impl( refVal, refVar, bVBAEnabled ); // this is really assigment
+StepSET_Impl( refVal, refVar, bVBAEnabled ); // this is really assignment
 }
 
 void SbiRuntime::StepVBASET()
diff --git a/basic/source/sbx/sbxform.cxx b/basic/source/sbx/sbxform.cxx
index c468962..f42b804 100644
--- a/basic/source/sbx/sbxform.cxx
+++ b/basic/source/sbx/sbxform.cxx
@@ -115,7 +115,7 @@ SbxBasicFormater::SbxBasicFormater( sal_Unicode _cDecPoint, 
sal_Unicode _cThousa
 {
 }
 
-// function for ouput of a error-text (for debugging)
+// function for output of a error-text (for debugging)
 // displaces all characters of the 

[Libreoffice-commits] core.git: canvas/source chart2/source cli_ure/source comphelper/source compilerplugins/clang connectivity/source

2017-03-02 Thread Andrea Gelmini
 canvas/source/tools/surfaceproxy.cxx  |2 +-
 chart2/source/view/charttypes/VSeriesPlotter.cxx  |2 +-
 cli_ure/source/scripts/increment_version.pl   |2 +-
 comphelper/source/misc/backupfilehelper.cxx   |6 +++---
 compilerplugins/clang/overrideparam.cxx   |2 +-
 compilerplugins/clang/passstuffbyref.cxx  |2 +-
 compilerplugins/clang/refcounting.cxx |2 +-
 compilerplugins/clang/unusedmethods.py|2 +-
 connectivity/source/drivers/evoab2/NDriver.cxx|2 +-
 connectivity/source/drivers/kab/KConnection.cxx   |2 +-
 connectivity/source/drivers/kab/KDriver.cxx   |2 +-
 connectivity/source/drivers/macab/MacabConnection.cxx |2 +-
 connectivity/source/drivers/macab/MacabDriver.cxx |2 +-
 connectivity/source/drivers/mork/MConnection.cxx  |2 +-
 connectivity/source/inc/hsqldb/HDriver.hxx|2 +-
 connectivity/source/inc/mysql/YDriver.hxx |2 +-
 connectivity/source/inc/odbc/OConnection.hxx  |2 +-
 connectivity/source/parse/sqliterator.cxx |2 +-
 18 files changed, 20 insertions(+), 20 deletions(-)

New commits:
commit 6fab286b2a213575e3b1ccd0eddb00c8b242af00
Author: Andrea Gelmini 
Date:   Thu Mar 2 17:56:40 2017 +0100

Fix typos

Change-Id: I4f16ba5fc32cbfd6a5b01e495f3ad905da193524
Reviewed-on: https://gerrit.libreoffice.org/34808
Reviewed-by: Noel Grandin 
Tested-by: Noel Grandin 

diff --git a/canvas/source/tools/surfaceproxy.cxx 
b/canvas/source/tools/surfaceproxy.cxx
index 2699820..4f17d239 100644
--- a/canvas/source/tools/surfaceproxy.cxx
+++ b/canvas/source/tools/surfaceproxy.cxx
@@ -114,7 +114,7 @@ namespace canvas
 ::basegfx::triangulator::triangulate(rClipPoly));
 
 // dump polygons
-SAL_INFO("canvas", "Orignal clip polygon: " <<  
basegfx::tools::exportToSvgD( rClipPoly, true, true, false ));
+SAL_INFO("canvas", "Original clip polygon: " <<  
basegfx::tools::exportToSvgD( rClipPoly, true, true, false ));
 SAL_INFO("canvas", "Triangulated polygon: " <<  
basegfx::tools::exportToSvgD(basegfx::B2DPolyPolygon(rTriangulatedPolygon), 
true, true, false ));
 
 for( const auto& rSurfacePtr : maSurfaceList )
diff --git a/chart2/source/view/charttypes/VSeriesPlotter.cxx 
b/chart2/source/view/charttypes/VSeriesPlotter.cxx
index bd17a54..0d98ead 100644
--- a/chart2/source/view/charttypes/VSeriesPlotter.cxx
+++ b/chart2/source/view/charttypes/VSeriesPlotter.cxx
@@ -1697,7 +1697,7 @@ namespace {
  * For each X value, we calculate separate Y value ranges for each data
  * series in the first pass.  In the second pass, we calculate the minimum Y
  * value by taking the absolute minimum value of all data series, whereas
- * the maxium Y value is the sum of all the series maximum Y values.
+ * the maximum Y value is the sum of all the series maximum Y values.
  *
  * Once that's done for all X values, the final min / max Y values get
  * calculated by taking the absolute min / max Y values across all the X
diff --git a/cli_ure/source/scripts/increment_version.pl 
b/cli_ure/source/scripts/increment_version.pl
index d8606d6..ad371e4 100644
--- a/cli_ure/source/scripts/increment_version.pl
+++ b/cli_ure/source/scripts/increment_version.pl
@@ -30,7 +30,7 @@ sub incrementPolicyVersion($);
 my $usage =
 "The tool increments the minor version of assemblies and the major version of 
".
 "the respective policy files. This is only done if new uno types have been 
added since".
-"the last product upate. This information is obtained from the file which is 
passed as ".
+"the last product update. This information is obtained from the file which is 
passed as ".
 "argument changedTypes. The names in the version file must have a particular 
form. ".
 "They must end on one of folling terms: NEW_VERSION, OLD_VERSION, 
POLICY_VERSION\n".
 "If no new published types have been added then no output, argument  
newVersions, is written".
diff --git a/comphelper/source/misc/backupfilehelper.cxx 
b/comphelper/source/misc/backupfilehelper.cxx
index face14f..5c65dde 100644
--- a/comphelper/source/misc/backupfilehelper.cxx
+++ b/comphelper/source/misc/backupfilehelper.cxx
@@ -1763,7 +1763,7 @@ namespace comphelper
 
 if (mbActive)
 {
-// ensure existance
+// ensure existence
 getInitialBaseURL();
 
 // if not found, we are out of business (maExt may be empty)
@@ -1809,7 +1809,7 @@ namespace comphelper
 
 void BackupFileHelper::reactOnSafeMode(bool bSafeMode)
 {
-// ensure existance of needed paths
+// ensure existence of needed paths
 getInitialBaseURL();
 
 if (!maUserConfigBaseURL.isEmpty())
@@ -2719,7 +2719,7 @@ namespace comphelper
 case 2:
 {
  

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

2017-03-02 Thread Tomaž Vajngerl
 sw/qa/extras/uiwriter/uiwriter.cxx  |  219 +++-
 sw/source/core/inc/SwPortionHandler.hxx |2 
 sw/source/core/inc/txtfrm.hxx   |2 
 3 files changed, 193 insertions(+), 30 deletions(-)

New commits:
commit ba48819e9f01466b4048528f5aded766a5f11e8a
Author: Tomaž Vajngerl 
Date:   Mon Feb 27 12:20:33 2017 +0100

sw: rework input field line breaking test to use portions directly

Change-Id: I03cce0df2461964ce7402d32e6c5cc161b7f96ab
Reviewed-on: https://gerrit.libreoffice.org/34684
Reviewed-by: Tomaž Vajngerl 
Tested-by: Tomaž Vajngerl 

diff --git a/sw/qa/extras/uiwriter/uiwriter.cxx 
b/sw/qa/extras/uiwriter/uiwriter.cxx
index dd969a4..213b51a 100644
--- a/sw/qa/extras/uiwriter/uiwriter.cxx
+++ b/sw/qa/extras/uiwriter/uiwriter.cxx
@@ -89,6 +89,8 @@
 #include 
 #include 
 #include 
+#include 
+#include 
 #include 
 #include 
 #include 
@@ -3454,49 +3456,210 @@ void SwUiWriterTest::testTdf87922()
 CPPUNIT_ASSERT_EQUAL(COL_WHITE, aFont.GetColor().GetColor());
 }
 
+struct PortionItem
+{
+PortionItem(OUString const & sItemType, sal_Int32 nLength = 0,
+sal_uInt16 nTextType = 0, OUString const & sText = 
OUString(""))
+: msItemType(sItemType)
+, mnLength(nLength)
+, mnTextType(nTextType)
+, msText(sText)
+{}
+
+OUString msItemType;
+sal_Int32 mnLength;
+sal_uInt16 mnTextType;
+OUString msText;
+};
+
+class PortionHandler : public SwPortionHandler
+{
+  public:
+
+std::vector mPortionItems;
+explicit PortionHandler()
+: SwPortionHandler()
+{}
+
+void clear()
+{
+mPortionItems.clear();
+}
+
+virtual void Text(sal_Int32 nLength, sal_uInt16 nType,
+  sal_Int32 /*nHeight*/, sal_Int32 /*nWidth*/) override
+{
+mPortionItems.push_back(PortionItem("text", nLength, nType));
+}
+
+virtual void Special(sal_Int32 nLength, const OUString & rText,
+ sal_uInt16 nType, sal_Int32 /*nHeight*/,
+ sal_Int32 /*nWidth*/, const SwFont* /*pFont*/) 
override
+{
+mPortionItems.push_back(PortionItem("special", nLength, nType, rText));
+}
+
+virtual void LineBreak(sal_Int32 /*nWidth*/) override
+{
+mPortionItems.push_back(PortionItem("line_break"));
+}
+
+virtual void Skip(sal_Int32 nLength) override
+{
+mPortionItems.push_back(PortionItem("skip", nLength));
+}
+
+virtual void Finish() override
+{
+mPortionItems.push_back(PortionItem("finish"));
+}
+};
+
 void SwUiWriterTest::testTdf77014()
 {
 // The problem described in the bug tdf#77014 is that the input
 // field text ("ThisIsAllOneWord") is broken up on linebreak, but
 // it should be in one piece (like normal text).
 
-// This test checks that the input field is in one piece.
+// This test checks that the input field is in one piece and if the
+// input field has more words, it is broken up at the correct place.
+
+SwDoc* pDoc = createDoc("tdf77014.odt");
+SwWrtShell* pWrtShell = pDoc->GetDocShell()->GetWrtShell();
+
+SwTextFrame* pTextFrame = 
static_cast(pWrtShell->GetLayout()->GetLower()->GetLower()->GetLower());
+
+PortionHandler aHandler;
+pTextFrame->VisitPortions(aHandler);
+
+{
+// Input Field - "One Two Three Four Five" = 25 chars
+CPPUNIT_ASSERT_EQUAL(OUString("text"),  
aHandler.mPortionItems[0].msItemType);
+CPPUNIT_ASSERT_EQUAL(sal_Int32(25), 
aHandler.mPortionItems[0].mnLength);
+CPPUNIT_ASSERT_EQUAL(sal_uInt16(POR_INPUTFLD),  
aHandler.mPortionItems[0].mnTextType);
+
+CPPUNIT_ASSERT_EQUAL(OUString("line_break"), 
aHandler.mPortionItems[1].msItemType);
+
+CPPUNIT_ASSERT_EQUAL(OUString("finish"), 
aHandler.mPortionItems[2].msItemType);
+}
+
+aHandler.clear();
 
-load(DATA_DIRECTORY, "tdf77014.odt");
+pTextFrame = static_cast(pTextFrame->GetNext());
+pTextFrame->VisitPortions(aHandler);
 
-// First paragraph
-CPPUNIT_ASSERT_EQUAL(OUString("POR_TXT"), 
parseDump("/root/page/body/txt[4]/Text[1]", "nType"));
-CPPUNIT_ASSERT_EQUAL(OUString("91"),  
parseDump("/root/page/body/txt[4]/Text[1]", "nLength"));
+{
+// Input Field - "ThisIsAllOneWord" = 18 chars
+CPPUNIT_ASSERT_EQUAL(OUString("text"), 
aHandler.mPortionItems[0].msItemType);
+CPPUNIT_ASSERT_EQUAL(sal_Int32(18),
aHandler.mPortionItems[0].mnLength);
+CPPUNIT_ASSERT_EQUAL(sal_uInt16(POR_INPUTFLD), 
aHandler.mPortionItems[0].mnTextType);
+
+CPPUNIT_ASSERT_EQUAL(OUString("line_break"), 
aHandler.mPortionItems[1].msItemType);
+
+CPPUNIT_ASSERT_EQUAL(OUString("finish"), 
aHandler.mPortionItems[2].msItemType);
+}
+
+aHandler.clear();
+
+// skip empty 

[Libreoffice-bugs] [Bug 104802] jerky cursor behavior, lags key strokes, loss of data using filter, 500mb memory use

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

--- Comment #18 from Buovjaga  ---
(In reply to Steve Nordstrom from comment #17)
> Per your suggestion I have installed LO 5.3.0.
> It changed nothing.
> I tried several times to enter Safe Mode and the reaction of my computer did
> not match the instructions, so I could not complete the process, so I gave
> up.

Can you give more details on how it did not match? Were you able to: Help -
Restart in safe mode and then Continue in safe mode without doing anything
else? Note that you should ignore all the radio buttons and simply click the
Continue in safe mode.

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


[Libreoffice-commits] core.git: dbaccess/Module_dbaccess.mk dbaccess/source desktop/qa desktop/source desktop/test dtrans/source

2017-03-02 Thread Andrea Gelmini
 dbaccess/Module_dbaccess.mk|   
 2 -
 dbaccess/source/ui/browser/unodatbr.cxx|   
 2 -
 dbaccess/source/ui/inc/JoinController.hxx  |   
 2 -
 dbaccess/source/ui/misc/TableCopyHelper.cxx|   
 2 -
 desktop/qa/desktop_lib/test_desktop_lib.cxx|   
12 +-
 desktop/source/app/cmdlineargs.cxx |   
 2 -
 desktop/source/deployment/gui/dp_gui_extlistbox.cxx|   
 2 -
 desktop/source/lib/init.cxx|   
 2 -
 desktop/test/deployment/locationtest/LocationTest.java |   
 2 -
 desktop/test/deployment/update/updateinfocreation/build/TestExtension.java |   
 2 -
 dtrans/source/win32/clipb/MtaOleClipb.cxx  |   
 2 -
 11 files changed, 16 insertions(+), 16 deletions(-)

New commits:
commit 2e0db91d90f46348cbde9fe51e2ce1c1fffd7cfa
Author: Andrea Gelmini 
Date:   Thu Mar 2 12:28:22 2017 +0100

Fix typos

Change-Id: I6b547a864e7a8c8eeedcd7f7c56796e2b3a606d1
Reviewed-on: https://gerrit.libreoffice.org/34807
Reviewed-by: Noel Grandin 
Tested-by: Noel Grandin 

diff --git a/dbaccess/Module_dbaccess.mk b/dbaccess/Module_dbaccess.mk
index 9c2a125..218fa66 100644
--- a/dbaccess/Module_dbaccess.mk
+++ b/dbaccess/Module_dbaccess.mk
@@ -55,7 +55,7 @@ $(eval $(call gb_Module_add_check_targets,dbaccess,\
 ))
 endif
 
-# This runs a suite of peformance tests on embedded firebird and HSQLDB.
+# This runs a suite of performance tests on embedded firebird and HSQLDB.
 # Instructions on running the test can be found in 
qa/unit/embeddedb_performancetest
 ifeq ($(ENABLE_FIREBIRD_SDBC),TRUE)
 ifeq ($(ENABLE_JAVA),TRUE)
diff --git a/dbaccess/source/ui/browser/unodatbr.cxx 
b/dbaccess/source/ui/browser/unodatbr.cxx
index 0b433e3..2375a1a 100644
--- a/dbaccess/source/ui/browser/unodatbr.cxx
+++ b/dbaccess/source/ui/browser/unodatbr.cxx
@@ -518,7 +518,7 @@ bool SbaTableQueryBrowser::InitializeForm( const Reference< 
XPropertySet > & i_f
 if(!m_pCurrentlyDisplayed)
 return true;
 
-// this method set all format settings from the orignal table or query
+// this method set all format settings from the original table or query
 try
 {
 DBTreeListUserData* pData = 
static_cast(m_pCurrentlyDisplayed->GetUserData());
diff --git a/dbaccess/source/ui/inc/JoinController.hxx 
b/dbaccess/source/ui/inc/JoinController.hxx
index 41da7156..8718d88 100644
--- a/dbaccess/source/ui/inc/JoinController.hxx
+++ b/dbaccess/source/ui/inc/JoinController.hxx
@@ -145,7 +145,7 @@ namespace dbaui
 TTableWindowData::value_type createTableWindowData(const OUString& 
_sComposedName,const OUString& _sTableName,const OUString& _sWindowName);
 // ask the user if the design should be saved when it is modified
 virtual short saveModified() = 0;
-// called when the orignal state should be reseted (first time load)
+// called when the original state should be reseted (first time load)
 virtual void reset() = 0;
 virtual void describeSupportedFeatures() override;
 
diff --git a/dbaccess/source/ui/misc/TableCopyHelper.cxx 
b/dbaccess/source/ui/misc/TableCopyHelper.cxx
index d5b0596..57eb77f 100644
--- a/dbaccess/source/ui/misc/TableCopyHelper.cxx
+++ b/dbaccess/source/ui/misc/TableCopyHelper.cxx
@@ -166,7 +166,7 @@ void OTableCopyHelper::pasteTable( const 
svx::ODataAccessDescriptor& _rPasteData
 {
 OSL_VERIFY( _rPasteData[ 
DataAccessDescriptorProperty::BookmarkSelection ] >>= bBookmarkSelection );
 }
-OSL_ENSURE( bBookmarkSelection, "OTableCopyHelper::pasteTable: working 
with selection-indicies (instead of bookmarks) is error-prone, and thus 
deprecated!" );
+OSL_ENSURE( bBookmarkSelection, "OTableCopyHelper::pasteTable: working 
with selection-indices (instead of bookmarks) is error-prone, and thus 
deprecated!" );
 
 sal_Int32 nCommandType = CommandType::COMMAND;
 if ( _rPasteData.has(DataAccessDescriptorProperty::CommandType) )
diff --git a/desktop/qa/desktop_lib/test_desktop_lib.cxx 
b/desktop/qa/desktop_lib/test_desktop_lib.cxx
index 81cbece..1a9cd26 100644
--- a/desktop/qa/desktop_lib/test_desktop_lib.cxx
+++ b/desktop/qa/desktop_lib/test_desktop_lib.cxx
@@ -990,7 +990,7 @@ namespace {
 // type is omnipresent
 CPPUNIT_ASSERT( aType );
 
-// seperator doesn't have any other attribs
+// separator doesn't have any other attribs
 if ( aType.get().data() == "separator" )
 {
 CPPUNIT_ASSERT( !aText && !aCommand && !aSubmenu && !aEnabled 
&& !aChecktype && !aChecked );
@@ -1345,11 +1345,11 @@ void 

[Libreoffice-commits] core.git: editeng/source embeddedobj/source extensions/source external/redland extras/source filter/qa filter/source forms/source fpicker/source

2017-03-02 Thread Andrea Gelmini
 editeng/source/editeng/editview.cxx   |2 +-
 editeng/source/editeng/edtspell.cxx   |2 +-
 embeddedobj/source/msole/olecomponent.cxx |2 +-
 extensions/source/ole/unoobjw.cxx |2 +-
 extensions/source/propctrlr/sqlcommanddesign.cxx  |4 ++--
 extensions/source/propctrlr/stringrepresentation.cxx  |2 +-
 external/redland/rasqal/rasqal.h  |2 +-
 extras/source/glade/libreoffice-catalog.xml.in|4 ++--
 filter/qa/complex/filter/misc/FinalizedMandatoryTest.java |4 ++--
 filter/source/graphicfilter/icgm/cgmtypes.hxx |4 ++--
 filter/source/svg/svgexport.cxx   |6 +++---
 filter/source/xslt/import/wordml/wordml2ooo.xsl   |2 +-
 filter/source/xslt/odf2xhtml/export/xhtml/body.xsl|2 +-
 filter/source/xslt/odf2xhtml/export/xhtml/table.xsl   |2 +-
 forms/source/component/ListBox.hxx|2 +-
 forms/source/inc/property.hxx |2 +-
 fpicker/source/win32/filepicker/FileOpenDlg.hxx   |2 +-
 fpicker/source/win32/filepicker/comptr.hxx|2 +-
 fpicker/source/win32/filepicker/helppopupwindow.hxx   |2 +-
 19 files changed, 25 insertions(+), 25 deletions(-)

New commits:
commit 3063d55b8be2188532e3e2892f440ff0d481db71
Author: Andrea Gelmini 
Date:   Thu Mar 2 12:27:41 2017 +0100

Fix typos

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

diff --git a/editeng/source/editeng/editview.cxx 
b/editeng/source/editeng/editview.cxx
index e328805..ff4af8a 100644
--- a/editeng/source/editeng/editview.cxx
+++ b/editeng/source/editeng/editview.cxx
@@ -840,7 +840,7 @@ void EditView::ExecuteSpellPopup( const Point& rPosPixel, 
LinkGetImpEditView()->SetEditSelection(
 pEE->GetEditDoc().GetStartPaM() );
diff --git a/embeddedobj/source/msole/olecomponent.cxx 
b/embeddedobj/source/msole/olecomponent.cxx
index 2cea0ca..acfc618 100644
--- a/embeddedobj/source/msole/olecomponent.cxx
+++ b/embeddedobj/source/msole/olecomponent.cxx
@@ -1549,7 +1549,7 @@ uno::Any SAL_CALL OleComponent::getTransferData( const 
datatransfer::DataFlavor&
 }
 }
 
-// If the replacement could not be retrieved, the cached representaion 
should be used
+// If the replacement could not be retrieved, the cached 
representation should be used
 // currently it is not necessary to retrieve it here, so it is 
implemented in the object itself
 }
 // TODO: Investigate if there is already the format name
diff --git a/extensions/source/ole/unoobjw.cxx 
b/extensions/source/ole/unoobjw.cxx
index d8d0d19..0262723 100644
--- a/extensions/source/ole/unoobjw.cxx
+++ b/extensions/source/ole/unoobjw.cxx
@@ -578,7 +578,7 @@ static bool writeBackOutParameter2( VARIANTARG* pDest, 
VARIANT* pSource)
 {
 // We use IDispatchEx because its GetDispID function causes the 
creation
 // of a property if it does not exist already. This is convenient 
for
-// out parameters in JScript. Then the user must not specify 
propery "0"
+// out parameters in JScript. Then the user must not specify 
property "0"
 // explicitly
 CComQIPtr spDispEx( spDispDest);
 if( spDispEx)
diff --git a/extensions/source/propctrlr/sqlcommanddesign.cxx 
b/extensions/source/propctrlr/sqlcommanddesign.cxx
index bf006b9..d17bd33 100644
--- a/extensions/source/propctrlr/sqlcommanddesign.cxx
+++ b/extensions/source/propctrlr/sqlcommanddesign.cxx
@@ -300,11 +300,11 @@ namespace pcr
 
 void SQLCommandDesigner::impl_closeDesigner_nothrow()
 {
-OSL_PRECOND( isActive(), 
"SQLCommandDesigner::impl_closeDesigner_nothrow: invalid calle!" );
+OSL_PRECOND( isActive(), 
"SQLCommandDesigner::impl_closeDesigner_nothrow: invalid call!" );
 // close it
 try
 {
-// do not listen anymore 
+// do not listen anymore...
 Reference< XPropertySet > xProps( m_xDesigner, UNO_QUERY );
 if ( xProps.is() )
 xProps->removePropertyChangeListener( PROPERTY_ACTIVECOMMAND, 
this );
diff --git a/extensions/source/propctrlr/stringrepresentation.cxx 
b/extensions/source/propctrlr/stringrepresentation.cxx
index cdba91a..3f8b0ab 100644
--- a/extensions/source/propctrlr/stringrepresentation.cxx
+++ b/extensions/source/propctrlr/stringrepresentation.cxx
@@ -125,7 +125,7 @@ private:
 
 /** converts a string into his constant value if it exists, otherwise the 
type converter is used.
 * \param _rValue the value to be converted
-* \param _ePropertyType the type of 

[Libreoffice-bugs] [Bug 104803] column filter loses header row when editing and cannot be returned to all data

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

--- Comment #11 from Buovjaga  ---
(In reply to Steve Nordstrom from comment #10)
> Per your suggestion I have installed LO 5.3.0.
> It fixed nothing.

Just to clarify, with 5.3, did you then try: Help - Restart in safe mode and
then Continue in safe mode without doing anything else?

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


[Libreoffice-commits] core.git: 2 commits - include/basegfx include/canvas include/cppuhelper include/drawinglayer include/editeng include/filter include/LibreOfficeKit include/oox include/rtl include

2017-03-02 Thread Andrea Gelmini
 include/LibreOfficeKit/LibreOfficeKit.hxx  |4 +--
 include/basegfx/color/bcolormodifier.hxx   |2 -
 include/canvas/base/canvasbase.hxx |2 -
 include/canvas/base/graphicdevicebase.hxx  |2 -
 include/cppuhelper/basemutex.hxx   |4 +--
 include/drawinglayer/primitive2d/graphicprimitive2d.hxx|2 -
 include/drawinglayer/primitive2d/hiddengeometryprimitive2d.hxx |2 -
 include/editeng/hangulhanja.hxx|2 -
 include/filter/msfilter/escherex.hxx   |2 -
 include/filter/msfilter/msdffimp.hxx   |2 -
 include/oox/helper/graphichelper.hxx   |2 -
 include/rtl/ustring.hxx|2 -
 include/salhelper/dynload.hxx  |2 -
 include/svx/svdedtv.hxx|4 +--
 include/svx/svdomeas.hxx   |4 +--
 include/svx/svxerr.hxx |2 -
 include/svx/unopool.hxx|2 -
 include/systools/win32/comptr.hxx  |2 -
 include/typelib/typedescription.h  |6 ++---
 include/unotools/confignode.hxx|2 -
 include/unotools/localedatawrapper.hxx |2 -
 include/vcl/button.hxx |2 -
 include/vcl/field.hxx  |4 +--
 include/xmloff/formlayerexport.hxx |2 -
 sal/osl/unx/uunxapi.cxx|2 -
 sal/qa/osl/file/osl_File.cxx   |   10 
 sal/textenc/tcvtjp6.tab|   12 
+-
 sc/qa/unit/data/functions/spreadsheet/fods/index.fods  |4 +--
 sc/qa/unit/ucalc.cxx   |4 +--
 sc/source/core/data/drwlayer.cxx   |2 -
 sc/source/core/data/table2.cxx |2 -
 sc/source/core/tool/ddelink.cxx|4 +--
 sc/source/core/tool/rangelst.cxx   |2 -
 sc/source/filter/excel/xicontent.cxx   |2 -
 sc/source/filter/inc/excimp8.hxx   |2 -
 sc/source/filter/inc/xehelper.hxx  |2 -
 sc/source/filter/inc/xestyle.hxx   |4 +--
 sc/source/ui/app/inputhdl.cxx  |6 ++---
 sc/source/ui/app/scmod.cxx |2 -
 sc/source/ui/dbgui/pfiltdlg.cxx|2 -
 sc/source/ui/docshell/dbdocfun.cxx |2 -
 sc/source/ui/docshell/docsh.cxx|2 -
 sc/source/ui/drawfunc/fuins2.cxx   |2 -
 sc/source/ui/view/formatsh.cxx |2 -
 44 files changed, 66 insertions(+), 66 deletions(-)

New commits:
commit bcb402298f653146af672ecfca2381062d78c6f2
Author: Andrea Gelmini 
Date:   Thu Mar 2 12:25:27 2017 +0100

Fix typos

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

diff --git a/include/LibreOfficeKit/LibreOfficeKit.hxx 
b/include/LibreOfficeKit/LibreOfficeKit.hxx
index 57b86f9..49e2bf7 100644
--- a/include/LibreOfficeKit/LibreOfficeKit.hxx
+++ b/include/LibreOfficeKit/LibreOfficeKit.hxx
@@ -560,12 +560,12 @@ public:
  * @param pURL  the URL of the document, as sent to the callback
  * @param pPassword the password, nullptr indicates no password
  *
- * In response to LOK_CALLBACK_DOCUMENT_PASSWORD, a vaild password
+ * In response to LOK_CALLBACK_DOCUMENT_PASSWORD, a valid password
  * will continue loading the document, an invalid password will
  * result in another LOK_CALLBACK_DOCUMENT_PASSWORD request,
  * and a NULL password will abort loading the document.
  *
- * In response to LOK_CALLBACK_DOCUMENT_PASSWORD_TO_MODIFY, a vaild
+ * In response to LOK_CALLBACK_DOCUMENT_PASSWORD_TO_MODIFY, a valid
  * password will continue loading the document, an invalid password will
  * result in another LOK_CALLBACK_DOCUMENT_PASSWORD_TO_MODIFY request,
  * and a NULL password will continue loading the document in read-only
diff --git a/include/basegfx/color/bcolormodifier.hxx 
b/include/basegfx/color/bcolormodifier.hxx
index 355a6b1..def842f 100644
--- 

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

2017-03-02 Thread Andrea Gelmini
 framework/inc/jobs/job.hxx   | 
   2 +-
 framework/inc/xml/imagesconfiguration.hxx| 
   2 +-
 framework/qa/complex/contextMenuInterceptor/CheckContextMenuInterceptor.java | 
   2 +-
 framework/qa/complex/contextMenuInterceptor/ContextMenuInterceptor.java  | 
   8 
 framework/qa/complex/imageManager/_XInitialization.java  | 
   2 +-
 framework/source/accelerators/documentacceleratorconfiguration.cxx   | 
   2 +-
 framework/source/accelerators/globalacceleratorconfiguration.cxx | 
   2 +-
 framework/source/accelerators/moduleacceleratorconfiguration.cxx | 
   2 +-
 framework/source/dispatch/dispatchprovider.cxx   | 
   2 +-
 framework/source/fwe/dispatch/interaction.cxx| 
   4 ++--
 framework/source/helper/oframes.cxx  | 
   4 ++--
 framework/source/jobs/job.cxx| 
   2 +-
 framework/source/services/autorecovery.cxx   | 
   2 +-
 framework/source/services/frame.cxx  | 
   6 +++---
 framework/source/uielement/dropdownboxtoolbarcontroller.cxx  | 
   2 +-
 framework/source/uielement/edittoolbarcontroller.cxx | 
   2 +-
 framework/source/uielement/spinfieldtoolbarcontroller.cxx| 
   2 +-
 17 files changed, 24 insertions(+), 24 deletions(-)

New commits:
commit 34e1739d56411c81359e24dce500cb54bba6c092
Author: Andrea Gelmini 
Date:   Thu Mar 2 12:26:19 2017 +0100

Fix typos

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

diff --git a/framework/inc/jobs/job.hxx b/framework/inc/jobs/job.hxx
index c4221cc..8cf5487 100644
--- a/framework/inc/jobs/job.hxx
+++ b/framework/inc/jobs/job.hxx
@@ -158,7 +158,7 @@ class Job : public  ::cppu::WeakImplHelper<
 indicates in which state the internal job currently exist.
 
 We can use this information to throw any suitable veto exception
-to prevent the environment against dying or suppress superflous 
dispose()
+to prevent the environment against dying or suppress superfluous 
dispose()
 calls at the job.
  */
 ERunState m_eRunState;
diff --git a/framework/inc/xml/imagesconfiguration.hxx 
b/framework/inc/xml/imagesconfiguration.hxx
index 617882c..68291be 100644
--- a/framework/inc/xml/imagesconfiguration.hxx
+++ b/framework/inc/xml/imagesconfiguration.hxx
@@ -68,7 +68,7 @@ struct ImageListItemDescriptor
 ImageMaskMode   nMaskMode;// an enum to describe 
the current mask mode
 std::unique_ptr
 pImageItemList;   // an array of 
ImageItemDescriptors that describes every image
-OUStringaHighContrastURL;   // an URL to an 
optional high contrast bitmap with serveral images inside
+OUStringaHighContrastURL;   // an URL to an 
optional high contrast bitmap with several images inside
 OUStringaHighContrastMaskURL;   // an URL to an 
optional high contrast bitmap as a mask
 };
 
diff --git 
a/framework/qa/complex/contextMenuInterceptor/CheckContextMenuInterceptor.java 
b/framework/qa/complex/contextMenuInterceptor/CheckContextMenuInterceptor.java
index 6b3317d..f7109c1 100644
--- 
a/framework/qa/complex/contextMenuInterceptor/CheckContextMenuInterceptor.java
+++ 
b/framework/qa/complex/contextMenuInterceptor/CheckContextMenuInterceptor.java
@@ -106,7 +106,7 @@ public class CheckContextMenuInterceptor
 {
 System.out.println("  Context Menu Interceptor *** ");
 
-// intialize the test document
+// initialize the test document
 xDrawDoc = DrawTools.createDrawDoc(xMSF);
 
 SOfficeFactory SOF = SOfficeFactory.getFactory(xMSF);
diff --git 
a/framework/qa/complex/contextMenuInterceptor/ContextMenuInterceptor.java 
b/framework/qa/complex/contextMenuInterceptor/ContextMenuInterceptor.java
index eb0060d..fdf2259 100644
--- a/framework/qa/complex/contextMenuInterceptor/ContextMenuInterceptor.java
+++ b/framework/qa/complex/contextMenuInterceptor/ContextMenuInterceptor.java
@@ -60,7 +60,7 @@ public class ContextMenuInterceptor implements 
XContextMenuInterceptor
 com.sun.star.container.XIndexContainer xSubMenuContainer =
 
UnoRuntime.queryInterface(com.sun.star.container.XIndexContainer.class, 
xMenuElementFactory.createInstance("com.sun.star.ui.ActionTriggerContainer"));
 
-// intialize root menu entry "Help"
+// initialize root menu entry 

[Libreoffice-commits] core.git: solenv/bin svgio/source svl/qa svtools/source svx/source

2017-03-02 Thread Andrea Gelmini
 solenv/bin/concat-deps.c |2 +-
 solenv/bin/modules/installer/epmfile.pm  |2 +-
 solenv/bin/ooinstall |2 +-
 svgio/source/svgreader/svggnode.cxx  |2 +-
 svgio/source/svgreader/svggradientnode.cxx   |2 +-
 svgio/source/svgreader/svgstyleattributes.cxx|2 +-
 svgio/source/svgreader/svgtitledescnode.cxx  |2 +-
 svl/qa/unit/svl.cxx  |2 +-
 svtools/source/control/tabbar.cxx|2 +-
 svtools/source/misc/transfer.cxx |4 ++--
 svtools/source/uno/statusbarcontroller.cxx   |4 ++--
 svtools/source/uno/toolboxcontroller.cxx |4 ++--
 svtools/source/uno/unoimap.cxx   |4 ++--
 svx/source/accessibility/lookupcolorname.cxx |2 +-
 svx/source/inc/tbxform.hxx   |2 +-
 svx/source/sdr/contact/objectcontactofobjlistpainter.cxx |2 +-
 svx/source/unodraw/UnoGraphicExporter.cxx|2 +-
 svx/source/unodraw/unoshap2.cxx  |2 +-
 18 files changed, 22 insertions(+), 22 deletions(-)

New commits:
commit 3ffc206a4b70863fc1a340c0011eb4aa82819ae1
Author: Andrea Gelmini 
Date:   Thu Mar 2 15:17:15 2017 +0100

Fix typos

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

diff --git a/solenv/bin/concat-deps.c b/solenv/bin/concat-deps.c
index c63d5a7..1d6907d 100644
--- a/solenv/bin/concat-deps.c
+++ b/solenv/bin/concat-deps.c
@@ -151,7 +151,7 @@ struct pool
 int  primary;/**< primary allocation in bytes */
 int  secondary;  /**< secondary allocation in bytes */
 };
-#define POOL_ALIGN_INCREMENT 8 /**< Alignement, must be a power of 2 and of 
size > to sizeof(void*) */
+#define POOL_ALIGN_INCREMENT 8 /**< alignment, must be a power of 2 and of 
size > to sizeof(void*) */
 
 
 static void* pool_take_extent(struct pool* pool, int allocate)
diff --git a/solenv/bin/modules/installer/epmfile.pm 
b/solenv/bin/modules/installer/epmfile.pm
index b7b4bcc..0dbc37a 100644
--- a/solenv/bin/modules/installer/epmfile.pm
+++ b/solenv/bin/modules/installer/epmfile.pm
@@ -65,7 +65,7 @@ sub read_packagemap
 {
 my $packagemapref = 
installer::scriptitems::get_sourcepath_from_filename_and_includepath(\$onepackagemapname,
 $includepatharrayref, 0);
 
-if ( $$packagemapref eq "" ) { installer::exiter::exit_program("ERROR: 
Could not find package map file \"$onepackagemapname\" (propery PACKAGEMAP)!", 
"read_packagemap"); }
+if ( $$packagemapref eq "" ) { installer::exiter::exit_program("ERROR: 
Could not find package map file \"$onepackagemapname\" (property PACKAGEMAP)!", 
"read_packagemap"); }
 
 my $packagemapcontent = installer::files::read_file($$packagemapref);
 
diff --git a/solenv/bin/ooinstall b/solenv/bin/ooinstall
index 8d0f5be..83507a7 100755
--- a/solenv/bin/ooinstall
+++ b/solenv/bin/ooinstall
@@ -80,7 +80,7 @@ if ($is_windows) {
 
 # FIXME: a better solution would be to fix installer to deal with broken 
symlinks
 # make distro-pack-install shufle with the SDK installation to make it LSB 
compliant
-# it creates symlinks from the orignal path to /usr/share; they are not valid 
with $DESTDIR
+# it creates symlinks from the original path to /usr/share; they are not valid 
with $DESTDIR
 # and potential second ooinstall call fails with strange error messages if the 
old tree is still there
 if ($destdir && "$ENV{DESTDIR}" ne "/" && -d "$ENV{DESTDIR}") {
 print "Cleaning destdir...\n";
diff --git a/svgio/source/svgreader/svggnode.cxx 
b/svgio/source/svgreader/svggnode.cxx
index 28c4dd8..16849ef 100644
--- a/svgio/source/svgreader/svggnode.cxx
+++ b/svgio/source/svgreader/svggnode.cxx
@@ -33,7 +33,7 @@ namespace svgio
 maSvgStyleAttributes(*this),
 mpaTransform(nullptr)
 {
-OSL_ENSURE(aType == SVGTokenDefs || aType == SVGTokenG, "SvgGNode 
should ony be used for Group and Defs (!)");
+OSL_ENSURE(aType == SVGTokenDefs || aType == SVGTokenG, "SvgGNode 
should only be used for Group and Defs (!)");
 }
 
 SvgGNode::~SvgGNode()
diff --git a/svgio/source/svgreader/svggradientnode.cxx 
b/svgio/source/svgreader/svggradientnode.cxx
index 8d700c5..99469ed 100644
--- a/svgio/source/svgreader/svggradientnode.cxx
+++ b/svgio/source/svgreader/svggradientnode.cxx
@@ -54,7 +54,7 @@ namespace svgio
 maXLink(),
 mpXLink(nullptr)
 {
-OSL_ENSURE(aType == SVGTokenLinearGradient || aType == 
SVGTokenRadialGradient, "SvgGradientNode should ony be used for Linear and 
Radial gradient (!)");
+

[Libreoffice-commits] core.git: include/o3tl include/osl include/rtl include/svx include/vcl sc/source sot/source sw/inc vcl/opengl

2017-03-02 Thread Stephan Bergmann
 include/o3tl/typed_flags_set.hxx  |   55 ++
 include/osl/time.h|4 +-
 include/rtl/stringutils.hxx   |   14 -
 include/rtl/ustring.hxx   |2 -
 include/svx/dlgutil.hxx   |4 +-
 include/vcl/scheduler.hxx |4 +-
 sc/source/filter/excel/xlpage.cxx |8 ++---
 sot/source/base/formats.cxx   |4 +-
 sw/inc/docary.hxx |2 -
 sw/inc/swtypes.hxx|2 -
 sw/inc/viewopt.hxx|6 ++--
 vcl/opengl/LineRenderUtils.cxx|2 -
 vcl/opengl/texture.cxx|2 -
 13 files changed, 48 insertions(+), 61 deletions(-)

New commits:
commit ba423579255848440318d6c468a604914901779b
Author: Stephan Bergmann 
Date:   Thu Mar 2 18:24:40 2017 +0100

Remove uses of SAL_CONSTEXPR in LIBO_INTERNAL_ONLY

Change-Id: I9a7dc7c83302b3361f056fcf6636bbba7672f15f
Reviewed-on: https://gerrit.libreoffice.org/34840
Tested-by: Jenkins 
Reviewed-by: Stephan Bergmann 

diff --git a/include/o3tl/typed_flags_set.hxx b/include/o3tl/typed_flags_set.hxx
index dfb196a..09f0b61 100644
--- a/include/o3tl/typed_flags_set.hxx
+++ b/include/o3tl/typed_flags_set.hxx
@@ -32,14 +32,14 @@ namespace o3tl {
 
 namespace detail {
 
-template inline SAL_CONSTEXPR
+template constexpr
 typename std::enable_if::type isNonNegative(
 T value)
 {
 return value >= 0;
 }
 
-template inline SAL_CONSTEXPR
+template constexpr
 typename std::enable_if::type 
isNonNegative(T)
 {
 return true;
@@ -73,8 +73,7 @@ struct is_typed_flags {
 public:
 typedef is_typed_flags Unwrapped;
 
-explicit SAL_CONSTEXPR Wrap(
-typename std::underlying_type::type value):
+explicit constexpr Wrap(typename std::underlying_type::type value):
 value_(value)
 {
 #if HAVE_CXX14_CONSTEXPR
@@ -87,13 +86,13 @@ struct is_typed_flags {
 #endif
 }
 
-SAL_CONSTEXPR operator E() const { return static_cast(value_); }
+constexpr operator E() const { return static_cast(value_); }
 
-explicit SAL_CONSTEXPR operator typename 
std::underlying_type::type()
+explicit constexpr operator typename std::underlying_type::type()
 const
 { return value_; }
 
-explicit SAL_CONSTEXPR operator bool() const { return value_ != 0; }
+explicit constexpr operator bool() const { return value_ != 0; }
 
 private:
 typename std::underlying_type::type value_;
@@ -105,7 +104,7 @@ struct is_typed_flags {
 }
 
 template
-inline SAL_CONSTEXPR typename o3tl::typed_flags::Wrap operator ~(E rhs) {
+constexpr typename o3tl::typed_flags::Wrap operator ~(E rhs) {
 #if HAVE_CXX14_CONSTEXPR
 assert(
 o3tl::detail::isNonNegative(
@@ -116,8 +115,7 @@ inline SAL_CONSTEXPR typename o3tl::typed_flags::Wrap 
operator ~(E rhs) {
 & ~static_cast::type>(rhs));
 }
 
-template
-inline SAL_CONSTEXPR typename o3tl::typed_flags::Wrap operator ~(
+template constexpr typename o3tl::typed_flags::Wrap operator ~(
 typename o3tl::typed_flags::Wrap rhs)
 {
 return static_cast::Wrap>(
@@ -125,8 +123,7 @@ inline SAL_CONSTEXPR typename o3tl::typed_flags::Wrap 
operator ~(
 & ~static_cast::type>(rhs));
 }
 
-template
-inline SAL_CONSTEXPR typename o3tl::typed_flags::Wrap operator ^(
+template constexpr typename o3tl::typed_flags::Wrap operator ^(
 E lhs, E rhs)
 {
 #if HAVE_CXX14_CONSTEXPR
@@ -142,8 +139,7 @@ inline SAL_CONSTEXPR typename o3tl::typed_flags::Wrap 
operator ^(
 ^ static_cast::type>(rhs));
 }
 
-template
-inline SAL_CONSTEXPR typename o3tl::typed_flags::Wrap operator ^(
+template constexpr typename o3tl::typed_flags::Wrap operator ^(
 E lhs, typename o3tl::typed_flags::Wrap rhs)
 {
 #if HAVE_CXX14_CONSTEXPR
@@ -156,8 +152,7 @@ inline SAL_CONSTEXPR typename o3tl::typed_flags::Wrap 
operator ^(
 ^ static_cast::type>(rhs));
 }
 
-template
-inline SAL_CONSTEXPR typename o3tl::typed_flags::Wrap operator ^(
+template constexpr typename o3tl::typed_flags::Wrap operator ^(
 typename o3tl::typed_flags::Wrap lhs, E rhs)
 {
 #if HAVE_CXX14_CONSTEXPR
@@ -170,8 +165,7 @@ inline SAL_CONSTEXPR typename o3tl::typed_flags::Wrap 
operator ^(
 ^ static_cast::type>(rhs));
 }
 
-template
-inline SAL_CONSTEXPR
+template constexpr
 typename o3tl::typed_flags::Wrap operator ^(
 W lhs, W rhs)
 {
@@ -185,9 +179,7 @@ typename o3tl::typed_flags::Wrap operator ^(
 }
 
 template
-inline SAL_CONSTEXPR typename o3tl::typed_flags::Wrap operator &(
-E lhs, E rhs)
-{
+constexpr typename o3tl::typed_flags::Wrap operator &(E lhs, E rhs) {
 #if HAVE_CXX14_CONSTEXPR
 assert(
 o3tl::detail::isNonNegative(
@@ -201,8 +193,7 @@ inline SAL_CONSTEXPR typename o3tl::typed_flags::Wrap 
operator &(
 & static_cast::type>(rhs));
 }
 

[Libreoffice-bugs] [Bug 106161] Writer crashes immediately after opening this .docx in Windows 7

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

--- Comment #11 from Justin L  ---
I don't have Windows, so I can't do anything with this bug report.

I don't know how to read the crash details report, but it (and the related
bugs) seem to highly suggest that the crash is occurring in the layout section?
 If so, then this change has probably exposed a different bug elsewhere, and is
not really caused by my change.

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


[Libreoffice-commits] core.git: cui/source editeng/source filter/source include/editeng include/svx oox/source sd/source svx/source sw/inc sw/source

2017-03-02 Thread Noel Grandin
 cui/source/inc/numpages.hxx|5 
 cui/source/tabpages/numpages.cxx   |   14 +-
 editeng/source/items/numitem.cxx   |   10 -
 editeng/source/uno/unonrule.cxx|4 
 filter/source/msfilter/svdfppt.cxx |2 
 include/editeng/numitem.hxx|   32 +++---
 include/editeng/svxenum.hxx|6 -
 include/svx/nbdtmg.hxx |   10 -
 oox/source/export/drawingml.cxx|8 -
 sd/source/filter/eppt/epptso.cxx   |2 
 sd/source/filter/eppt/pptx-text.cxx|8 -
 sd/source/filter/eppt/text.hxx |2 
 svx/source/sidebar/nbdtmg.cxx  |   12 +-
 sw/inc/docufld.hxx |   12 +-
 sw/inc/fldbas.hxx  |  133 ++---
 sw/inc/fmtftntx.hxx|4 
 sw/source/core/access/accframe.cxx |2 
 sw/source/core/edit/autofmt.cxx|4 
 sw/source/core/fields/dbfld.cxx|2 
 sw/source/core/fields/docufld.cxx  |   32 +++---
 sw/source/core/fields/expfld.cxx   |2 
 sw/source/core/fields/fldbas.cxx   |4 
 sw/source/core/layout/atrfrm.cxx   |4 
 sw/source/core/text/txtfld.cxx |4 
 sw/source/core/unocore/unosett.cxx |   14 +-
 sw/source/filter/html/htmlfld.cxx  |   18 +--
 sw/source/filter/html/htmlftn.cxx  |2 
 sw/source/filter/html/htmlnumreader.cxx|2 
 sw/source/filter/html/svxcss1.cxx  |4 
 sw/source/filter/html/svxcss1.hxx  |2 
 sw/source/filter/html/swhtml.hxx   |2 
 sw/source/filter/ww8/ww8par.cxx|4 
 sw/source/filter/ww8/ww8par2.cxx   |   38 +++
 sw/source/filter/ww8/ww8par3.cxx   |   56 +-
 sw/source/filter/ww8/ww8par6.cxx   |2 
 sw/source/ui/misc/linenum.cxx  |2 
 sw/source/ui/misc/outline.cxx  |2 
 sw/source/uibase/inc/numberingtypelistbox.hxx  |7 -
 sw/source/uibase/misc/numberingtypelistbox.cxx |8 -
 sw/source/uibase/utlui/uitool.cxx  |2 
 40 files changed, 257 insertions(+), 226 deletions(-)

New commits:
commit afa675469cd9894f41a6b9eeb2e7acc8245d256c
Author: Noel Grandin 
Date:   Thu Mar 2 14:24:47 2017 +0200

use SvxExtNumType in SvxNumberType

and follow the rabbit trail, fixing various other types in the process

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

diff --git a/cui/source/inc/numpages.hxx b/cui/source/inc/numpages.hxx
index afaaf1e..4894293 100644
--- a/cui/source/inc/numpages.hxx
+++ b/cui/source/inc/numpages.hxx
@@ -31,6 +31,7 @@
 #include 
 #include 
 #include 
+#include 
 #include 
 #include 
 
@@ -65,14 +66,14 @@ class SvxNumberingPreview : public vcl::Window
 
 struct SvxNumSettings_Impl
 {
-short   nNumberType;
+SvxExtNumType   nNumberType;
 short   nParentNumbering;
 OUString   sPrefix;
 OUString   sSuffix;
 OUString   sBulletChar;
 OUString   sBulletFont;
 SvxNumSettings_Impl() :
-nNumberType(0),
+nNumberType(SVX_NUM_CHARS_UPPER_LETTER),
 nParentNumbering(0)
 {}
 };
diff --git a/cui/source/tabpages/numpages.cxx b/cui/source/tabpages/numpages.cxx
index df6aad6..679a5ff 100644
--- a/cui/source/tabpages/numpages.cxx
+++ b/cui/source/tabpages/numpages.cxx
@@ -111,7 +111,11 @@ static SvxNumSettings_Impl* lcl_CreateNumSettingsPtr(const 
Sequence>= pNew->nNumberType;
+{
+sal_Int16 nTmp;
+if (pValues[j].Value >>= nTmp)
+pNew->nNumberType = (SvxExtNumType)nTmp;
+}
 else if ( pValues[j].Name == "Prefix" )
 pValues[j].Value >>= pNew->sPrefix;
 else if ( pValues[j].Name == "Suffix" )
@@ -326,7 +330,7 @@ IMPL_LINK_NOARG(SvxSingleNumPickTabPage, NumSelectHdl_Impl, 
ValueSet*, void)
 if(aNumSettingsArr.size() <= nIdx)
 return;
 SvxNumSettings_Impl* _pSet = aNumSettingsArr[nIdx].get();
-sal_Int16 eNewType = _pSet->nNumberType;
+SvxExtNumType eNewType = _pSet->nNumberType;
 const sal_Unicode cLocalPrefix = !_pSet->sPrefix.isEmpty() ? 
_pSet->sPrefix[0] : 0;
 const sal_Unicode cLocalSuffix = !_pSet->sSuffix.isEmpty() ? 
_pSet->sSuffix[0] : 0;
 
@@ -945,7 +949,7 @@ IMPL_LINK_NOARG(SvxBitmapPickTabPage, NumSelectHdl_Impl, 
ValueSet*, void)
 sal_uInt16 nIdx = m_pExamplesVS->GetSelectItemId() - 1;
 
 sal_uInt16 nMask = 1;
-sal_uInt16 nSetNumberingType = SVX_NUM_BITMAP;
+SvxExtNumType nSetNumberingType = 

[Libreoffice-commits] core.git: cui/source editeng/source include/editeng include/svl include/svx reportdesign/source sc/inc sc/qa sc/source sd/inc svl/source svx/inc svx/source sw/inc sw/qa sw/source

2017-03-02 Thread Noel Grandin
 cui/source/tabpages/align.cxx  |   14 ++--
 editeng/source/items/frmitems.cxx  |4 -
 editeng/source/items/justifyitem.cxx   |   24 +++
 editeng/source/items/textitem.cxx  |   39 ++--
 include/editeng/charreliefitem.hxx |4 -
 include/editeng/cmapitem.hxx   |9 --
 include/editeng/crossedoutitem.hxx |4 -
 include/editeng/formatbreakitem.hxx|   10 +--
 include/editeng/justifyitem.hxx|6 -
 include/editeng/langitem.hxx   |7 --
 include/editeng/postitem.hxx   |4 -
 include/editeng/udlnitem.hxx   |6 -
 include/editeng/wghtitem.hxx   |5 -
 include/svl/aeitem.hxx |2 
 include/svl/eitem.hxx  |   64 +++--
 include/svx/algitem.hxx|2 
 include/svx/chrtitem.hxx   |   28 +
 include/svx/rotmodit.hxx   |2 
 include/svx/sdgmoitm.hxx   |   11 +--
 include/svx/sdtaditm.hxx   |7 --
 include/svx/sdtaitm.hxx|   16 ++---
 include/svx/sdtakitm.hxx   |9 +-
 include/svx/sdtfsitm.hxx   |9 --
 include/svx/sxcecitm.hxx   |7 --
 include/svx/sxctitm.hxx|9 +-
 include/svx/sxekitm.hxx|   13 +---
 include/svx/sxmtpitm.hxx   |   14 +---
 include/svx/sxmuitm.hxx|   11 +--
 include/svx/xfillit0.hxx   |3 
 include/svx/xflbmpit.hxx   |5 -
 include/svx/xftadit.hxx|5 -
 include/svx/xftshit.hxx|5 -
 include/svx/xlineit0.hxx   |3 
 include/svx/xlinjoit.hxx   |7 --
 include/svx/xlncapit.hxx   |6 -
 include/svx/xtextit0.hxx   |5 -
 reportdesign/source/ui/misc/UITools.cxx|2 
 sc/inc/attrib.hxx  |2 
 sc/qa/unit/subsequent_filters-test.cxx |4 -
 sc/source/core/data/attrib.cxx |2 
 sc/source/filter/excel/xestyle.cxx |8 +-
 sc/source/ui/drawfunc/drawsh5.cxx  |2 
 sd/inc/sdattr.hxx  |   12 +--
 svl/source/items/aeitem.cxx|2 
 svl/source/items/cenumitm.cxx  |   32 --
 svx/inc/sxcikitm.hxx   |7 --
 svx/inc/sxmkitm.hxx|7 --
 svx/source/items/algitem.cxx   |6 -
 svx/source/items/chrtitem.cxx  |   27 +---
 svx/source/items/rotmodit.cxx  |4 -
 svx/source/sdr/primitive2d/sdrattributecreator.cxx |   10 +--
 svx/source/svdraw/svdattr.cxx  |   24 +++
 svx/source/xoutdev/xattr.cxx   |   21 +++---
 svx/source/xoutdev/xattr2.cxx  |   10 +--
 sw/inc/fmtfordr.hxx|4 -
 sw/inc/fmtftntx.hxx|6 -
 sw/inc/fmtsrnd.hxx |8 +-
 sw/inc/grfatr.hxx  |   10 +--
 sw/qa/extras/ww8export/ww8export.cxx   |2 
 sw/source/core/graphic/grfatr.cxx  |4 -
 sw/source/core/graphic/ndgrf.cxx   |1 
 sw/source/core/layout/atrfrm.cxx   |6 -
 sw/source/filter/html/htmlflywriter.cxx|1 
 sw/source/filter/ww8/docxattributeoutput.cxx   |2 
 sw/source/filter/ww8/wrtw8esh.cxx  |2 
 sw/source/filter/ww8/ww8atr.cxx|2 
 sw/source/ui/dialog/uiregionsw.cxx |6 +
 sw/source/uibase/shells/drwbassh.cxx   |4 -
 sw/source/uibase/shells/grfsh.cxx  |2 
 69 files changed, 278 insertions(+), 343 deletions(-)

New commits:
commit f091259ad2ec1590714645839668580cd7b8c7c4
Author: Noel Grandin 
Date:   Wed Mar 1 14:17:08 2017 +0200

convert SfxEnumItem to type-safe template class

and drop the SvxChartTextOrientItem class, unused.

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

diff --git a/cui/source/tabpages/align.cxx b/cui/source/tabpages/align.cxx
index b657329..4a46c38 100644
--- a/cui/source/tabpages/align.cxx
+++ 

[Libreoffice-commits] core.git: bin/gbuild-to-ide windows/README windows/soffice.sln windows/soffice.vcxproj

2017-03-02 Thread Federico Bassini
 bin/gbuild-to-ide   |   28 ++--
 windows/README  |3 -
 windows/soffice.sln |   18 --
 windows/soffice.vcxproj |   84 
 4 files changed, 12 insertions(+), 121 deletions(-)

New commits:
commit d0cc5fcd5bacd8e5e0fa7fe62a78907c2febb867
Author: Federico Bassini 
Date:   Wed Mar 1 09:39:55 2017 +0100

gbuild-to-ide: fix testide problem

this patch fix some problem in the class testVS2013Ide:
fix some tag xml bad generated, i test the project pocheck
and it compiles.

Change-Id: I5a4e3e71286a486e03ecbe936fb848e589ff71c9
Reviewed-on: https://gerrit.libreoffice.org/34739
Tested-by: Jenkins 
Reviewed-by: jan iversen 

diff --git a/bin/gbuild-to-ide b/bin/gbuild-to-ide
index 70b398d..a123216 100755
--- a/bin/gbuild-to-ide
+++ b/bin/gbuild-to-ide
@@ -197,20 +197,15 @@ class testVS2013Ide(IdeIntegrationGenerator):
 self.toolset = self.retrieve_toolset()
 self.solution_directory = './windows'
 self.configurations = {
-'Build': {
+'Release': {
 'build': self.module_make_command('%(target)s'),
 'clean': self.module_make_command('%(target)s.clean'),
 'rebuild': self.module_make_command('%(target)s.clean 
%(target)s')
 },
-'Unit Tests': {
+'Debug': {
 'build': self.module_make_command('unitcheck'),
 'clean': self.module_make_command('clean'),
 'rebuild': self.module_make_command('clean unitcheck'),
-},
-'Integration tests': {
-'build': self.module_make_command('unitcheck slowcheck 
screenshot subsequentcheck'),
-'clean': self.module_make_command('clean'),
-'rebuild': self.module_make_command('clean unitcheck slowcheck 
screenshot subsequentcheck')
 }
 }
 srcdir=self.gbuildparser.get_json_srcdir()
@@ -221,7 +216,7 @@ class testVS2013Ide(IdeIntegrationGenerator):
 pass
 
 def retrieve_toolset(self):
-return {'vs2013': 'v120', 'vs2015': 'v140'}.get(self.ide, None)
+return {'vs2013': 'v120', 'vs2015': 'v140', 
'testIde':'v120'}.get(self.ide, None)
 
 def module_make_command(self, targets):
 return '%(sh)s -c "PATH=\\"/bin:$PATH\\";BUILDDIR=\\"%(builddir)s\\" 
%(makecmd)s -rsC %(location)s ' + targets + '"'
@@ -442,12 +437,12 @@ class testVS2013Ide(IdeIntegrationGenerator):
 conf_node.text = configuration
 platform_node = ET.SubElement(proj_conf_node, '{%s}Platform' % ns)
 platform_node.text = platform
-#globals
-globals_node = ET.SubElement(proj_node, '{%s}PropertyGroup' % ns, 
Label='Globals')
-proj_guid_node = ET.SubElement(globals_node, '{%s}ProjectGuid' % 
ns)
-proj_guid_node.text = '{%s}' % project_guid
-proj_root_namespace=ET.SubElement(globals_node, 
'{%s}RootNamespace' % ns)
-proj_root_namespace.text = target['target_name']
+#globals
+globals_node = ET.SubElement(proj_node, '{%s}PropertyGroup' % ns, 
Label='Globals')
+proj_guid_node = ET.SubElement(globals_node, '{%s}ProjectGuid' % ns)
+proj_guid_node.text = '{%s}' % project_guid
+proj_root_namespace=ET.SubElement(globals_node, '{%s}RootNamespace' % 
ns)
+proj_root_namespace.text = target['target_name']
 
 
 ET.SubElement(proj_node, '{%s}Import' % ns, 
Project='$(VCTargetsPath)\Microsoft.Cpp.Default.props')
@@ -475,7 +470,7 @@ class testVS2013Ide(IdeIntegrationGenerator):
 #compiler options
 cl_compile=ET.SubElement(item_def_group,'{%s}ClCompile' % ns)
 warn_lvl=ET.SubElement(cl_compile,'{%s}WarningLevel' % ns)
-warn_lvl.text='Level 4'
+warn_lvl.text='Level4'
 opt_node=ET.SubElement(cl_compile,'{%s}Optimization' % ns)
 opt_node.text='Disabled'
 sdl_check=ET.SubElement(cl_compile,'{%s}SDLCheck' % ns)
@@ -510,7 +505,8 @@ class testVS2013Ide(IdeIntegrationGenerator):
 #cxx files
 cxx_node=ET.SubElement(proj_node,'{%s}ItemGroup' % ns)
 for cxx_elem in target['CXXOBJECTS']:
-cxx_cl_node=ET.SubElement(cxx_node,'{%s}ClCompile' % 
ns,Include='../../' + cxx_elem)
+modulename=target['module']
+cxx_cl_node=ET.SubElement(cxx_node,'{%s}ClCompile' % 
ns,Include=os.path.join('../..', modulename, cxx_elem))
 #miss headers
 ET.SubElement(proj_node, '{%s}Import' % ns, 
Project='$(VCTargetsPath)\Microsoft.Cpp.targets')
 ET.SubElement(proj_node, '{%s}ImportGroup' % ns, 
Label='ExtensionTargets')
diff --git a/windows/README b/windows/README
deleted file mode 100644
index 3287a74..000
--- a/windows/README
+++ /dev/null
@@ -1,3 +0,0 @@
-This is 

[Libreoffice-commits] core.git: libreofficekit/README

2017-03-02 Thread Adolfo Jayme Barrientos
 libreofficekit/README |3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

New commits:
commit 6f3bb068cc68bee3905b2f446d737f5ababd62ac
Author: Adolfo Jayme Barrientos 
Date:   Fri Mar 3 00:42:34 2017 -0600

tdf#106287 Remove outdated remark

Change-Id: Ia26123f469cc92f91682d05e16d761d4dca5dfca

diff --git a/libreofficekit/README b/libreofficekit/README
index 8defd38..3e16158 100644
--- a/libreofficekit/README
+++ b/libreofficekit/README
@@ -20,8 +20,7 @@ LibreOfficeKitInit.h for you.
 (LibreOfficeKit.hxx is a simple and fully inlined C++ wrapper for the same
 functionality as in LibreOfficeKit.h.)
 
-An example program (currently using the older shim.c/static library
-integration) can be seen on:
+An example program can be seen on:
 https://github.com/ojwb/lloconv
 
 Tiled Rendering
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 106287] Out of date information about lloconv

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

Adolfo Jayme  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |FIXED
   Assignee|libreoffice-b...@lists.free |f...@libreoffice.org
   |desktop.org |

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


[Libreoffice-commits] core.git: bin/gbuild-to-ide

2017-03-02 Thread Federico Bassini
 bin/gbuild-to-ide |   35 +--
 1 file changed, 33 insertions(+), 2 deletions(-)

New commits:
commit 70f520b19f3423ed2ae41c85bb5f220eb4336e03
Author: Federico Bassini 
Date:   Wed Mar 1 13:27:27 2017 +0100

gbuild-to-ide: testVS2013Ide .props

this patch add a PropertySheet.props in the windows directory
in this file can put the enviroment variables
for vs2013.

i add in the gbuildparser a variable _jsonsrcdir that
contains the SRCDIR path that it can found in the json file.

with this file we can use enviroment variables of LO.
e.g.: $(SRCDIR), $(BUILDDIR) etc...
in the VS2013 ide.

Change-Id: Ie3158fd31fe247833115d445553f613dcd1a3b1d
Reviewed-on: https://gerrit.libreoffice.org/34749
Tested-by: Jenkins 
Reviewed-by: jan iversen 

diff --git a/bin/gbuild-to-ide b/bin/gbuild-to-ide
index 7dd6142..70b398d 100755
--- a/bin/gbuild-to-ide
+++ b/bin/gbuild-to-ide
@@ -32,6 +32,7 @@ class GbuildParser:
 
os.environ['INSTDIR'], os.environ['WORKDIR'])
 self.modules = collections.OrderedDict()
 
+
 _includepattern = re.compile('-I(\S+)')
 _isystempattern = re.compile('-isystem\s*(\S+)')
 _warningpattern = re.compile('-W\S+')
@@ -39,7 +40,9 @@ class GbuildParser:
  'Executable': re.compile('Executable_(.*)\.mk'),
  'CppunitTest': re.compile('CppunitTest_(.*)\.mk')}
 _allheaders=[]
-
+_jsonsrcdir=''
+def get_json_srcdir(self):
+return self._jsonsrcdir
 def __split_includes(json_srcdir,includes):
 foundisystem = GbuildParser._isystempattern.findall(includes)
 foundincludes=[]
@@ -106,6 +109,7 @@ class GbuildParser:
 
 moduleDict = {}
 self.find_all_headers()
+
 for jsontype in ['Library', 'Executable', 'CppunitTest']:
 for jsonfilename in os.listdir(os.path.join(self.workdir, 
'GbuildToJson', jsontype)):
 with open(os.path.join(self.workdir, 'GbuildToJson', jsontype, 
jsonfilename), 'r') as f:
@@ -135,7 +139,7 @@ class GbuildParser:
 moduleDict[module] = {'targets': [],'headers':{}}
 moduleDict[module]['targets'].append(jsondata)
 moduleDict[module]['headers'] =self.headers_of(module)
-
+self._jsonsrcdir=json_srcdir
 moduleDict['include']={ 'targets': [], 
'headers':self.headers_of('include')}
 
 for i in sorted(moduleDict):
@@ -209,6 +213,12 @@ class testVS2013Ide(IdeIntegrationGenerator):
 'rebuild': self.module_make_command('clean unitcheck slowcheck 
screenshot subsequentcheck')
 }
 }
+srcdir=self.gbuildparser.get_json_srcdir()
+self.env_variables={
+'SRCDIR': 
srcdir,'BUILDDIR':os.path.dirname(srcdir),'INSTDIR':os.path.join(srcdir,'instdir'),'WORKDIR':os.path.join(srcdir,'workdir')
+}
+def tmp_json_env_var(self):
+pass
 
 def retrieve_toolset(self):
 return {'vs2013': 'v120', 'vs2015': 'v140'}.get(self.ide, None)
@@ -225,6 +235,8 @@ class testVS2013Ide(IdeIntegrationGenerator):
 
 def emit(self):
 all_projects = []
+props_path=os.path.join(self.solution_directory,'PropertySheet.props')
+self.write_props(props_path)
 for module in self.gbuildparser.modules:
 projects = []
 module_directory = os.path.join(self.solution_directory, module)
@@ -252,6 +264,23 @@ class testVS2013Ide(IdeIntegrationGenerator):
 if library_project.target['name'] == linked_lib:
 dependency_libs[library_project.guid] = library_project
 return dependency_libs
+def write_props(self,props_path):
+ns = 'http://schemas.microsoft.com/developer/msbuild/2003'
+ET.register_namespace('', ns)
+proj_node = ET.Element('{%s}Project' % ns, DefaultTargets='Build', 
ToolsVersion='4.0')
+imp_grp_node=ET.SubElement(proj_node,'{%s}ImportGroup' % ns, 
Label='PropertySheets')
+prop_grp_node = ET.SubElement(proj_node, '{%s}PropertyGroup' % ns, 
Label='UserMacros')
+for key,value in self.env_variables.items():
+vsrcdir=ET.SubElement(prop_grp_node,key)
+vsrcdir.text=value
+prop_grp_node2 = ET.SubElement(proj_node, '{%s}PropertyGroup' % ns)
+itm_def_node = ET.SubElement(proj_node, '{%s}ItemDefinitionGroup' % ns)
+itm_grp = ET.SubElement(proj_node, '{%s}ItemGroup' % ns)
+for key, value in self.env_variables.items():
+build_macro_node = ET.SubElement(itm_grp, '{%s}BuildMacro' % ns, 
Include=key)
+value_node = ET.SubElement(build_macro_node, '{%s}Value' % ns)
+value_node.text='$(%s)' % key
+self.write_pretty_xml(proj_node,props_path)
 
 def 

[Libreoffice-bugs] [Bug 106103] SIGSEGV on start in lcl_SelectAppIconPixmap

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

Julien Nabet  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |NOTOURBUG

--- Comment #6 from Julien Nabet  ---
Let's put this one to NOTOURBUG then.
Don't hesitate to reopen this tracker if it's finally an LO 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-commits] core.git: connectivity/source extensions/source

2017-03-02 Thread dennisroczek
 connectivity/source/drivers/kab/KDEInit.cxx |2 +-
 extensions/source/bibliography/bibview.cxx  |3 +--
 2 files changed, 2 insertions(+), 3 deletions(-)

New commits:
commit f25a8fdff891809b836ae76913276919e79d5d2c
Author: dennisroczek 
Date:   Thu Mar 2 23:49:51 2017 +

Remove bogus source code comments

Change-Id: I616ca3483d926c8e4155512ef5138e3f7978ece3
Reviewed-on: https://gerrit.libreoffice.org/34842
Tested-by: Jenkins 
Reviewed-by: Adolfo Jayme Barrientos 

diff --git a/connectivity/source/drivers/kab/KDEInit.cxx 
b/connectivity/source/drivers/kab/KDEInit.cxx
index 5317c62..c5ace04 100644
--- a/connectivity/source/drivers/kab/KDEInit.cxx
+++ b/connectivity/source/drivers/kab/KDEInit.cxx
@@ -130,7 +130,7 @@ extern "C" SAL_DLLPUBLIC_EXPORT void SAL_CALL 
shutdownKApplication()
 a positive value if the version is too new to know whether it 
works with this driver
 
 
-#i60062# / 2006-01-06 / frank.schoenh...@sun.com
+#i60062#
 */
 extern "C" SAL_DLLPUBLIC_EXPORT int SAL_CALL matchKDEVersion()
 {
diff --git a/extensions/source/bibliography/bibview.cxx 
b/extensions/source/bibliography/bibview.cxx
index 91e7a3e..32739be 100644
--- a/extensions/source/bibliography/bibview.cxx
+++ b/extensions/source/bibliography/bibview.cxx
@@ -111,7 +111,6 @@ namespace bib
 // TODO:
 // this is _strange_: Why not updating the existent general page?
 // I consider the current behaviour a HACK.
-// frank.schoenh...@sun.com
 if ( m_pGeneralPage )
 {
 m_pGeneralPage->Hide();
@@ -218,4 +217,4 @@ namespace bib
 }   // namespace bib
 
 
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
\ No newline at end of file
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 96621] Wrong cursor position if you reopen a text document with tables

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

Jean-Baptiste Faure  changed:

   What|Removed |Added

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

--- Comment #8 from Jean-Baptiste Faure  ---
I do not reproduce the problem anymore with LO 5.2.7.0.0+ and LO 5.3.2.0.0+.

But in the master, on reopening the document, the cursor is positioned several
(~10) characters before the correct position or at the start of the line. But
this problem is a another one because it does not depend on the presence of
tables in the document. I will open a new bug report for this new problem if I
can determine the conditions to reproduce the bug. 

In the meantime, closing the current bug report as WorksForMe.

Best regards. JBF

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


[Libreoffice-bugs] [Bug 105594] Missing background-color option in control properties in a form

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

--- Comment #18 from pselec...@tutanota.com ---
Same problem. When designing forms in libreoffice base, the option to change
background color of any control from Properties: menu, is missing.

OS: Archlinux
Version: LibreOffice 5.3.0.3 30m0(Build:3)

-- 
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 100849] Currency icon is har =?UTF-8?Q?dcoded=20to=20=E2=80=9C=24=E2=80=9D?=, which is inappropriate to locales not using dollars

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

Adolfo Jayme  changed:

   What|Removed |Added

 Blocks||106228


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=106228
[Bug 106228] [Meta] Icon 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-ux-advise] [Bug 106228] [Meta] Icon issues

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

Adolfo Jayme  changed:

   What|Removed |Added

 Depends on||100849


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=100849
[Bug 100849] Currency icon is hardcoded to “$”, which is inappropriate to
locales not using dollars
-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
Libreoffice-ux-advise mailing list
Libreoffice-ux-advise@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise


[Libreoffice-bugs] [Bug 106228] [Meta] Icon issues

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

Adolfo Jayme  changed:

   What|Removed |Added

 Depends on||100849


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=100849
[Bug 100849] Currency icon is hardcoded to “$”, which is inappropriate to
locales not using dollars
-- 
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 106284] Sifr icon for "save/save as" not shown as other activated icons

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

Adolfo Jayme  changed:

   What|Removed |Added

 Blocks||106228


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=106228
[Bug 106228] [Meta] Icon 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-ux-advise] [Bug 106228] [Meta] Icon issues

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

Adolfo Jayme  changed:

   What|Removed |Added

 Depends on||106284


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=106284
[Bug 106284] Sifr icon for "save/save as" not shown as other activated icons
-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
Libreoffice-ux-advise mailing list
Libreoffice-ux-advise@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise


[Libreoffice-bugs] [Bug 106228] [Meta] Icon issues

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

Adolfo Jayme  changed:

   What|Removed |Added

 Depends on||106284


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=106284
[Bug 106284] Sifr icon for "save/save as" not shown as other activated icons
-- 
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 106284] Sifr icon for "save/save as" not shown as other activated icons

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

Adolfo Jayme  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||f...@libreoffice.org,
   ||matti...@mailbox.org
 Ever confirmed|0   |1

--- Comment #2 from Adolfo Jayme  ---
@Matthias, can you look at this when you find the time? Thanks!

-- 
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 106285] Sifr list box icon edges not transparent

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

Adolfo Jayme  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |INVALID

--- Comment #2 from Adolfo Jayme  ---
The listbox widget comes from GTK+ (or another UI toolkit); it has nothing to
do with Sifr or any other icon theme.

To fix this, install the package “libreoffice-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 103895] Numbers within vertical ruler not displayed correctly using Harfbuzz with CoreType on OS X

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

Khaled Hosny  changed:

   What|Removed |Added

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

-- 
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 103741] Wrong rendering of number on vertical ruler in Writer

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

Khaled Hosny  changed:

   What|Removed |Added

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

-- 
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 106279] Wrong display of graphite ligatures when running presentation when openGL enabled

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

Khaled Hosny  changed:

   What|Removed |Added

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

-- 
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 93529] [META] VCL/OpenGL tracker bug for 5.0+

2017-03-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93529
Bug 93529 depends on bug 106279, which changed state.

Bug 106279 Summary: Wrong display of graphite ligatures when running 
presentation when openGL enabled
https://bugs.documentfoundation.org/show_bug.cgi?id=106279

   What|Removed |Added

 Status|NEW |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 71732] [META] Bugs related to text rendering, typography and font features in LO

2017-03-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=71732
Bug 71732 depends on bug 106279, which changed state.

Bug 106279 Summary: Wrong display of graphite ligatures when running 
presentation when openGL enabled
https://bugs.documentfoundation.org/show_bug.cgi?id=106279

   What|Removed |Added

 Status|NEW |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 103831] Horizontal text scaling doesn' t work correctly when OpenGL is enabled on Windows

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

Khaled Hosny  changed:

   What|Removed |Added

   Priority|medium  |high
   Assignee|libreoffice-b...@lists.free |khaledho...@eglug.org
   |desktop.org |
   Severity|normal  |major

-- 
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 103831] Horizontal text scaling doesn' t work correctly when OpenGL is enabled on Windows

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

Khaled Hosny  changed:

   What|Removed |Added

 CC||pierre.choffar...@free.fr

--- Comment #19 from Khaled Hosny  ---
*** Bug 106279 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 106279] Wrong display of graphite ligatures when running presentation when openGL enabled

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

Khaled Hosny  changed:

   What|Removed |Added

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

--- Comment #2 from Khaled Hosny  ---


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

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


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

2017-03-02 Thread Markus Mohrhard
 sw/qa/extras/ww8export/ww8export.cxx |2 ++
 1 file changed, 2 insertions(+)

New commits:
commit e8e1452c88ea750088f77006ec558edf96fa0c7e
Author: Markus Mohrhard 
Date:   Fri Mar 3 03:31:33 2017 +0100

another test that seems to depend on the available fonts

See RandomConfig tb run #260.

Change-Id: Ib2a12ffa9a42745ac4551eaca02d84d6921924f8
Reviewed-on: https://gerrit.libreoffice.org/34847
Tested-by: Jenkins 
Reviewed-by: Markus Mohrhard 

diff --git a/sw/qa/extras/ww8export/ww8export.cxx 
b/sw/qa/extras/ww8export/ww8export.cxx
index 98ce476..b9a7098 100644
--- a/sw/qa/extras/ww8export/ww8export.cxx
+++ b/sw/qa/extras/ww8export/ww8export.cxx
@@ -1274,6 +1274,7 @@ DECLARE_WW8EXPORT_TEST(testCommentExport, 
"comment-export.odt")
 }
 
 #if !defined(MACOSX)
+#if !TEST_FONTS_MISSING
 DECLARE_WW8EXPORT_TEST(testTableKeep, "tdf91083.odt")
 {
 //emulate table "keep with next" -do not split table
@@ -1281,6 +1282,7 @@ DECLARE_WW8EXPORT_TEST(testTableKeep, "tdf91083.odt")
 CPPUNIT_ASSERT_EQUAL( OUString("Row 1"), 
parseDump("/root/page[6]/body/tab[1]/row[2]/cell[1]/txt[1]") );
 }
 #endif
+#endif
 
 DECLARE_WW8EXPORT_TEST(testTdf76349_textboxMargins, 
"tdf76349_textboxMargins.doc")
 {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 106272] Calc Freezes (Not Responding) When Referencing to Another Sheet and That Sheet Has Column/ Row Freeze Enabled

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

Kevin Suo  changed:

   What|Removed |Added

   Keywords||regression

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


[Libreoffice-bugs] [Bug 106272] Calc Freezes (Not Responding) When Referencing to Another Sheet and That Sheet Has Column/ Row Freeze Enabled

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

--- Comment #2 from Kevin Suo  ---
Builds from branch libreofice-5-3 are also affected by this issue.

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


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

2017-03-02 Thread Takeshi Abe
 starmath/inc/error.hxx|1 -
 starmath/inc/starmath.hrc |3 +--
 starmath/source/parse.cxx |3 +--
 starmath/source/smres.src |5 -
 4 files changed, 2 insertions(+), 10 deletions(-)

New commits:
commit dabcb80966a25b9f092d7ffd4feef0e7e4a2caab
Author: Takeshi Abe 
Date:   Thu Mar 2 16:09:49 2017 +0900

starmath: Replace SmParseError::FuncExpected with assertion

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

diff --git a/starmath/inc/error.hxx b/starmath/inc/error.hxx
index aff5faf..a05123d 100644
--- a/starmath/inc/error.hxx
+++ b/starmath/inc/error.hxx
@@ -28,7 +28,6 @@ enum class SmParseError
 None,
 UnexpectedChar,
 UnexpectedToken,
-FuncExpected,
 PoundExpected,
 ColorExpected,
 LgroupExpected,
diff --git a/starmath/inc/starmath.hrc b/starmath/inc/starmath.hrc
index 508ad28..3eba1d4 100644
--- a/starmath/inc/starmath.hrc
+++ b/starmath/inc/starmath.hrc
@@ -132,8 +132,7 @@
 #define RID_ERR_RGROUPEXPECTED  (RID_APP_START + 924)
 #define RID_ERR_LBRACEEXPECTED  (RID_APP_START + 925)
 #define RID_ERR_RBRACEEXPECTED  (RID_APP_START + 926)
-#define RID_ERR_FUNCEXPECTED(RID_APP_START + 927)
-// blank: 928 - 931
+// blank: 927 - 931
 #define RID_ERR_POUNDEXPECTED   (RID_APP_START + 932)
 #define RID_ERR_COLOREXPECTED   (RID_APP_START + 933)
 #define RID_ERR_LPARENTEXPECTED (RID_APP_START + 934)
diff --git a/starmath/source/parse.cxx b/starmath/source/parse.cxx
index 0d38459..4bb9ff7 100644
--- a/starmath/source/parse.cxx
+++ b/starmath/source/parse.cxx
@@ -2097,7 +2097,7 @@ void SmParser::DoFunction()
 break;
 
 default:
-Error(SmParseError::FuncExpected);
+assert(false);
 }
 }
 
@@ -2345,7 +2345,6 @@ void SmParser::AddError(SmParseError Type, SmNode *pNode)
 case SmParseError::RgroupExpected: nRID = RID_ERR_RGROUPEXPECTED;  
break;
 case SmParseError::LbraceExpected: nRID = RID_ERR_LBRACEEXPECTED;  
break;
 case SmParseError::RbraceExpected: nRID = RID_ERR_RBRACEEXPECTED;  
break;
-case SmParseError::FuncExpected:   nRID = RID_ERR_FUNCEXPECTED;
break;
 case SmParseError::PoundExpected:  nRID = RID_ERR_POUNDEXPECTED;   
break;
 case SmParseError::ColorExpected:  nRID = RID_ERR_COLOREXPECTED;   
break;
 case SmParseError::RightExpected:  nRID = RID_ERR_RIGHTEXPECTED;   
break;
diff --git a/starmath/source/smres.src b/starmath/source/smres.src
index b5efdeb..615c6dc 100644
--- a/starmath/source/smres.src
+++ b/starmath/source/smres.src
@@ -196,11 +196,6 @@ String RID_ERR_RBRACEEXPECTED
 Text [ en-US ] = "')' expected" ;
 };
 
-String RID_ERR_FUNCEXPECTED
-{
-Text [ en-US ] = "Function expected" ;
-};
-
 String RID_ERR_POUNDEXPECTED
 {
 Text [ en-US ] = "'#' expected" ;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 106289] New: Global find-and-replace for big document (35, 000 words) can take over an hour.

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

Bug ID: 106289
   Summary: Global find-and-replace for big document (35,000
words) can take over an hour.
   Product: LibreOffice
   Version: 5.2.5.1 release
  Hardware: x86 (IA32)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: m...@mcn.org

Global find-and-replace for a big document (40,000 words) can take hours.

I asked about this on libreoffice.org, and was answered by Mike Kaganski: "As a
workaround, I'd suggest to try to switch to Web view for a time when you do
such operations, and switch back afterwards."

I switched to web view and tried a test: I tell it to find all places of two
consecutive paragraph breaks --meaning \p\p in Tools, Add Ons, Alternative
Searching and checkbox Regular Expressions, and replace them with characters
yyy then I tell it to find all places of single paragraph breaks and replace
them with a space, then I tell it to replace all places of yyy with two
consecutive paragraph breaks, then I replace all instances of two consecutive
spaces with one space.

Switching to web view solved the problem of the screen stuttering and redrawing
for every individual replace, but the process took just as long.

For comparison, in Microsoft Word (Office 97, I think, and Office 2003), this
whole process could be completed in less than a minute.

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


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

2017-03-02 Thread Henry Castro
 loleaflet/src/layer/marker/Annotation.js |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit ecd6747ebc0823359109938c8a4db13a071110f8
Author: Henry Castro 
Date:   Thu Mar 2 21:35:20 2017 -0400

loleaflet: append L.Annotation to popup pane

Change-Id: I9ff4cf0b17c53a677625d5152e56e529482de094

diff --git a/loleaflet/src/layer/marker/Annotation.js 
b/loleaflet/src/layer/marker/Annotation.js
index a181e79..995087d 100644
--- a/loleaflet/src/layer/marker/Annotation.js
+++ b/loleaflet/src/layer/marker/Annotation.js
@@ -20,7 +20,7 @@ L.Annotation = L.Layer.extend({
this._initLayout();
}
 
-   map._panes.markerPane.appendChild(this._container);
+   map._panes.popupPane.appendChild(this._container);
this.update();
},
 
@@ -30,7 +30,7 @@ L.Annotation = L.Layer.extend({
},
 
onRemove: function (map) {
-   map._panes.markerPane.removeChild(this._container);
+   map._panes.popupPane.removeChild(this._container);
this._map = null;
},
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 31379] wrong headline number in table of contents (TOC) for specific file

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

--- Comment #21 from madduck  ---
The file I just attached is a native ODT I created just to reproduce this bug,
so it seems to be independent from the Word conversion.

-- 
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 31379] wrong headline number in table of contents (TOC) for specific file

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

madduck  changed:

   What|Removed |Added

Summary|wrong headline number in|wrong headline number in
   |table of contents (TOC) for |table of contents (TOC) for
   |specific file (converted|specific file
   |from 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 31379] wrong headline number in table of contents (TOC) for specific file (converted from Word)

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

--- Comment #19 from madduck  ---
Created attachment 131590
  --> https://bugs.documentfoundation.org/attachment.cgi?id=131590=edit
Another example of the TOC 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 31379] wrong headline number in table of contents (TOC) for specific file (converted from Word)

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

madduck  changed:

   What|Removed |Added

 CC||documentfoundation.org@pobo
   ||x.madduck.net

--- Comment #20 from madduck  ---
I can add some information to this, because I think I have encountered the same
bug in a different setting.

My problem seems to relate to (ab)using outline numbering to number
paragraphs, i.e. Level 1 is Heading 1, but Level 2 is associated
with the Text body style, which I do in order to get the chapter number into
the individual paragraph numberings.

Example document is being attached.

Even though there are no instances of either Heading 1 or Text body
before the first header, this seems to throw off display of the TOC, which
starts at § 2.

Do note that if you hover over the TOC, the correct link text is displayed.

Also, as the original poster said, this is only a problem if the TOC appears
before the first instance of Heading 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 106288] table calculations wrong when show track changes is on

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

Phillip Brown  changed:

   What|Removed |Added

Summary|table calculations wrong|table calculations wrong
   |when track changes is on|when show track changes is
   ||on

-- 
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 104802] jerky cursor behavior, lags key strokes, loss of data using filter, 500mb memory use

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

--- Comment #17 from Steve Nordstrom  ---
Per your suggestion I have installed LO 5.3.0.
It changed nothing.
I tried several times to enter Safe Mode and the reaction of my computer did
not match the instructions, so I could not complete the process, so I gave up.

I keep two 1000+ line spreadsheets open for days/weeks at a time.
I enter small amounts of data (30 cells or less) on one or both of them almost
every day.
As the days pass, I have noticed that the amount of memory used by LO grows
several megabytes each day.
Even though each spreadsheet is listed as 100KB or so, the amount of memory
shown used by LO grows from about 200 MB at opening, to over 1GB after a week
or two.
WHY?
Is there some setting that I can adjust to reduce memory usage?
This may be the reason for the cursor lag.

-- 
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 106288] table calculations wrong when track changes is on

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

Phillip Brown  changed:

   What|Removed |Added

Summary|table calculations wrong|table calculations wrong
   |when show track changes is  |when track changes is on
   |on  |

-- 
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 106288] table calculations wrong when show track changes is on

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

Phillip Brown  changed:

   What|Removed |Added

Version|5.3.1.1 rc  |5.3.0.3 release

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


[Libreoffice-bugs] [Bug 106288] New: table calculations wrong when show track changes is on

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

Bug ID: 106288
   Summary: table calculations wrong when show track changes is on
   Product: LibreOffice
   Version: 5.3.1.1 rc
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: pjbr...@people.net.au

Created attachment 131589
  --> https://bugs.documentfoundation.org/attachment.cgi?id=131589=edit
example document showing problem

enter numeric data into a table
use 'sum' function to get total of data in cells
with track changes on and show track changes, delete value in one cell and
replace with different value - both original value and new value are displayed
in the cell
sum function uses both the deleted original and new value in its calculation,
when it should only use the new value

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


[Libreoffice-bugs] [Bug 104803] column filter loses header row when editing and cannot be returned to all data

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

--- Comment #10 from Steve Nordstrom  ---
Per your suggestion I have installed LO 5.3.0.
It fixed nothing.
Although the problem in this bug has never repeated since the first instance.
So I am going to close this for you to get it off your list.
Thanks for your interest.

SN

-- 
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 106161] Writer crashes immediately after opening this .docx in Windows 7

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

Aron Budea  changed:

   What|Removed |Added

   Priority|medium  |high
 OS|All |Windows (All)
   Severity|normal  |major

-- 
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 106161] Writer crashes immediately after opening this .docx in Windows 7

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

Aron Budea  changed:

   What|Removed |Added

   Keywords||regression
 CC||jl...@mail.com
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=99
   ||616

--- Comment #10 from Aron Budea  ---
The crash started with the commit referenced below. Adding Cc: to Justin Luth,
please take a look.

https://cgit.freedesktop.org/libreoffice/core/commit/?id=3d5ccc1577ff89bd13c26a8cde787a39482a8b81
author  Justin Luth    2016-12-23 10:49:19
(GMT)
committer   Justin Luth    2017-01-05 04:29:15
(GMT)

"tdf#99616 writerfilter: hideMark shouldn't force min size"

-- 
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 106161] Writer crashes immediately after opening this .docx in Windows 7

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

Aron Budea  changed:

   What|Removed |Added

   Keywords||bibisected, bisected

--- Comment #9 from Aron Budea  ---
Bibisected using repo bibisect-win32-5.3.

f64decf556ce09ba3dc781644e2381b1ad5df041 is the first bad commit
commit f64decf556ce09ba3dc781644e2381b1ad5df041
Author: Norbert Thiebaud 
Date:   Wed Jan 4 20:50:14 2017 -0800

source sha:3d5ccc1577ff89bd13c26a8cde787a39482a8b81

# bad: [a374222bc87bd9e75ea2f1ca45d189932a1967f8] source
sha:aa09fd58bd499a2a2c3a32c5f613892bad54076c
# good: [defb73f1c6e2a66dbd21ba89e684f57427e8bc4b] source
sha:5b168b3fa568e48e795234dc5fa454bf24c9805e
git bisect start 'a374222bc87bd9e75ea2f1ca45d189932a1967f8' 'oldest'
# good: [0b4408f0568ad1da0797543c0ee2955c386267ee] source
sha:8f7886c742cae5e012e52029c20925aa7b0fb6ea
git bisect good 0b4408f0568ad1da0797543c0ee2955c386267ee
# good: [f8b90d89a8a858c3e0ce171f82ecb20b3ea80098] source
sha:75239b77139434db9be5e0e7e133e3661c5404b0
git bisect good f8b90d89a8a858c3e0ce171f82ecb20b3ea80098
# good: [7a279eab384549b23a159352c7308486555e0401] source
sha:5e416099f088a2f8a8980e08e3d5b731da0a6d9c
git bisect good 7a279eab384549b23a159352c7308486555e0401
# good: [98c2b302ef513c6a2be310b7c3b0385b382ad52c] source
sha:5197e99fa6ca77b9d607072bc98c46eb559a2a8d
git bisect good 98c2b302ef513c6a2be310b7c3b0385b382ad52c
# good: [49575353b42b097e15262097934052f070c5809a] source
sha:eb319362c94f1c17beb355a53f392a9bcf939822
git bisect good 49575353b42b097e15262097934052f070c5809a
# bad: [40c5a4cc9e0c88e78a4fa8c089089d875edc4221] source
sha:7a63fc125c59ba3b7880a94fc038f2f24ca7e353
git bisect bad 40c5a4cc9e0c88e78a4fa8c089089d875edc4221
# good: [d563df2d26c3b7673ef5e7bf24d338d4c6903707] source
sha:d66a9721913e89f1cc76068ee1a64b1cf0eef8d8
git bisect good d563df2d26c3b7673ef5e7bf24d338d4c6903707
# bad: [05c6e33db573d627d974c1b8cf06d0dc96ef6b8a] source
sha:b6b0194661303d12e9c73ffadbe82afe77c862e2
git bisect bad 05c6e33db573d627d974c1b8cf06d0dc96ef6b8a
# bad: [8fd3eb91a44dd2be733ca5b5bd706fb2e7fd753d] source
sha:ed11f8eb344fb70d17a76f15365f181a662bcc98
git bisect bad 8fd3eb91a44dd2be733ca5b5bd706fb2e7fd753d
# bad: [f9fbfdfb5bdc0d30cfa55b7ff9d9aef03645a16a] source
sha:d4b57240aabece5550cc9ac448ff90301ed6ec3d
git bisect bad f9fbfdfb5bdc0d30cfa55b7ff9d9aef03645a16a
# bad: [f64decf556ce09ba3dc781644e2381b1ad5df041] source
sha:3d5ccc1577ff89bd13c26a8cde787a39482a8b81
git bisect bad f64decf556ce09ba3dc781644e2381b1ad5df041
# good: [84e890a92941e0585bf481a653b86b3f159e1a2f] source
sha:c63fe08c485baba133ebbeaef28fe97113dded35
git bisect good 84e890a92941e0585bf481a653b86b3f159e1a2f
# first bad commit: [f64decf556ce09ba3dc781644e2381b1ad5df041] source
sha:3d5ccc1577ff89bd13c26a8cde787a39482a8b81

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


[Libreoffice-commits] core.git: Branch 'feature/fixes38' - 4 commits - sc/source sw/source

2017-03-02 Thread László Németh
 sc/source/core/inc/arraysumfunctor.hxx |2 +-
 sc/source/core/tool/calcconfig.cxx |8 +---
 sw/source/uibase/inc/wrtsh.hxx |4 ++--
 sw/source/uibase/uno/unotxvw.cxx   |   12 
 sw/source/uibase/wrtsh/move.cxx|8 
 5 files changed, 16 insertions(+), 18 deletions(-)

New commits:
commit 194e386b6b95e7728d6dfc26e0efffc252c94583
Author: László Németh 
Date:   Thu Mar 2 23:56:34 2017 +

Revert "arraysumfunctor: fast sum a double array..."

This reverts commit 5493402fb37a1def960c93f7c31aff36a5ab5f9e.

Change-Id: Ib3d0029fdb7666eec1e8fcbe6703091367f034c3

diff --git a/sc/source/core/inc/arraysumfunctor.hxx 
b/sc/source/core/inc/arraysumfunctor.hxx
index d94bf74..69ab069 100644
--- a/sc/source/core/inc/arraysumfunctor.hxx
+++ b/sc/source/core/inc/arraysumfunctor.hxx
@@ -43,7 +43,7 @@ public:
 
 double operator() ()
 {
-static bool hasSSE2 = tools::cpuid::hasSSE2();
+static bool hasSSE2 = false;
 
 double fSum = 0.0;
 size_t i = 0;
commit 3f7a4f224f8f08fb11e52989e0e7c96bfcb22953
Author: László Németh 
Date:   Thu Mar 2 22:40:46 2017 +

Revert of "Add VLOOKUP to the set of opcodes..."

that we trust the OpenCL implementation for

commit 7bb7539c0e34283baeaacf7e4ff0b19287afadc2

Change-Id: Iebe545652b3bfbdcb50c9d7fa9e687d4523cbd8b

diff --git a/sc/source/core/tool/calcconfig.cxx 
b/sc/source/core/tool/calcconfig.cxx
index 9035f7d..3cdebfb 100644
--- a/sc/source/core/tool/calcconfig.cxx
+++ b/sc/source/core/tool/calcconfig.cxx
@@ -85,7 +85,6 @@ void ScCalcConfig::setOpenCLConfigToDefault()
 ocCount,
 ocVar,
 ocNormDist,
-ocVLookup,
 ocCorrel,
 ocCovar,
 ocPearson,
commit 4a795e40ab7125955a2612a9e803bca446bbbf47
Author: László Németh 
Date:   Thu Mar 2 23:26:12 2017 +

Revert "tdf#100051 Partially revert "loplugin:constantparam in sw""

This reverts commit de9ae2ffab45bf6a2ddb2dcba961591bd9b693da.

diff --git a/sw/source/uibase/inc/wrtsh.hxx b/sw/source/uibase/inc/wrtsh.hxx
index 0f8ccda..5a36e7e 100644
--- a/sw/source/uibase/inc/wrtsh.hxx
+++ b/sw/source/uibase/inc/wrtsh.hxx
@@ -191,8 +191,8 @@ typedef bool (SwWrtShell:: *FNSimpleMove)();
 sal_uInt16 nCount, bool bBasicCall, bool bVisual = 
false );
 bool Right  ( sal_uInt16 nMode, bool bSelect,
 sal_uInt16 nCount, bool bBasicCall, bool bVisual = 
false );
-bool Up ( bool bSelect, sal_uInt16 nCount = 1, bool bBasicCall = 
false );
-bool Down   ( bool bSelect, sal_uInt16 nCount = 1, bool bBasicCall = 
false );
+bool Up ( bool bSelect, bool bBasicCall = false );
+bool Down   ( bool bSelect, bool bBasicCall = false );
 void NxtWrd ( bool bSelect = false ) { SimpleMove( 
::NxtWrd_, bSelect ); }
 bool PrvWrd ( bool bSelect = false ) { return SimpleMove( 
::PrvWrd_, bSelect ); }
 
diff --git a/sw/source/uibase/uno/unotxvw.cxx b/sw/source/uibase/uno/unotxvw.cxx
index ecbb9df..2eb2f50 100644
--- a/sw/source/uibase/uno/unotxvw.cxx
+++ b/sw/source/uibase/uno/unotxvw.cxx
@@ -1000,7 +1000,8 @@ sal_Bool SwXTextViewCursor::goLeft(sal_Int16 nCount, 
sal_Bool bExpand)
 if (!IsTextSelection())
 throw  uno::RuntimeException("no text selection", static_cast < 
cppu::OWeakObject * > ( this ) );
 
-bRet = m_pView->GetWrtShell().Left( CRSR_SKIP_CHARS, bExpand, nCount, 
true );
+for( sal_uInt16 i = 0; i < nCount; i++ )
+bRet = m_pView->GetWrtShell().Left( CRSR_SKIP_CHARS, bExpand, 1, 
true );
 }
 else
 throw uno::RuntimeException();
@@ -1017,7 +1018,8 @@ sal_Bool SwXTextViewCursor::goRight(sal_Int16 nCount, 
sal_Bool bExpand)
 if (!IsTextSelection())
 throw  uno::RuntimeException("no text selection", static_cast < 
cppu::OWeakObject * > ( this ) );
 
-bRet = m_pView->GetWrtShell().Right( CRSR_SKIP_CHARS, bExpand, nCount, 
true );
+for( sal_uInt16 i = 0; i < nCount; i++ )
+bRet = m_pView->GetWrtShell().Right( CRSR_SKIP_CHARS, bExpand, 1, 
true );
 }
 else
 throw uno::RuntimeException();
@@ -1614,7 +1616,8 @@ sal_Bool SwXTextViewCursor::goDown(sal_Int16 nCount, 
sal_Bool bExpand)
 if (!IsTextSelection())
 throw  uno::RuntimeException("no text selection", static_cast < 
cppu::OWeakObject * > ( this ) );
 
-bRet = m_pView->GetWrtShell().Down( bExpand, nCount, true );
+for( sal_uInt16 i = 0; i < nCount; i++ )
+bRet = m_pView->GetWrtShell().Down( bExpand, true );
 }
 else
 throw uno::RuntimeException();
@@ -1631,7 +1634,8 @@ sal_Bool SwXTextViewCursor::goUp(sal_Int16 nCount, 
sal_Bool bExpand)
 if (!IsTextSelection())
 throw  

[Libreoffice-bugs] [Bug 106268] Format - Conditional Formatting (Wrong work)

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

m.a.riosv  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||miguelangelrv@libreoffice.o
   ||rg
 Ever confirmed|0   |1

--- Comment #2 from m.a.riosv  ---
Please attach a sample file, with the indications about where it works wrong.

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


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

2017-03-02 Thread Markus Mohrhard
 sw/qa/extras/ww8export/ww8export.cxx |4 
 1 file changed, 4 insertions(+)

New commits:
commit cedac0b9b0e4e10ad6ca468a804855c35fd52477
Author: Markus Mohrhard 
Date:   Thu Mar 2 23:43:17 2017 +0100

the test seems to depend on our bundled fonts

Try to fix the "RandomConfig" tinderbox when --with-fonts=no is
selected. E.g. run #255

Change-Id: Ie43953ad1511cd00bdc82717211f61edefa64b12
Reviewed-on: https://gerrit.libreoffice.org/34839
Tested-by: Jenkins 
Reviewed-by: Markus Mohrhard 

diff --git a/sw/qa/extras/ww8export/ww8export.cxx 
b/sw/qa/extras/ww8export/ww8export.cxx
index 14d3020..98ce476 100644
--- a/sw/qa/extras/ww8export/ww8export.cxx
+++ b/sw/qa/extras/ww8export/ww8export.cxx
@@ -46,6 +46,8 @@
 #include 
 #include 
 
+#include 
+
 #include 
 
 #define convertTwipToMm100(TWIP) ((TWIP) >= 0 ? (((TWIP)*127L+36L)/72L) : 
(((TWIP)*127L-36L)/72L))
@@ -597,6 +599,7 @@ DECLARE_WW8EXPORT_TEST(testLayoutHanging, "fdo68967.doc")
 // This must not hang in layout
 }
 
+#if !TEST_FONTS_MISSING
 DECLARE_WW8EXPORT_TEST(testfdo68963, "fdo68963.doc")
 {
 // The problem was that the text was not displayed.
@@ -605,6 +608,7 @@ DECLARE_WW8EXPORT_TEST(testfdo68963, "fdo68963.doc")
 // all crossreference bookmarks should have a target.  Shouldn't be any 
"Reference source not found" in the xml
 CPPUNIT_ASSERT_EQUAL(static_cast(-1), 
parseDump("/root/page/body/txt[24]/Special[2]","rText").indexOf("Reference 
source not found"));
 }
+#endif
 
 DECLARE_WW8EXPORT_TEST(testTdf99100, "tdf99100.doc")
 {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 106103] SIGSEGV on start in lcl_SelectAppIconPixmap

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

--- Comment #5 from Mikhail Krasilnikov  ---
Yes it seems this is an openSUSE problem. I've crated bug in openSUSE tracker:
https://bugzilla.opensuse.org/show_bug.cgi?id=1027792

-- 
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 101957] Crash when inserting an row in Writer using the context menu (likely GTK2-related)

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

Xisco Faulí  changed:

   What|Removed |Added

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

--- Comment #19 from Xisco Faulí  ---
Setting to NEEDINFO until we get feedback from the reporter

-- 
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 98544] Find & Replace dialog should remember the 'other options' state

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

Thomas Lendo  changed:

   What|Removed |Added

   See Also||https://bz.apache.org/ooo/s
   ||how_bug.cgi?id=88714

-- 
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 106286] Which Daily Build is the Correct Windows Daily Build?

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

--- Comment #2 from LibreTraining  ---
For my "end-user" testing it sounds like either 39 or 42 will work fine.

Thanks!

-- 
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 106286] Which Daily Build is the Correct Windows Daily Build?

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

V Stuart Foote  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||vstuart.fo...@utsa.edu
 Resolution|--- |NOTABUG

--- Comment #1 from V Stuart Foote  ---
Any of them. Just be aware that each maintainer of their Tinderbox configures
it as they see fit. 

If you need symbols for use with WinDbg -- Kendy's TB39 provides them.
Thorsten's TB42 does not.

While Cloph (Christian Lohmaier) runs TB62 on TDF hardware close to the actual
"release" build configuration with multi-language build and the local help
installer. Unfortunately no symbols for stack trace.

Cloph also will run a 64-bit builds of master on TB62 from time to
time--depending on what is happening with the released branch.

Personally I just try to grab a build every day or two from any of the TB
servers that roll.  With a history of builds on hand I can bibisect regressions
using sequence of /a administrative installs.

The actual git bibisect archive for Windows is painful to use--using admin
installs to manually bibisect just needs disk space.

Setting this NAB though as there is no bug. This is more an infrastructure
issue that would belong on our Redmine instance for the TDF project(s)

-- 
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 106241] Mail Merge connects to gmail smtp server but emails are not sent

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

LibreTraining  changed:

   What|Removed |Added

 CC||libretraining.tutorials@gma
   ||il.com

--- Comment #3 from LibreTraining  ---
Are you entering the mail server information during the mail merge process?
Or in the Writer Options settings?

There is another user reporting a similar issue in the Ask LibreOffice forum.
https://ask.libreoffice.org/en/question/66768/why-does-lo-writer-tell-me-that-the-test-account-settings-is-successful-connection-to-outgoing-mail-server-was-established-2-of-2-emails-sent-but-then/

Entering the mail server info into the Writer Options worked for him.
Options > LibreOffice Writer > Mail Merge E-mail

If that works for you, then it appears there is a bug in the Writer mail merge
dialogs not properly saving the mail server info.

-- 
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 106287] New: Out of date information about lloconv

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

Bug ID: 106287
   Summary: Out of date information about lloconv
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: minor
  Priority: medium
 Component: Documentation
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ojwbetts...@gmail.com

http://docs.libreoffice.org/libreofficekit.html

says:

"An example program (currently using the older shim.c/static library
integration) can be seen on: https://github.com/ojwb/lloconv;

The parenthetical remark is out of date - I updated the lloconv code to stop
using shim.c in late April 2016.

-- 
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 54068] The "Edit>Compare Documents" command does not detect changes in tables properly

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

Thomas Lendo  changed:

   What|Removed |Added

Version|5.0.4.2 release |Inherited From OOo

-- 
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 104520] [META] DOCX (OOXML) bug tracker

2017-03-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104520
Bug 104520 depends on bug 101178, which changed state.

Bug 101178 Summary: Crash when saving a particular document as DOCX
https://bugs.documentfoundation.org/show_bug.cgi?id=101178

   What|Removed |Added

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

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


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

2017-03-02 Thread Michael Stahl
 sw/qa/extras/ooxmlexport/data/toxmarkhyperlink.fodt |   52 
 sw/qa/extras/ooxmlexport/ooxmlfieldexport.cxx   |5 +
 sw/source/filter/ww8/docxattributeoutput.cxx|   32 ++--
 3 files changed, 83 insertions(+), 6 deletions(-)

New commits:
commit 103efac8110be7e6f42fffcecc74abdcae4df7f9
Author: Michael Stahl 
Date:   Thu Mar 2 23:11:29 2017 +0100

tdf#101178 sw: DOCX export: fix crash

These conditions in DocxAttributeOutput::EndRun() are apparently not
mutually exclusive, so don't increment m_nFieldsInHyperlink twice.

Whether the m_nFieldsInHyperlink makes any sense considering there are
*2* hyperlinks then, i can't tell.

Change-Id: I5030f3303bd83633fcb044573860bc8ecaacae32

diff --git a/sw/qa/extras/ooxmlexport/data/toxmarkhyperlink.fodt 
b/sw/qa/extras/ooxmlexport/data/toxmarkhyperlink.fodt
index cbc8b59..b1323f6 100644
--- a/sw/qa/extras/ooxmlexport/data/toxmarkhyperlink.fodt
+++ b/sw/qa/extras/ooxmlexport/data/toxmarkhyperlink.fodt
@@ -42,6 +42,7 @@
 http://example.com/; text:style-name="Internet_20_link" 
text:visited-style-name="Visited_20_Internet_20_Link">foo
 http://example.com/; text:style-name="Internet_20_link" 
text:visited-style-name="Visited_20_Internet_20_Link">foo
 http://example.com/; text:style-name="Internet_20_link" 
text:visited-style-name="Visited_20_Internet_20_Link">foohttp://example.com/; text:style-name="Internet_20_link" 
text:visited-style-name="Visited_20_Internet_20_Link">bar
+http://example.com/; text:style-name="Internet_20_link" 
text:visited-style-name="Visited_20_Internet_20_Link">foohttp://example.com/; 
text:style-name="Internet_20_link" 
text:visited-style-name="Visited_20_Internet_20_Link">http://example.com/;>[fuh]
 
   
+  
+ 
+
diff --git a/sw/qa/extras/ooxmlexport/ooxmlfieldexport.cxx 
b/sw/qa/extras/ooxmlexport/ooxmlfieldexport.cxx
index 779e823..ec8b136 100644
--- a/sw/qa/extras/ooxmlexport/ooxmlfieldexport.cxx
+++ b/sw/qa/extras/ooxmlexport/ooxmlfieldexport.cxx
@@ -671,6 +671,11 @@ DECLARE_OOXMLEXPORT_TEST(testFixedDateFields, 
"fixed-date-field.docx")
 }
 }
 
+DECLARE_OOXMLEXPORT_TEST(testToxmarkHyperlink, "toxmarkhyperlink.fodt")
+{
+// test that export doesn't assert with overlapping fields / hyperlink attr
+}
+
 DECLARE_OOXMLEXPORT_TEST(testOO34469, "ooo34469-1.odt")
 {
 if (xmlDocPtr pXmlDoc = parseExport())
diff --git a/sw/source/filter/ww8/docxattributeoutput.cxx 
b/sw/source/filter/ww8/docxattributeoutput.cxx
index 1a52d89..0212233 100644
--- a/sw/source/filter/ww8/docxattributeoutput.cxx
+++ b/sw/source/filter/ww8/docxattributeoutput.cxx
@@ -1214,8 +1214,31 @@ void DocxAttributeOutput::EndRun()
 }
 
 // Start the hyperlink after the fields separators or we would generate 
invalid file
+bool newStartedHyperlink(false);
 if ( m_pHyperlinkAttrList.is() )
 {
+// if we are ending a hyperlink and there's another one starting here,
+// don't do this, so that the fields are closed further down when
+// the end hyperlink is handled, which is more likely to put the end in
+// the right place, as far as i can tell (not very far in this muck)
+if (!m_closeHyperlinkInThisRun)
+{
+// end ToX fields that want to end _before_ starting the hyperlink
+for (auto it = m_Fields.rbegin(); it != m_Fields.rend(); )
+{
+if (it->bClose && !it->pField)
+{
+EndField_Impl(*it);
+it = 
decltype(m_Fields)::reverse_iterator(m_Fields.erase(it.base() - 1));
+}
+else
+{
+++it;
+}
+}
+}
+newStartedHyperlink = true;
+
 XFastAttributeListRef xAttrList ( m_pHyperlinkAttrList.get() );
 m_pHyperlinkAttrList.clear();
 
@@ -1350,7 +1373,7 @@ void DocxAttributeOutput::EndRun()
 m_closeHyperlinkInThisRun = false;
 }
 
-if (!m_startedHyperlink)
+if (!newStartedHyperlink)
 {
 while ( m_Fields.begin() != m_Fields.end() )
 {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 101178] Crash when saving a particular document as DOCX

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

Michael Stahl  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||mst...@redhat.com
 Resolution|--- |FIXED
   Assignee|libreoffice-b...@lists.free |mst...@redhat.com
   |desktop.org |

--- Comment #9 from Michael Stahl  ---
fixed on master

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


[Libreoffice-ux-advise] [Bug 105855] Some drop-down menus higher than others

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

--- Comment #9 from Thomas Lendo  ---
Created attachment 131588
  --> https://bugs.documentfoundation.org/attachment.cgi?id=131588=edit
Paragraph style dialog window (Ubuntu)

Heiko, the rule "Everything on the same row takes the height of the tallest
element." and that dropdowns have a different height than buttons is also true
on Linux with gtk3. I tested it with Ubuntu. The icon style has no impact
(Breezse or Sifr or whatelse).

Overlining and Underlining menus are taller than Strikethrough and Effects
menus because of the height of the Font color, Overline color and Underline
color buttons.

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


[Libreoffice-bugs] [Bug 105855] Some drop-down menus higher than others

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

--- Comment #9 from Thomas Lendo  ---
Created attachment 131588
  --> https://bugs.documentfoundation.org/attachment.cgi?id=131588=edit
Paragraph style dialog window (Ubuntu)

Heiko, the rule "Everything on the same row takes the height of the tallest
element." and that dropdowns have a different height than buttons is also true
on Linux with gtk3. I tested it with Ubuntu. The icon style has no impact
(Breezse or Sifr or whatelse).

Overlining and Underlining menus are taller than Strikethrough and Effects
menus because of the height of the Font color, Overline color and Underline
color buttons.

-- 
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 106286] New: Which Daily Build is the Correct Windows Daily Build?

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

Bug ID: 106286
   Summary: Which Daily Build is the Correct Windows Daily Build?
   Product: LibreOffice
   Version: 5.4.0.0.alpha0+ Master
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: libretraining.tutori...@gmail.com

Description:
Which Daily Build is the Correct Windows Daily Build to use for testing?

There are currently 3 downloads available (2 appear to be the same file).

win-x86@39 (w lowercase)
Link: h##p://dev-builds.libreoffice.org/daily/master/win-x86@39/current/
File: master~2017-03-02_01.57.01_LibreOfficeDev_5.4.0.0.alpha0_Win_x86.msi
(140M)

Win-x86@39 (W uppercase)
Link: h##p://dev-builds.libreoffice.org/daily/master/Win-x86@39/current/
File: master~2017-03-02_01.57.01_LibreOfficeDev_5.4.0.0.alpha0_Win_x86.msi
(140M)

Win-x86@42
Link: h##p://dev-builds.libreoffice.org/daily/master/Win-x86@42/current/
File: libo-master~2017-03-02_00.18.28_LibreOfficeDev_5.4.0.0.alpha0_Win_x86.msi
(124M)

The first two appear to be the same file and are bigger than the third file

Which is the correct link/file to use for testing the "Daily Build" for Windows
?



The explanation here is very out of date and not helpful:
Development/Tinderbox
https://wiki.documentfoundation.org/Development/Tinderbox



What are the other directories here which sometime have files available for
Windows?
Why do they only occasionally have files in some of these folders?
http://dev-builds.libreoffice.org/daily/master/



Actual Results:  
N/A

Expected Results:
N/A


Reproducible: Always

User Profile Reset: No

Additional Info:


User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:51.0) Gecko/20100101
Firefox/51.0

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


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

2017-03-02 Thread Khaled Hosny
 vcl/source/gdi/CommonSalLayout.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 100da4fadbab795bf470a2e46790d36a7c46d944
Author: Khaled Hosny 
Date:   Fri Mar 3 00:00:11 2017 +0200

Typo

Change-Id: I63c0fb6ba0884aa1bcb6c72a8a56efc41d183c0a

diff --git a/vcl/source/gdi/CommonSalLayout.cxx 
b/vcl/source/gdi/CommonSalLayout.cxx
index 70cf6fb..220b3b1 100644
--- a/vcl/source/gdi/CommonSalLayout.cxx
+++ b/vcl/source/gdi/CommonSalLayout.cxx
@@ -112,7 +112,7 @@ void CommonSalLayout::getScale(double* nXScale, double* 
nYScale)
 double nHeight(mrFontSelData.mnHeight);
 #if defined(_WIN32)
 // On Windows, mnWidth is relative to average char width not font height,
-// and wee need to keep it that way for GDI to correctly scale the glyphs.
+// and we need to keep it that way for GDI to correctly scale the glyphs.
 // Here we compensate for this so that HarfBuzz gives us the correct glyph
 // positions.
 double nWidth(mrFontSelData.mnWidth ? mrFontSelData.mnWidth * 
mnAveWidthFactor : nHeight);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 71732] [META] Bugs related to text rendering, typography and font features in LO

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

V Stuart Foote  changed:

   What|Removed |Added

 Depends on||106279


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=106279
[Bug 106279] Wrong display of graphite ligatures when running presentation when
openGL enabled
-- 
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 93529] [META] VCL/OpenGL tracker bug for 5.0+

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

V Stuart Foote  changed:

   What|Removed |Added

 Depends on||106279


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=106279
[Bug 106279] Wrong display of graphite ligatures when running presentation when
openGL enabled
-- 
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 106279] Wrong display of graphite ligatures when running presentation when openGL enabled

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

V Stuart Foote  changed:

   What|Removed |Added

 Blocks||71732, 93529, 103729


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=71732
[Bug 71732] [META] Bugs related to text rendering, typography and font features
in LO
https://bugs.documentfoundation.org/show_bug.cgi?id=93529
[Bug 93529] [META] VCL/OpenGL tracker bug for 5.0+
https://bugs.documentfoundation.org/show_bug.cgi?id=103729
[Bug 103729] [META] Tracking HarfBuzz based common text layout regressions
-- 
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 106279] Wrong display of graphite ligatures when running presentation when openGL enabled

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

V Stuart Foote  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||vstuart.fo...@utsa.edu
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=10
   ||3831
 Ever confirmed|0   |1
 OS|All |Windows (All)

--- Comment #1 from V Stuart Foote  ---
Confirmed but for Windows only at this point. 

The Graphite ligatures do look to be mishandled when in presentation mode. But
appear correct on canvas in edit mode.

But the panels shown on the second slide is see also bug 103831

=-testing-=
On Windows 8.1 Ent 64-bit en-US with
Version: 5.3.1.1 (x64)
Build ID: 72fee18f394a980128dc111963f2eefb05998eeb
CPU Threads: 8; OS Version: Windows 6.29; UI Render: GL; Layout Engine: new; 
Locale: en-US (en_US); Calc: group

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


[Libreoffice-bugs] [Bug 103831] Horizontal text scaling doesn' t work correctly when OpenGL is enabled on Windows

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

V Stuart Foote  changed:

   What|Removed |Added

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

-- 
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 101957] Crash when inserting an row in Writer using the context menu (likely GTK2-related)

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

Julien Nabet  changed:

   What|Removed |Added

 CC||serval2...@yahoo.fr

--- Comment #18 from Julien Nabet  ---
On pc Debian x86-64 with LO Debian package 5.2.5.1 + gtk rendering I don't
reproduce this.

Henk: would you have some time to give a try to a 5.2.5 or 5.3.0? (with a brand
new LO profile, see
https://wiki.documentfoundation.org/UserProfile#GNU.2FLinux)

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


[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-5.3' - sc/source

2017-03-02 Thread Marco Cecchetti
 sc/source/ui/unoobj/docuno.cxx |6 +-
 1 file changed, 5 insertions(+), 1 deletion(-)

New commits:
commit 917aac7aa689dc7279ee492e7102d33a9030d929
Author: Marco Cecchetti 
Date:   Wed Mar 1 18:55:11 2017 +0100

LOK: Calc: autocomplete makes view to jump to a different place

We disable auto-complete feature as a workaround.

Change-Id: I25fa7591231836e0673e97fdf2c3ca72ab20e1e4
Reviewed-on: https://gerrit.libreoffice.org/34835
Reviewed-by: Marco Cecchetti 
Tested-by: Marco Cecchetti 

diff --git a/sc/source/ui/unoobj/docuno.cxx b/sc/source/ui/unoobj/docuno.cxx
index ba14902..4f3b627 100644
--- a/sc/source/ui/unoobj/docuno.cxx
+++ b/sc/source/ui/unoobj/docuno.cxx
@@ -1030,11 +1030,15 @@ OUString ScModelObj::getPostIts()
 
 return OUString::fromUtf8(aStream.str().c_str());
 }
-
 void ScModelObj::initializeForTiledRendering(const 
css::uno::Sequence& /*rArguments*/)
 {
 SolarMutexGuard aGuard;
 
+// disable word autocompletion
+ScAppOptions aAppOptions( SC_MOD()->GetAppOptions() );
+aAppOptions.SetAutoComplete(false);
+SC_MOD()->SetAppOptions(aAppOptions);
+
 // show us the text exactly
 ScInputOptions aInputOptions(SC_MOD()->GetInputOptions());
 aInputOptions.SetTextWysiwyg(true);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 106266] Crash upon accessing Slide Master after Slide Transition Sidebar

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

--- Comment #5 from Mark Bourne  ---
For what it's worth, the following line in registrymodifications.xcu seems to
be the culprit:
com.sun.star.drawing.DrawingDocument, DrawPage,
visible, .uno:PageSetupcom.sun.star.presentation.PresentationDocument,
DrawPage, visible, .uno:PageSetupcom.sun.star.drawing.DrawingDocument,
default, visible,
.uno:PageSetupcom.sun.star.presentation.PresentationDocument, default,
visible, .uno:PageSetupcom.sun.star.drawing.DrawingDocument,
HandoutPage, visible,
.uno:PageSetupcom.sun.star.presentation.PresentationDocument,
HandoutPage, visible,
.uno:PageSetupcom.sun.star.drawing.DrawingDocument, NotesPage,
visible, .uno:PageSetupcom.sun.star.presentation.PresentationDocument,
NotesPage, visible,
.uno:PageSetupcom.sun.star.drawing.DrawingDocument, SlidesorterPage,
visible, .uno:PageSetupcom.sun.star.presentation.PresentationDocument,
SlidesorterPage, visible, .uno:PageSetup

In particular, the presence of following item within that line:
com.sun.star.presentation.PresentationDocument, DrawPage, visible,
.uno:PageSetup

Removing that item prevents the crash.

Could this be an issue with migrating the profile from an older version to a
newer version following an upgrade?

-- 
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 67352] Editing: Permit to change cell width/height on protected cell

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

Johnny_M  changed:

   What|Removed |Added

 CC||kla...@partyheld.de

--- Comment #2 from Johnny_M  ---
(In reply to piviul from comment #1)
> I have changed the status again in new: why you changed it in unconfirmed?
> Do you mean that you can change column or row dimension in a protect sheet?
> 
> Piviul

Hi Paviul,
No, I haven't tested it. I changed it because a bug normally starts as
"UNCONFIRMED". It's later changed to "NEW" when someone tests it (with the
current master code branch) and confirms it (usually the members of the QA
team). They check the "UNCONFIRMED" bugs and request for missing information,
etc. (Like, e.g, the copy-paste of the content of the menu Help -> About
Libreoffice.) Or, if it's not a bug, the may point out what's wrong with the
reported use case.

-- 
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 106285] Sifr list box icon edges not transparent

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

--- Comment #1 from Thomas Lendo  ---
Created attachment 131587
  --> https://bugs.documentfoundation.org/attachment.cgi?id=131587=edit
Formatting toolbar Sifr icons with a dark theme

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

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


[Libreoffice-bugs] [Bug 106285] New: Sifr list box icon edges not transparent

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

Bug ID: 106285
   Summary: Sifr list box icon edges not transparent
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: thomas.le...@gmail.com

The edges of the arrow area of Sifr list box icons (e.g. in the Formatting
toolbar of Writer) are not transparent which make look these icons unlovely
when using dark themes.

-- 
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 106265] Scrolling Font list with previews makes LO crash with either default GDI or OpenGL rendering enabled

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

--- Comment #9 from Lynne Connolly  ---
The card is an Nvidia Geforce 960, with a 4gb memory. It automatically updates
so it's currently using the 14th Feb update. It copes smoothly with the demands
Photoshop puts on it, including the fonts, so I don't think it's that.
I have gone through my font list and cut it down to 1800 active (I moved the
ones I don't use very often into another file) and the problem seems to have
stopped.
Still, I'd have thought LO could have coped with 2200, which is what I had
before.

I've recently returned to LO, and I find it much improved with version 5.0,
although of course there are a few things I'd love to see! (a tabbed
interface!)

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


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

2017-03-02 Thread Caolán McNamara
 tools/source/stream/stream.cxx |8 +++-
 1 file changed, 7 insertions(+), 1 deletion(-)

New commits:
commit 9e74b1b3be096ae6fb937cbf1f382e96a33d8b1e
Author: Caolán McNamara 
Date:   Thu Mar 2 20:40:44 2017 +

readonly SvMemoryStream shouldn't allow resize

Change-Id: I4cd1969cc961d48f904460371ab0a0f960bdea1e
Reviewed-on: https://gerrit.libreoffice.org/34832
Reviewed-by: Caolán McNamara 
Tested-by: Caolán McNamara 

diff --git a/tools/source/stream/stream.cxx b/tools/source/stream/stream.cxx
index d9e99b4..fa69f58 100644
--- a/tools/source/stream/stream.cxx
+++ b/tools/source/stream/stream.cxx
@@ -1830,7 +1830,7 @@ bool SvMemoryStream::AllocateMemory( std::size_t nNewSize 
)
 // (using Bozo algorithm)
 bool SvMemoryStream::ReAllocateMemory( long nDiff )
 {
-if (!bOwnsData)
+if (!m_isWritable || !bOwnsData)
 return false;
 
 bool bRetVal= false;
@@ -1916,6 +1916,12 @@ void* SvMemoryStream::SwitchBuffer()
 
 void SvMemoryStream::SetSize(sal_uInt64 const nNewSize)
 {
+if (!m_isWritable)
+{
+SetError(SVSTREAM_INVALID_HANDLE);
+return;
+}
+
 long nDiff = (long)nNewSize - (long)nSize;
 ReAllocateMemory( nDiff );
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 106284] Sifr icon for "save/save as" not shown as other activated icons

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

--- Comment #1 from Thomas Lendo  ---
Created attachment 131586
  --> https://bugs.documentfoundation.org/attachment.cgi?id=131586=edit
Standard toolbar Sifr icons with a dark theme

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

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


Baseline bump to MSVC 2015 Update 3

2017-03-02 Thread David Ostrovsky
On Thu Mar 2 20:53:46 UTC 2017 Caolán McNamara wrote:

>>On Thu, 2017-03-02 at 17:02 +0100, Stephan Bergmann wrote:
>>[...]
>
>That means that _MSC_VER is always >= 1900 (?), I presume, outside of
>the headers exposed through the sdk, that means we can remove the
>ifdef branches that support earlier versions of that now ?

Yes, but please check first what is already pending for review: [1].

* [1] https://gerrit.libreoffice.org/#/q/topic:toolchain-cleanup
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 106284] New: Sifr icon for "save/save as" not shown as other activated icons

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

Bug ID: 106284
   Summary: Sifr icon for "save/save as" not shown as other
activated icons
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: thomas.le...@gmail.com

If there is an unsaved content, the Sifr icon for "save/save as.../export..."
is not shown as other activated icons in the toolbar in dark themes. The icon
itself is bright highlighted but looks "cut" at the edges and not smooth like
icons with activated status like spell checker or left alignment of paragraphs.

I know that the "save/save as" icon is different from the other icons I
mentioned, nevertheless it should look more excellent as the other icons of the
excellent Sifr icon theme do.

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


Baseline bump to MSVC 2015 Update 3

2017-03-02 Thread David Ostrovsky
On Thu Mar 2 16:02:30 UTC 2017 Stephan Bergmann wrote:

>As has been brewing for some time and just got accepted in today's ESC
>meeting, we'll bump master (towards LO 5.4) to MSVC 2015 Update 3 as 
>basline for MSVC builds on Windows.

Thanks!

>* The wiki developer documentation will likely need updating.  Any 
>volunteers?

Done.

>* Noteworthy improvements this brings to us regarding C++11-and-beyond
>support is that HAVE_CXX11_CONSTEXPR and HAVE_UTF16_STRING_LITERAL 
>should now always be true.

I would also add python de-duplication and shipping the same python
version 3.5.3 on all platforms (duplication was needed, as Python 3.5.x
abandoned support for msvc 2013 and only supported msvc 2015).

It worth also noting that there is substantial performance benefit for
debug build, once /debug:fastlink support CL is merged: [1].

* [1] https://gerrit.libreoffice.org/34330

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


[Libreoffice-bugs] [Bug 106280] Crash if I open the Image dialog and click the 'Crop' tab ( gtk3)

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

Julien Nabet  changed:

   What|Removed |Added

 CC||caol...@redhat.com

--- Comment #7 from Julien Nabet  ---
Caolán: thought you might be interested in this one since it's specific to
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 106252] 'Precision as shown' does not work with engineering notation

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

Laurent BP  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|libreoffice-b...@lists.free |jumbo4...@yahoo.fr
   |desktop.org |

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


[Libreoffice-bugs] [Bug 106280] Crash if I open the Image dialog and click the 'Crop' tab ( gtk3)

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

--- Comment #6 from Julien Nabet  ---
Since I did a "make clean", profile was brand new.
(git commit I used: a5c947579253a7f4e784004e18929af5ab22fa28)

-- 
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 106280] Crash if I open the Image dialog and click the 'Crop' tab ( gtk3)

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

Julien Nabet  changed:

   What|Removed |Added

Summary|Crash if I open the Image   |Crash if I open the Image
   |dialog and click the 'Crop' |dialog and click the 'Crop'
   |tab |tab (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 106280] Crash if I open the Image dialog and click the 'Crop' tab

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

Julien Nabet  changed:

   What|Removed |Added

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

2017-03-02 Thread Caolán McNamara
 tools/source/stream/stream.cxx |3 +++
 1 file changed, 3 insertions(+)

New commits:
commit 74d20cc4c3346398c17f4f4ece7e462363f71868
Author: Caolán McNamara 
Date:   Thu Mar 2 20:39:12 2017 +

ReAllocateMemory mustn't delete data it doesn't own

Change-Id: I09725cd21973ace1aab22de17bdae2023a739212
Reviewed-on: https://gerrit.libreoffice.org/34831
Reviewed-by: Caolán McNamara 
Tested-by: Caolán McNamara 

diff --git a/tools/source/stream/stream.cxx b/tools/source/stream/stream.cxx
index 99a4d22..d9e99b4 100644
--- a/tools/source/stream/stream.cxx
+++ b/tools/source/stream/stream.cxx
@@ -1830,6 +1830,9 @@ bool SvMemoryStream::AllocateMemory( std::size_t nNewSize 
)
 // (using Bozo algorithm)
 bool SvMemoryStream::ReAllocateMemory( long nDiff )
 {
+if (!bOwnsData)
+return false;
+
 bool bRetVal= false;
 long nTemp  = (long)nSize;
 nTemp   += nDiff;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 106280] Crash if I open the Image dialog and click the 'Crop' tab

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

Julien Nabet  changed:

   What|Removed |Added

 CC||serval2...@yahoo.fr

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

On pc Debian x86-64 with master sources updated today + enable-dbgutil, I could
reproduce this.

Remark: I only reproduce this with gtk3 rendering.
I don't reproduce this with gtk/kde4/gen rendering.

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