[Libreoffice-bugs] [Bug 88593] New: Significant numbers omitted with some column widths

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

Bug ID: 88593
   Summary: Significant numbers omitted with some column widths
   Product: LibreOffice
   Version: 4.3.4.1 release
  Hardware: x86-64 (AMD64)
OS: Mac OS X (All)
Status: UNCONFIRMED
  Severity: critical
  Priority: medium
 Component: Spreadsheet
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: matti.hav...@gmail.com

Created attachment 112490
  -- https://bugs.freedesktop.org/attachment.cgi?id=112490action=edit
screenshot and the .ods file

(See the attached screenshot and the .ods file)

The correct calculated value (in red) should be:

3551,6282571 (this is correctly shown in the format dialog)

...but depending on the column width (!) it is displayed in the spreadsheet as:

1,6283 (notice that the first numbers 355 are omitted)

...or depending on the column width with some other wrong value.

Using some narrower or wider column width displays the correct value in the
spreadsheet.

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


[Libreoffice-commits] core.git: Branch 'libreoffice-4-4' - include/vcl sd/source vcl/osx vcl/win

2015-01-19 Thread Caolán McNamara
 include/vcl/cmdevt.hxx   |   28 ++--
 sd/source/ui/app/sdmod1.cxx  |8 +---
 sd/source/ui/slideshow/slideshowimpl.cxx |7 ++-
 vcl/osx/salinst.cxx  |3 ++-
 vcl/win/source/window/salframe.cxx   |   13 +++--
 5 files changed, 38 insertions(+), 21 deletions(-)

New commits:
commit 45cf94410091478a09cc1eadc1b5510a5548ad15
Author: Caolán McNamara caol...@redhat.com
Date:   Thu Jan 15 11:10:03 2015 +

Resolves: fdo#32664 pass keyboard media keys through to the OS

if we didn't make use of them.

(cherry picked from commit 508c020cf5f7999f0c23d972133f9b6bf85de245)

Conflicts:
sw/source/uibase/docvw/edtwin.cxx
vcl/osx/salinst.cxx
vcl/win/source/window/salframe.cxx

Change-Id: Iee1c2fef5966a614b068c832bf8c6b51973b4c8a
Reviewed-on: https://gerrit.libreoffice.org/13993
Reviewed-by: Eike Rathke er...@redhat.com
Reviewed-by: Caolán McNamara caol...@redhat.com
Tested-by: Caolán McNamara caol...@redhat.com

diff --git a/include/vcl/cmdevt.hxx b/include/vcl/cmdevt.hxx
index 439e969..623356b 100644
--- a/include/vcl/cmdevt.hxx
+++ b/include/vcl/cmdevt.hxx
@@ -270,10 +270,7 @@ class VCL_DLLPUBLIC CommandDialogData
 int GetDialogId() const { return m_nDialogId; }
 };
 
-
 // Media Commands
-
-
 #define MEDIA_COMMAND_CHANNEL_DOWN   ((sal_Int16)1) // Decrement the 
channel value, for example, for a TV or radio tuner.
 #define MEDIA_COMMAND_CHANNEL_UP ((sal_Int16)2) // Increment the 
channel value, for example, for a TV or radio tuner.
 #define MEDIA_COMMAND_NEXTTRACK  ((sal_Int16)3) // Go to next 
media track/slide.
@@ -297,11 +294,22 @@ class VCL_DLLPUBLIC CommandDialogData
 #define MEDIA_COMMAND_NEXTTRACK_HOLD ((sal_Int16)21)// Button Right 
holding pressed.
 #define MEDIA_COMMAND_PREVIOUSTRACK_HOLD ((sal_Int16)22)// Button Left 
holding pressed.
 
-
+class VCL_DLLPUBLIC CommandMediaData
+{
+sal_Int16 m_nMediaId;
+bool m_bPassThroughToOS;
+public:
+CommandMediaData(sal_Int16 nMediaId)
+: m_nMediaId(nMediaId)
+, m_bPassThroughToOS(true)
+{
+}
+sal_Int16 GetMediaId() const { return m_nMediaId; }
+void SetPassThroughToOS(bool bPassThroughToOS) { m_bPassThroughToOS = 
bPassThroughToOS; }
+bool GetPassThroughToOS() const { return m_bPassThroughToOS; }
+};
 
 // - CommandSelectionChangeData -
-
-
 class VCL_DLLPUBLIC CommandSelectionChangeData
 {
 private:
@@ -377,7 +385,7 @@ public:
 const CommandScrollData*GetAutoScrollData() const;
 const CommandModKeyData*GetModKeyData() const;
 const CommandDialogData*GetDialogData() const;
-sal_Int16   GetMediaCommand() const;
+  CommandMediaData* GetMediaData() const;
 const CommandSelectionChangeData*   GetSelectionChangeData() const;
 };
 
@@ -445,12 +453,12 @@ inline const CommandDialogData* 
CommandEvent::GetDialogData() const
 return NULL;
 }
 
-inline sal_Int16 CommandEvent::GetMediaCommand() const
+inline CommandMediaData* CommandEvent::GetMediaData() const
 {
 if( mnCommand == COMMAND_MEDIA )
-return *(const sal_Int16*)(mpData);
+return (CommandMediaData*)(mpData);
 else
-return 0;
+return NULL;
 }
 
 inline const CommandSelectionChangeData* 
CommandEvent::GetSelectionChangeData() const
diff --git a/sd/source/ui/app/sdmod1.cxx b/sd/source/ui/app/sdmod1.cxx
index a4aff4d..9f18bf5 100644
--- a/sd/source/ui/app/sdmod1.cxx
+++ b/sd/source/ui/app/sdmod1.cxx
@@ -428,7 +428,9 @@ IMPL_LINK( SdModule, EventListenerHdl, VclSimpleEvent*, 
pEvent )
 
 if( rEvent.GetCommand() == COMMAND_MEDIA )
 {
-switch( rEvent.GetMediaCommand() )
+CommandMediaData* pMediaData = rEvent.GetMediaData();
+pMediaData-SetPassThroughToOS(false);
+switch (pMediaData-GetMediaId())
 {
 case MEDIA_COMMAND_PLAY:
 {
@@ -441,10 +443,10 @@ IMPL_LINK( SdModule, EventListenerHdl, VclSimpleEvent*, 
pEvent )
 if( pViewShell  (pDocShell-GetDocumentType() == 
DOCUMENT_TYPE_IMPRESS) )
 
pViewShell-GetViewFrame()-GetDispatcher()-Execute( SID_PRESENTATION );
 }
-}
 break;
-
+}
 default:
+pMediaData-SetPassThroughToOS(true);
 break;
 }
 }
diff --git a/sd/source/ui/slideshow/slideshowimpl.cxx 
b/sd/source/ui/slideshow/slideshowimpl.cxx
index 40c62cf..1566a82 100644
--- a/sd/source/ui/slideshow/slideshowimpl.cxx
+++ b/sd/source/ui/slideshow/slideshowimpl.cxx
@@ -2001,7 +2001,9 @@ IMPL_LINK( SlideshowImpl, EventListenerHdl, 
VclSimpleEvent*, pEvent )
 
 if( rEvent.GetCommand() == COMMAND_MEDIA )
 

[Bug 32664] Keyboard volume keys don't work when LibreOffice is in focus

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

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

http://cgit.freedesktop.org/libreoffice/core/commit/?id=45cf94410091478a09cc1eadc1b5510a5548ad15h=libreoffice-4-4

Resolves: fdo#32664 pass keyboard media keys through to the OS

It will be available in 4.4.1.

The patch should be included in the daily builds available at
http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
http://wiki.documentfoundation.org/Testing_Daily_Builds
Affected users are encouraged to test the fix and report feedback.

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


[Bug 32664] Keyboard volume keys don't work when LibreOffice is in focus

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

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

   What|Removed |Added

 Whiteboard| target:4.5.0   | target:4.5.0 target:4.4.1

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


[Libreoffice-bugs] [Bug 82688] ODBC to SQLite3, table Design View does not offer Primary Key

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

Alex Thurgood ipla...@yahoo.co.uk changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 88591] CONNECTING: ODBC Wants SQLite2, Cannot Connect to SQLite3 .db

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

Alex Thurgood ipla...@yahoo.co.uk changed:

   What|Removed |Added

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

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


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

2015-01-19 Thread Caolán McNamara
 sw/source/core/doc/docredln.cxx |   26 ++
 1 file changed, 22 insertions(+), 4 deletions(-)

New commits:
commit 201e1813cef4059944c2d3e31b3e7dd5e88dbf6a
Author: Caolán McNamara caol...@redhat.com
Date:   Mon Jan 19 12:09:17 2015 +

if we change the keys we have to resort based on the new keys

Change-Id: Ied95c2d1490554d9ba5402c936a9720c8a325771
(cherry picked from commit 36e158ce7a0effb130936ba4598a193102faa6a1)
Reviewed-on: https://gerrit.libreoffice.org/14009
Tested-by: David Tardon dtar...@redhat.com
Reviewed-by: David Tardon dtar...@redhat.com

diff --git a/sw/source/core/doc/docredln.cxx b/sw/source/core/doc/docredln.cxx
index 62b1f7d..e42cbe3 100644
--- a/sw/source/core/doc/docredln.cxx
+++ b/sw/source/core/doc/docredln.cxx
@@ -1336,6 +1336,8 @@ void SwRangeRedline::MoveFromSection()
 SwDoc* pDoc = GetDoc();
 const SwRedlineTbl rTbl = 
pDoc-getIDocumentRedlineAccess().GetRedlineTbl();
 std::vectorSwPosition* aBeforeArr, aBehindArr;
+typedef std::mapsal_uInt16, SwRangeRedline* IndexAndRange;
+IndexAndRange aIndexAndRangeMap;
 sal_uInt16 nMyPos = rTbl.GetPos( this );
 OSL_ENSURE( this, this is not in the array? );
 bool bBreak = false;
@@ -1346,12 +1348,16 @@ void SwRangeRedline::MoveFromSection()
 bBreak = true;
 if( rTbl[ n ]-GetBound(true) == *GetPoint() )
 {
-aBehindArr.push_back( rTbl[ n ]-GetBound(true) );
+SwRangeRedline* pRedl = rTbl[n];
+aBehindArr.push_back(pRedl-GetBound(true));
+aIndexAndRangeMap.insert(std::make_pair(n, pRedl));
 bBreak = false;
 }
 if( rTbl[ n ]-GetBound(false) == *GetPoint() )
 {
-aBehindArr.push_back( rTbl[ n ]-GetBound(false) );
+SwRangeRedline* pRedl = rTbl[n];
+aBehindArr.push_back(pRedl-GetBound(false));
+aIndexAndRangeMap.insert(std::make_pair(n, pRedl));
 bBreak = false;
 }
 }
@@ -1361,12 +1367,16 @@ void SwRangeRedline::MoveFromSection()
 bBreak = true;
 if( rTbl[ n ]-GetBound(true) == *GetPoint() )
 {
-aBeforeArr.push_back( rTbl[ n ]-GetBound(true) );
+SwRangeRedline* pRedl = rTbl[n];
+aBeforeArr.push_back(pRedl-GetBound(true));
+aIndexAndRangeMap.insert(std::make_pair(n, pRedl));
 bBreak = false;
 }
 if( rTbl[ n ]-GetBound(false) == *GetPoint() )
 {
-aBeforeArr.push_back( rTbl[ n ]-GetBound(false) );
+SwRangeRedline* pRedl = rTbl[n];
+aBeforeArr.push_back(pRedl-GetBound(false));
+aIndexAndRangeMap.insert(std::make_pair(n, pRedl));
 bBreak = false;
 }
 }
@@ -1420,6 +1430,7 @@ void SwRangeRedline::MoveFromSection()
 if( pColl  pCNd )
 pCNd-ChgFmtColl( pColl );
 }
+
 // #i95771#
 // Under certain conditions the previous SwDoc::Move(..) has already
 // removed the change tracking section of this SwRangeRedline 
instance from
@@ -1440,6 +1451,13 @@ void SwRangeRedline::MoveFromSection()
 *aBeforeArr[ n ] = *Start();
 for( n = 0; n  aBehindArr.size(); ++n )
 *aBehindArr[ n ] = *End();
+SwRedlineTbl rResortTbl = const_castSwRedlineTbl(rTbl);
+for (auto a : aIndexAndRangeMap)
+{
+// re-insert
+rResortTbl.Remove(a.first);
+rResortTbl.Insert(a.second);
+}
 }
 else
 InvalidateRange();
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 80680] SOLVER crashing CALC under Windows

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

--- Comment #5 from Alex Thurgood ipla...@yahoo.co.uk ---
Confirming also on OSX 10.10.1


How to reproduce

1) Open an empty Calc document
2) Navigate to Tools  Solver
3) Spinning beachball appears, leading to sudden window closure SIGABRT

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


[Libreoffice-bugs] [Bug 88551] Event Text modified happens in tablecontrol while navigating through form without modifying anything

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

--- Comment #2 from rob...@familiegrosskopf.de ---
Same buggy behavior if Text modified is linked to a numeric field or a
formatted field.

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


[Libreoffice-bugs] [Bug 83309] .docx displayed incorrectly

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

Timur gti...@gmail.com changed:

   What|Removed |Added

 CC||gti...@gmail.com
Version|4.2.6.2 release |3.6.0.4 release

--- Comment #11 from Timur gti...@gmail.com ---
(In reply to Beluga from comment #3)
 Set to NEW and tweaked severity 
Please do not confirm reports with multiple problems such as file displayed
incorrectly. Each problem should be reported separately.
I suggest this bug be only for indentation/tab stops (with title updated) and
other problems searched and reported separately.

(In reply to Dave Richards from comment #6)
 What I am seeing is that something in the front of each line is being viewed
 as a tab stop which is bumping the text out into the tab position.  Older
 versions of LO seem to handle this document better.  Newer versions of LO
 seem to get worse and worse in regards to this specific document.  I am
 closing in on a bibisect.
Since 3.5.7.2 handles this document better, I'll change Version to 3.6.0.4
because tab stops started there.

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


[Libreoffice-commits] core.git: Branch 'libreoffice-4-4-0' - sw/source

2015-01-19 Thread Michael Stahl
 sw/source/filter/ww8/ww8par6.cxx |3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

New commits:
commit b4d4093c68ccc948379f13690e00f787d9f02c09
Author: Michael Stahl mst...@redhat.com
Date:   Mon Jan 12 20:02:29 2015 +0100

sw: fdo#88005: fix check in SwWW8ImplReader::StopApo()

404f16e97f1c2fcd8f9a1297bdfa46cba970467e is embarrassing crap; the real
problem there is that the paragraph that should be removed is _inside_
the frame, but in sf_68e4f217c107f6eada21adfe6e3c9c57-82055-minimized.doc
the MoveInsideFly() is not called so a non-empty body paragraph was removed.

Change-Id: I5d4443804c52a5fa30ddb51609ccbbee07abc5aa
(cherry picked from commit e71668c4e642cc497206bfbe7191f64bddf31db0)
Reviewed-on: https://gerrit.libreoffice.org/13884
Reviewed-by: Caolán McNamara caol...@redhat.com
Tested-by: Caolán McNamara caol...@redhat.com
(cherry picked from commit 45722714be0abfb3ccb0b4dcbecaaaed98094343)
Reviewed-on: https://gerrit.libreoffice.org/14002
Reviewed-by: David Tardon dtar...@redhat.com

diff --git a/sw/source/filter/ww8/ww8par6.cxx b/sw/source/filter/ww8/ww8par6.cxx
index b46ec7d..758c292 100644
--- a/sw/source/filter/ww8/ww8par6.cxx
+++ b/sw/source/filter/ww8/ww8par6.cxx
@@ -2477,8 +2477,7 @@ void SwWW8ImplReader::StopApo()
 Color aBg(0xFE, 0xFF, 0xFF, 0xFF);  //Transparent by default
 
 SwTxtNode* pNd = aPref.GetNode().GetTxtNode();
-if (pNd  pPaM-GetPoint()-nNode.GetNode()
-!= pSFlyPara-pMainTextPos-nNode.GetNode())
+if (pNd  pSFlyPara-pFlyFmt)
 {
 /*
 #i582#
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2015-01-19 Thread Lionel Elie Mamane
 svtools/source/brwbox/brwbox2.cxx |2 ++
 1 file changed, 2 insertions(+)

New commits:
commit 5a17dd94ed0aca6cefbe1d44cd0a9aed74d1ff21
Author: Lionel Elie Mamane lio...@mamane.lu
Date:   Fri Jan 16 17:08:07 2015 +0100

fdo#88475 BrowseBox/grid: reposition data cursor to current row after paint

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

diff --git a/svtools/source/brwbox/brwbox2.cxx 
b/svtools/source/brwbox/brwbox2.cxx
index ef9a6d4..eacb2a8 100644
--- a/svtools/source/brwbox/brwbox2.cxx
+++ b/svtools/source/brwbox/brwbox2.cxx
@@ -1031,6 +1031,8 @@ void BrowseBox::ImplPaintData(OutputDevice _rOut, const 
Rectangle _rRect, bool
 }
 }
 
+OSL_ENSURE(SeekRow(nCurRow), BrowseBox::ImplPaintData could not seek back 
to current row after paint);
+
 if (aPos.Y()  aOverallAreaBRPos.Y() + 1)
 aPos.Y() = aOverallAreaBRPos.Y() + 1;
 // needed for some of the following drawing
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 88576] functions IFNA and IFERROR second argument

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

Winfried Donkers winfrieddonk...@libreoffice.org changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #3 from Winfried Donkers winfrieddonk...@libreoffice.org ---
Calc's IFERROR and IFNA function use the same code. The code does not check the
number of arguments.
Neither does the code use an empty string as second argument when not given (as
is the case with the Excel functions IFERROR and IFNA).

I set the status to new.

I suggest we use the Excel behaviour in Calc too, and put this as an
OpenFormula extension in the wiki
(https://wiki.documentfoundation.org/Development/ODF_Implementer_Notes/List_of_LibreOffice_OpenFormula_Extensions).

Eike, Raal, do you agree?

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


[Libreoffice-bugs] [Bug 80680] SOLVER crashing CALC

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

Alex Thurgood ipla...@yahoo.co.uk changed:

   What|Removed |Added

Summary|SOLVER crashing CALC under  |SOLVER crashing CALC
   |Windows |

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


[Libreoffice-bugs] [Bug 80680] SOLVER crashing CALC under Windows

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

Alex Thurgood ipla...@yahoo.co.uk changed:

   What|Removed |Added

 OS|Windows (All)   |All

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


[Libreoffice-bugs] [Bug 61667] EDITING: saving in MS Word docx

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

--- Comment #22 from Timur gti...@gmail.com ---
After reading, it's not clear what this bug is about. Each problem should be
first searched for. For example, for images, there are Bug 37315 to Bug 77794,
multiple bugs with EMF/WMF, etc. 
If bugs don't exist, they should be reported separately, even if they happen
with the same file. Please test with current LO versions.

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


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

2015-01-19 Thread Niklas Johansson
 sw/source/uibase/shells/textsh1.cxx |4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

New commits:
commit 7d6ddf18e6266825eb2aef47b41a461a5ac0baa6
Author: Niklas Johansson sleeping.pil...@gmail.com
Date:   Thu Jan 15 14:43:21 2015 +0100

fdo#86844 - CONTEXT MENU: Remove hyperlink not accessible

At the moment Remove hyperlink is only shown when text is selected
together with a hyperlink but not when you right click directly on
a link. Let's reuse the logic from when edit hyperlink should be shown
and append it to the currently working case where text and link is
selected.

Change-Id: I2524f1c3037f3101d24e592eadf2e7d5d66ab4f9
Reviewed-on: https://gerrit.libreoffice.org/13926
Tested-by: Jenkins c...@libreoffice.org
Reviewed-by: Caolán McNamara caol...@redhat.com
Tested-by: Caolán McNamara caol...@redhat.com
(cherry picked from commit 4f4dcd527ee4ef7365389b5a70d0f199263628e7)
Reviewed-on: https://gerrit.libreoffice.org/13950

diff --git a/sw/source/uibase/shells/textsh1.cxx 
b/sw/source/uibase/shells/textsh1.cxx
index 51d9a9d..b4e8450 100644
--- a/sw/source/uibase/shells/textsh1.cxx
+++ b/sw/source/uibase/shells/textsh1.cxx
@@ -1674,7 +1674,9 @@ void SwTextShell::GetState( SfxItemSet rSet )
 rSh.GetCurAttr(aSet);
 
 // If a hyperlink is selected, either alone or along with 
other text...
-if(aSet.GetItemState( RES_TXTATR_INETFMT, true ) != 
SfxItemState::DONTCARE || rSh.HasReadonlySel())
+if ((aSet.GetItemState(RES_TXTATR_INETFMT, true)  
SfxItemState::SET 
+aSet.GetItemState(RES_TXTATR_INETFMT, true) != 
SfxItemState::DONTCARE) ||
+rSh.HasReadonlySel())
 {
 rSet.DisableItem(nWhich);
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 88591] CONNECTING: ODBC Wants SQLite2, Cannot Connect to SQLite3 .db

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

--- Comment #1 from Alex Thurgood ipla...@yahoo.co.uk ---
See bug 82688 for a hint that connections to sqlite3 dbs actually work via
ODBC, in particular with libsqliteodbc 0.992-2 on Debain.

The issue you are having may be specific to your OS and libsqliteodbc version.

From memory, an ODBC connection from Base to libsqlite3 db works for me on
Linux Mint 17

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


[Libreoffice-bugs] [Bug 77417] FILEOPEN: incorrect conversion of docx paragraph spacing details

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

Timur gti...@gmail.com changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 77960] FILEOPEN: DOCX incorrect line and paragraph spacing

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

Timur gti...@gmail.com changed:

   What|Removed |Added

 CC||gti...@gmail.com
   See Also||https://bugs.freedesktop.or
   ||g/show_bug.cgi?id=77417

--- Comment #7 from Timur gti...@gmail.com ---
Looks to me that LO 4.5.0.0.alpha0+ 2015-01-19 sets the same spacing as LO
4.3.5.2, while LO 4.4.0.2 is different. Strange because 4.4.0 seems fine. I
cannot verify with MS because it's showing points. 
Example: 
Paragraph - title: LO 4.3.5.2: above 0,49 cm, below 0,49 cm; LO 4.4.0.2: above
0,90 cm, below 0,90 cm; LO 4.5.0.0.alpha0+ 2015-01-19: above 0,49 cm, below
0,49 cm

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


[Libreoffice-bugs] [Bug 80680] SOLVER crashing CALC under Windows

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

--- Comment #6 from Alex Thurgood ipla...@yahoo.co.uk ---
Tested on master 4500alpha OSX 10.10.1


Enclosing Apple call trace

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


[Libreoffice-bugs] [Bug 88594] New: LOCALHELP: LibreOffice compiled Help F1 crashing session

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

Bug ID: 88594
   Summary: LOCALHELP: LibreOffice compiled Help F1 crashing
session
   Product: LibreOffice
   Version: 4.5.0.0.alpha0+ Master
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Libreoffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: vstuart.fo...@utsa.edu

On Windows 7 sp1, 64-bit en-US with /A administrative install of

Version: 4.5.0.0.alpha0+
Build ID: 07e84cae983c08afdba03018413a19d01abb3006
TinderBox: Win-x86@62-TDF, Branch:MASTER, Time: 2015-01-19_06:15:38
Locale: en_US

using current TB62 installers
master~2015-01-19_06.15.38_LibreOfficeDev_4.5.0.0.alpha0_Win_x86_en-US_de_ar_ja_ru_qtz.msi
master~2015-01-19_06.15.38_LibreOfficeDev_4.5.0.0.alpha0_Win_x86_helppack_en-US.msi

Launch help with F1, or main menu Help - LibreOffice Help, is immediately
crashing session, with cycle through recovery.  No substantive error message.

Multiple download of installers--get matching MD5/SHA256 for all attempts.

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


[Libreoffice-bugs] [Bug 82604] FORMATTING: Underlining exceeds paragraph mark

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

Beluga todven...@suomi24.fi changed:

   What|Removed |Added

 CC||todven...@suomi24.fi

--- Comment #7 from Beluga todven...@suomi24.fi ---
Could reproduce with Windows, but not with Linux.

Win 7 Pro 64-bit, LibO Version: 4.3.6.1
BuildID: 9629686a67dd1f357477c13325e45a66f3452bb9

Version: 4.5.0.0.alpha0+
Build ID: 5f6bdce0c0ac687f418821ce328f2987bf340cda
TinderBox: Win-x86@62-TDF, Branch:MASTER, Time: 2015-01-17_01:06:46

Ubuntu 14.10 64-bit Version: 4.5.0.0.alpha0+
Build ID: 0ffa3abc7d6c0437ece30cfb1430d28ffcc9f5c1
TinderBox: Linux-rpm_deb-x86_64@46-TDF-dbg, Branch:master, Time:
2015-01-15_22:47:16

Version: 4.3.3.2
Build ID: 430m0(Build:2)

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


[Libreoffice-commits] core.git: Branch 'libreoffice-4-4-0' - sw/qa writerfilter/source

2015-01-19 Thread Michael Stahl
 sw/qa/extras/ooxmlimport/data/rhbz1180114.docx|binary
 sw/qa/extras/ooxmlimport/ooxmlimport.cxx  |5 +
 writerfilter/source/dmapper/DomainMapper.cxx  |6 ++
 writerfilter/source/dmapper/DomainMapper_Impl.cxx |3 ++-
 writerfilter/source/ooxml/model.xml   |   16 
 5 files changed, 29 insertions(+), 1 deletion(-)

New commits:
commit 96b158a5849356cf4de974ce5847b277b3d1b130
Author: Michael Stahl mst...@redhat.com
Date:   Wed Jan 14 23:01:41 2015 +0100

rhbz#1180114: writerfilter: don't crash on w:customXmlDelRangeStart etc.

We can't do anything sensible with these CustomXML elements but now we
have to handle them because.

(regression from 9dbf817fe5c5253fba0831aefa17575ae0ba3af1)

Change-Id: If4247890ff9961a77434587802670d28608a7922
(cherry picked from commit f22964e0e622af1168e241f933e5cf98e093ec2b)
Reviewed-on: https://gerrit.libreoffice.org/13913
Reviewed-by: Caolán McNamara caol...@redhat.com
Tested-by: Caolán McNamara caol...@redhat.com
(cherry picked from commit 42c261a9e459408653dd5dae548dcc5ba619cef1)
Reviewed-on: https://gerrit.libreoffice.org/13998
Reviewed-by: David Tardon dtar...@redhat.com

diff --git a/sw/qa/extras/ooxmlimport/data/rhbz1180114.docx 
b/sw/qa/extras/ooxmlimport/data/rhbz1180114.docx
new file mode 100644
index 000..23009eb
Binary files /dev/null and b/sw/qa/extras/ooxmlimport/data/rhbz1180114.docx 
differ
diff --git a/sw/qa/extras/ooxmlimport/ooxmlimport.cxx 
b/sw/qa/extras/ooxmlimport/ooxmlimport.cxx
index 27fe3d6..471095c 100644
--- a/sw/qa/extras/ooxmlimport/ooxmlimport.cxx
+++ b/sw/qa/extras/ooxmlimport/ooxmlimport.cxx
@@ -744,6 +744,11 @@ DECLARE_OOXMLIMPORT_TEST(testN779834, n779834.docx)
 // This document simply crashed the importer.
 }
 
+DECLARE_OOXMLIMPORT_TEST(testRHBZ1180114, rhbz1180114.docx)
+{
+// This document simply crashed the importer.
+}
+
 DECLARE_OOXMLIMPORT_TEST(testN779627, n779627.docx)
 {
 /*
diff --git a/writerfilter/source/dmapper/DomainMapper.cxx 
b/writerfilter/source/dmapper/DomainMapper.cxx
index 8d4f548..ad477c5 100644
--- a/writerfilter/source/dmapper/DomainMapper.cxx
+++ b/writerfilter/source/dmapper/DomainMapper.cxx
@@ -2196,6 +2196,12 @@ void DomainMapper::sprmWithProps( Sprm rSprm, 
PropertyMapPtr rContext )
 case NS_ooxml::LN_CT_PPr_pPrChange:
 case NS_ooxml::LN_trackchange:
 case NS_ooxml::LN_EG_RPrContent_rPrChange:
+case NS_ooxml::LN_EG_RangeMarkupElements_customXmlDelRangeStart:
+case NS_ooxml::LN_EG_RangeMarkupElements_customXmlDelRangeEnd:
+case NS_ooxml::LN_EG_RangeMarkupElements_customXmlMoveFromRangeStart:
+case NS_ooxml::LN_EG_RangeMarkupElements_customXmlMoveFromRangeEnd:
+case NS_ooxml::LN_EG_RangeMarkupElements_customXmlMoveToRangeStart:
+case NS_ooxml::LN_EG_RangeMarkupElements_customXmlMoveToRangeEnd:
 {
 HandleRedline( rSprm );
 }
diff --git a/writerfilter/source/dmapper/DomainMapper_Impl.cxx 
b/writerfilter/source/dmapper/DomainMapper_Impl.cxx
index 20bd4ce..3e7e4af 100644
--- a/writerfilter/source/dmapper/DomainMapper_Impl.cxx
+++ b/writerfilter/source/dmapper/DomainMapper_Impl.cxx
@@ -4734,9 +4734,10 @@ void DomainMapper_Impl::SetCurrentRedlineId( sal_Int32 
sId )
 {
 // This should be an assert, but somebody had the smart idea to reuse 
this function also for comments and whatnot,
 // and in some cases the id is actually not handled, which may be in 
fact a bug.
-SAL_WARN( writerfilter, !m_currentRedline.get());
 if( m_currentRedline.get())
 m_currentRedline-m_nId = sId;
+else
+SAL_INFO(writerfilter.dmapper, no current redline);
 }
 }
 
diff --git a/writerfilter/source/ooxml/model.xml 
b/writerfilter/source/ooxml/model.xml
index 925d7ac..ef288b1 100644
--- a/writerfilter/source/ooxml/model.xml
+++ b/writerfilter/source/ooxml/model.xml
@@ -17281,6 +17281,22 @@
 resource name=CT_TrackChange resource=Properties
   attribute name=author tokenid=ooxml:CT_TrackChange_author/
   attribute name=date tokenid=ooxml:CT_TrackChange_date/
+  action name=end 
tokenid=ooxml:EG_RangeMarkupElements_customXmlInsRangeStart 
action=sendPropertiesWithId 
sendtokenid=ooxml:EG_RangeMarkupElements_customXmlInsRangeStart/
+  action name=end 
tokenid=ooxml:EG_RangeMarkupElements_customXmlInsRangeStart 
action=clearProps/
+  action name=end 
tokenid=ooxml:EG_RangeMarkupElements_customXmlInsRangeEnd 
action=sendPropertiesWithId 
sendtokenid=ooxml:EG_RangeMarkupElements_customXmlInsRangeEnd/
+  action name=end 
tokenid=ooxml:EG_RangeMarkupElements_customXmlInsRangeEnd 
action=clearProps/
+  action name=end 
tokenid=ooxml:EG_RangeMarkupElements_customXmlDelRangeStart 
action=sendPropertiesWithId 
sendtokenid=ooxml:EG_RangeMarkupElements_customXmlDelRangeStart/
+  action name=end 
tokenid=ooxml:EG_RangeMarkupElements_customXmlDelRangeStart 

[Libreoffice-commits] core.git: Branch 'libreoffice-4-4-0' - icon-themes/sifr

2015-01-19 Thread Matthias Freund
 icon-themes/sifr/cmd/lc_datadatapilotrun.png |binary
 icon-themes/sifr/cmd/lc_xlinecolor.png   |binary
 icon-themes/sifr/cmd/sc_datadatapilotrun.png |binary
 icon-themes/sifr/cmd/sc_xlinecolor.png   |binary
 4 files changed

New commits:
commit f39e2b314eebc128ccaff8e449a5525e23e574be
Author: Matthias Freund matti...@secure.mailbox.org
Date:   Sun Jan 18 02:12:25 2015 +0100

fdo#75256 Improve Sifr Icon Theme

Two new icons. Linecolor and pilotrun, hope these are those in the toolbar 
in impress.

Change-Id: I8d1c9fca4d6135da908199b088b1ab6221251245
Reviewed-on: https://gerrit.libreoffice.org/13977
Reviewed-by: Jan Holesovsky ke...@collabora.com
Tested-by: Jan Holesovsky ke...@collabora.com
(cherry picked from commit 6271e6400ac9f78a323e959a6a295625f08b87cc)
Reviewed-on: https://gerrit.libreoffice.org/13991
Reviewed-by: Michael Meeks michael.me...@collabora.com
Reviewed-by: Caolán McNamara caol...@redhat.com
Tested-by: Caolán McNamara caol...@redhat.com

diff --git a/icon-themes/sifr/cmd/lc_datadatapilotrun.png 
b/icon-themes/sifr/cmd/lc_datadatapilotrun.png
new file mode 100644
index 000..29ad813
Binary files /dev/null and b/icon-themes/sifr/cmd/lc_datadatapilotrun.png differ
diff --git a/icon-themes/sifr/cmd/lc_xlinecolor.png 
b/icon-themes/sifr/cmd/lc_xlinecolor.png
new file mode 100644
index 000..8e7cf23
Binary files /dev/null and b/icon-themes/sifr/cmd/lc_xlinecolor.png differ
diff --git a/icon-themes/sifr/cmd/sc_datadatapilotrun.png 
b/icon-themes/sifr/cmd/sc_datadatapilotrun.png
new file mode 100644
index 000..3a972b6a
Binary files /dev/null and b/icon-themes/sifr/cmd/sc_datadatapilotrun.png differ
diff --git a/icon-themes/sifr/cmd/sc_xlinecolor.png 
b/icon-themes/sifr/cmd/sc_xlinecolor.png
new file mode 100644
index 000..e1e975f
Binary files /dev/null and b/icon-themes/sifr/cmd/sc_xlinecolor.png differ
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: Mapping of AccessibleStateType to AtkStateType

2015-01-19 Thread Niklas Johansson

Stephan Bergmann skrev den 2015-01-19 10:29:


Would probably make sense to rephrase and reformat the IA2 CWS 
comments for 
offapi/com/sun/star/accessibility/AccessibleStateType.idl's MOVEABLE, 
DEFAULT, OFFSCREEN, COLLAPSE so that they show up in the doxygen 
output (esp. for the latter two, which have no doxygen comment at all).


Adding documentation for the added states, roles and events has been on 
my todo-list for way to long. I better see to it that I get it done as 
soon as possible, obviously I need it. ;)


Regards,
Niklas Johansson

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


[Libreoffice-commits] dev-tools.git: cppcheck/cppcheck-report.sh

2015-01-19 Thread Maarten Hoes
 cppcheck/cppcheck-report.sh |  179 
 1 file changed, 179 insertions(+)

New commits:
commit 64ae2aa598fadfe55746724dde96fc561573e843
Author: Maarten Hoes hoes.maar...@gmail.com
Date:   Mon Jan 19 14:01:03 2015 +0100

Added automated cppcheck generation script. Corrected ssh cmd

Change-Id: I8bb49ab42039c61dd5c09fa94d9b9fa086cfba53
Reviewed-on: https://gerrit.libreoffice.org/14014
Reviewed-by: David Tardon dtar...@redhat.com
Tested-by: David Tardon dtar...@redhat.com

diff --git a/cppcheck/cppcheck-report.sh b/cppcheck/cppcheck-report.sh
new file mode 100755
index 000..17e949e
--- /dev/null
+++ b/cppcheck/cppcheck-report.sh
@@ -0,0 +1,179 @@
+#!/usr/bin/env bash
+# -*- tab-width : 4; indent-tabs-mode : nil -*-
+#
+# This file is part of the LibreOffice project.
+#
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#
+
+[ $DEBUG ]  set -xv
+
+#
+# Functions
+#
+
+die()
+{
+[ $DEBUG ]  set -xv
+
+echo Error: $@ 2
+exit -1;
+}
+
+run_cppcheck()
+{
+[ $DEBUG ]  set -xv
+
+pushd ${SRC_DIR?}  /dev/null || die Failed to change directory to 
${SRC_DIR?}
+
+echo unusedFunction  ${DATA_DIR?}/cppcheck_supp.txt
+
+${CPPCHECK_DIR?}/cppcheck -i external/ -i workdir/ --xml 
--suppressions-list=${DATA_DIR?}/cppcheck_supp.txt --enable=all 
--max-configs=25 ./ 2 ${DATA_DIR?}/err.xml \
+|| die Failed to run cppcheck.
+
+${CPPCHECK_DIR?}/htmlreport/cppcheck-htmlreport 
--file=${DATA_DIR?}/err.xml --title=LibreOffice ${COMMIT_DATE_LO?} 
${COMMIT_TIME_LO?} ${COMMIT_SHA1_LO?}, CppCheck ${COMMIT_DATE_CPPCHECK?} 
${COMMIT_TIME_CPPCHECK?} ${COMMIT_SHA1_CPPCHECK?} --report-dir=${HTML_DIR?} 
--source-dir=. \
+|| die Failed to run cppcheck-htmlreport.
+
+popd  /dev/null || die Failed to change directory out of ${SRC_DIR?}
+}
+
+get_cppcheck_src()
+{
+[ $DEBUG ]  set -xv
+
+if [ ! -d ${CPPCHECK_DIR?} ]; then
+git clone ${CPPCHECK_GIT_URL?} ${CPPCHECK_DIR?} || die Failed to 
git clone ${CPPCHECK_GIT_URL?} in ${CPPCHECK_DIR?}
+else
+if [ ! -d ${CPPCHECK_DIR?}/.git ] ; then
+die ${CPPCHECK_DIR?} is not a git repository
+else
+pushd ${CPPCHECK_DIR?} || die Failed to change directory to 
${CPPCHECK_DIR?}
+git pull || die Failed to update git repository ${CPPCHECK_DIR?}
+popd  /dev/null || die Failed to change directory out of 
${CPPCHECK_DIR?}
+fi
+fi
+}
+
+get_lo_src()
+{
+[ $DEBUG ]  set -xv
+
+if [ ! -d ${SRC_DIR?} ]; then
+git clone ${LO_GIT_URL?} ${SRC_DIR?} || die Failed to git clone 
${LO_GIT_URL?} in ${SRC_DIR?}
+else
+if [ ! -d ${SRC_DIR?}/.git ] ; then
+die ${SRC_DIR?} is not a git repository
+else
+pushd ${SRC_DIR?} || die Failed to change directory to 
${SRC_DIR?}
+git pull || die Failed to update git repository ${SRC_DIR?}
+popd  /dev/null || die Failed to change directory out of 
${SRC_DIR?}
+fi
+fi
+}
+
+build_cppcheck()
+{
+[ $DEBUG ]  set -xv
+
+pushd ${CPPCHECK_DIR?}  /dev/null || die Failed to change directory to 
${CPPCHECK_DIR?}
+make all || die Failed to build cppcheck.
+popd  /dev/null || die Failed to change directory out of 
${CPPCHECK_DIR?}
+}
+
+get_commit_lo()
+{
+[ $DEBUG ]  set -xv
+
+pushd ${SRC_DIR?}  /dev/null || die Failed to change directory to 
${SRC_DIR?}
+
+COMMIT_SHA1_LO=$(git log --date=iso | head -3 | awk '/^commit/ {print $2}')
+COMMIT_DATE_LO=$(git log --date=iso | head -3 | awk '/^Date/ {print $2}')
+COMMIT_TIME_LO=$(git log --date=iso | head -3 | awk '/^Date/ {print $3}')
+
+popd  /dev/null || die Failed to change directory out of ${SRC_DIR?}
+}
+
+get_commit_cppcheck()
+{
+[ $DEBUG ]  set -xv
+
+pushd ${CPPCHECK_DIR?}  /dev/null || die Failed to change directory to 
${CPPCHECK_DIR?}
+
+COMMIT_SHA1_CPPCHECK=$(git log --date=iso | head -3 | awk '/^commit/ 
{print $2}')
+COMMIT_DATE_CPPCHECK=$(git log --date=iso | head -3 | awk '/^Date/ {print 
$2}')
+COMMIT_TIME_CPPCHECK=$(git log --date=iso | head -3 | awk '/^Date/ {print 
$3}')
+
+popd  /dev/null || die Failed to change directory out of 
${CPPCHECK_DIR?}
+}
+
+
+upload_report()
+{
+[ $DEBUG ]  set -xv
+
+ssh upl...@dev-builds.libreoffice.org rm -rf ${UPLOAD_DIR?} || die 
Failed to remove directory ${UPLOAD_DIR?}
+scp -r ${HTML_DIR?}/* 
upl...@dev-builds.libreoffice.org:${UPLOAD_DIR?}/ || die Failed to upload 
report to ${UPLOAD_DIR?}
+}
+
+
+#
+# Main
+#
+
+
+usage()
+{
+[ $DEBUG ]  set -xv
+
+echo 2 Usage: lcov-report.sh -s [DIRECTORY] -w [DIRECTORY]
+-ssource code directory
+-whtml (www) directory
+-cccpcheck (git) directory.
+exit 1
+}
+
+#
+# Main
+#
+
+if [ $# = 0 ] 

[Libreoffice-bugs] [Bug 86661] Incorrect usage of ATK_ROLE_TEXT

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

--- Comment #4 from Caolán McNamara caol...@redhat.com ---
Assuming this is a MessageDialog, there would be no problem at all to just call
SetAccessibileRole on the m_pPrimaryMessage and m_pSecondaryMessage widgets in
MessageDialog::Execute if that solves the problem. They are merely r/o
MultiLineEdits in order to allow the user to select and copy the text out of
them.

or if its an InfoBox/etc, convert it to a MessageDialog if they work better,
and/or do both if necessary.

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


[Libreoffice-bugs] [Bug 80680] SOLVER crashing CALC

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

Alex Thurgood ipla...@yahoo.co.uk changed:

   What|Removed |Added

   Hardware|x86 (IA32)  |All

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


[Libreoffice-bugs] [Bug 88598] New: Missing word warp for basic objects

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

Bug ID: 88598
   Summary: Missing word warp for basic objects
   Product: LibreOffice
   Version: 4.3.5.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Drawing
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: 45g2345...@gmail.com

Created attachment 112494
  -- https://bugs.freedesktop.org/attachment.cgi?id=112494action=edit
The Word warp text in shape is disabled and word warp is not working.

Right clicking on an ellipse and choosing Text - feature(checkbox) Word warp
text in shape is not allowed. The checkbox is checked but word warp is not
applied.

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


[Libreoffice-bugs] [Bug 88598] Missing word warp for basic objects in shortcut section

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

45g2345...@gmail.com changed:

   What|Removed |Added

Summary|Missing word warp for basic |Missing word warp for basic
   |objects |objects in shortcut section

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


[Libreoffice-bugs] [Bug 88592] VIEWING: Green display bug

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

V Stuart Foote vstuart.fo...@utsa.edu changed:

   What|Removed |Added

 Attachment #112486|text/plain  |application/vnd.openxmlform
  mime type||ats-officedocument.spreadsh
   ||eetml.sheet
 CC||vstuart.fo...@utsa.edu

--- Comment #2 from V Stuart Foote vstuart.fo...@utsa.edu ---
Comment on attachment 112486
  -- https://bugs.freedesktop.org/attachment.cgi?id=112486
problem file

correct mime type

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


[Libreoffice-bugs] [Bug 88576] functions IFNA and IFERROR second argument

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

--- Comment #4 from raal r...@post.cz ---
(In reply to Winfried Donkers from comment #3)
Hello,

 I suggest we use the Excel behaviour in Calc too, and put this as an
 OpenFormula extension in the wiki
 (https://wiki.documentfoundation.org/Development/ODF_Implementer_Notes/
 List_of_LibreOffice_OpenFormula_Extensions).
 
 Eike, Raal, do you agree?

Tested iferror with excel2010 and excel doesn't allow to create formula with
only one argument,  so we should do the same

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


[Libreoffice-bugs] [Bug 67538] XTypeDetection::queryTypeByDescriptor poor performance

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

--- Comment #4 from Grigory wsl...@gmail.com ---
(In reply to Robinson Tryon (qubit) from comment #3)
 (In reply to Grigory from comment #2)
  I have some additional research: the main problem is reading data from the
  inputstream byte-by-byte. If I pass the file by URL the perfomance is great.
 
 Hi Grigory,
 How's the performance of our the latest builds?
 
 Status - NEEDINFO

Sorry, I don't have a computer with necessary environment to check the error.
But the code that I attached to the ticket should reproduce the problem if it
still exists

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


[Libreoffice-commits] dev-tools.git: cppcheck/cppcheck-report.sh

2015-01-19 Thread Maarten Hoes
 cppcheck/cppcheck-report.sh |1 +
 1 file changed, 1 insertion(+)

New commits:
commit 52626df964a70fbdfb485f189814d072c1ae4631
Author: Maarten Hoes hoes.maar...@gmail.com
Date:   Mon Jan 19 19:09:01 2015 +0100

Added creation of UPLOAD_DIR.

Change-Id: Ifa0db60f2c0c87fb4b8c7c9cb65d7990a6a4af93
Reviewed-on: https://gerrit.libreoffice.org/14021
Reviewed-by: David Tardon dtar...@redhat.com
Tested-by: David Tardon dtar...@redhat.com

diff --git a/cppcheck/cppcheck-report.sh b/cppcheck/cppcheck-report.sh
index 17e949e..fc9ea32 100755
--- a/cppcheck/cppcheck-report.sh
+++ b/cppcheck/cppcheck-report.sh
@@ -114,6 +114,7 @@ upload_report()
 [ $DEBUG ]  set -xv
 
 ssh upl...@dev-builds.libreoffice.org rm -rf ${UPLOAD_DIR?} || die 
Failed to remove directory ${UPLOAD_DIR?}
+ssh upl...@dev-builds.libreoffice.org mkdir -p ${UPLOAD_DIR?} || die 
Failed to create directory ${UPLOAD_DIR?}
 scp -r ${HTML_DIR?}/* 
upl...@dev-builds.libreoffice.org:${UPLOAD_DIR?}/ || die Failed to upload 
report to ${UPLOAD_DIR?}
 }
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 80411] select-all and change-font does not affect the numbering

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

--- Comment #3 from Timur gti...@gmail.com ---
I think this my be closed a duplicate of Bug 61279.

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


[Libreoffice-commits] core.git: Branch 'aoo/trunk' - 2 commits - officecfg/registry

2015-01-19 Thread Tsutomu Uchino
 officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu |4 
++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 2c11fc40e0500da7fc217e1bc1290adfdccab82f
Author: Tsutomu Uchino ha...@apache.org
Date:   Mon Jan 19 17:12:22 2015 +

#i116863# remove the extra space before colon in the label for date number 
format

diff --git 
a/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu
index fbdbdbb..0a17cdb 100644
--- a/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu
@@ -3813,7 +3813,7 @@
 /node
 node oor:name=.uno:NumberFormatDate oor:op=replace
 prop oor:name=Label oor:type=xs:string
-value xml:lang=en-USNumber Format : Date/value
+value xml:lang=en-USNumber Format: Date/value
 /prop
 prop oor:name=Properties oor:type=xs:int
 value1/value
commit f1c5f03d2e6e93739538b0f8afb7a0babaf62dd0
Author: Tsutomu Uchino ha...@apache.org
Date:   Mon Jan 19 17:10:34 2015 +

#i28353# add leading dots for a label Floating Frame

diff --git 
a/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu
index 75affea..fbdbdbb 100644
--- a/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu
@@ -3311,7 +3311,7 @@
 /node
 node oor:name=.uno:InsertObjectFloatingFrame oor:op=replace
 prop oor:name=Label oor:type=xs:string
-value xml:lang=en-USFloat~ing Frame/value
+value xml:lang=en-USFloat~ing Frame.../value
 /prop
 prop oor:name=Properties oor:type=xs:int
 value1/value
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 86458] calculations in doc, docx tables lost, if specific Euro symbol used

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

Timur gti...@gmail.com changed:

   What|Removed |Added

Summary|calculations in doc, docx   |calculations in doc, docx
   |tables are lost, formatting |tables lost, if specific
   |backgrounds are lost|Euro symbol used

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


Re: no 'object' file generated ?

2015-01-19 Thread Markus Mohrhard
Hey,

On Mon, Jan 19, 2015 at 7:55 PM, Ashod Nakashian ashnak...@gmail.com
wrote:

 Hey Markus,

 On Mon, Jan 19, 2015 at 10:54 AM, Markus Mohrhard
 markus.mohrh...@googlemail.com wrote:
  Hey,
 
  On Mon, Jan 19, 2015 at 4:33 PM, Ashod Nakashian ashnak...@gmail.com
  wrote:
 
  Anyone know why Jenkins sometimes throws this error?
 
 
 
 C:/cygwin/home/tdf/lode/jenkins/workspace/lo_gerrit_master/Gerrit/Gerrit/Platform/Windows/shell/source/win32/shlxthandler/util/utilities.cxx(110)
  : error C2220: warning treated as error - no 'object' file generated
 
 
  If you would have quoted the whole text you would have seen the error
  yourself:

 Right, and I suspected that. But, as Michael noted, this is unrelated
 to my patch. And I had seen it before, and it works in subsequent
 build attempts.

 Also odd was that I Gerrit wouldn't give me a rebase option, even
 though I knew I was behind. I rebased manually, pushed and build
 started.

 Build failed on Windows at another point, while Linux passed.

 [multiple import warnings]
 test_ToxTextGenerator.o : warning LNK4217: locally defined symbol
 ??1SwForm@@QAE@XZ (public: __thiscall SwForm::~SwForm(void)) imported
 in function public: void __thiscall

 ToxTextGeneratorTest::ChapterNumberWithTitleIsGeneratedForNumberNoPrepst(void)
 (?ChapterNumberWithTitleIsGeneratedForNumberNoPrepst@ToxTextGeneratorTest
 @@QAEXXZ)
 make[2]: Leaving directory

 'C:/cygwin/home/tdf/lode/jenkins/workspace/lo_gerrit_master/Gerrit/Gerrit/Platform/Windows'
 Makefile:246: recipe for target 'build' failed




Nah, that is about some of the unit test which do some stufffor which MSVC
issues a warning. If you go up in the log you find the test failure that
results in the build failure:

Test name: Test_TextEffects_InStyleXml::Import_Export_Import
An uncaught exception of type com.sun.star.task.ErrorCodeIOException
- SfxBaseModel::impl_store file:///C:/cygwin/tmp/luhd0w7j.tmp failed: 0x507

Failures !!!
Run: 18 Failure total: 1 Failures: 0 Errors: 1

Error: a unit test failed, please do one of:

export DEBUGCPPUNIT=TRUE # for exception catching
export CPPUNITTRACE=[full path to devenv.exe] /debugexe # for
interactive debugging in Visual Studio
export VALGRIND=memcheck # for memory checking

and retry using: make CppunitTest_sw_ooxmlw14export
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 61279] FORMATTING: Can't change fonts of numers markers

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

Timur gti...@gmail.com changed:

   What|Removed |Added

 CC||gti...@gmail.com

--- Comment #6 from Timur gti...@gmail.com ---
(In reply to Brenda Granados from comment #2)
 Created attachment 75339 [details]
 ability to change fonts depends on how numbers created

If the whole text in this example, where numbering font is different that text
font, is changed to another font size and saved as docx, then it's open with
different numbering size up to LO 4.3.5. 
But, I cannot reproduce it anymore with LO 4.4.0, where it's open with unified
numbering size. So, I won't open a new bug, and that's another issue anyway.

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


[Libreoffice-commits] core.git: Branch 'libreoffice-4-4-0' - sw/source

2015-01-19 Thread Caolán McNamara
 sw/source/core/doc/docfmt.cxx |   10 ++
 1 file changed, 6 insertions(+), 4 deletions(-)

New commits:
commit ff84b2f338b815d3f4c2465d0b60e57123de6d31
Author: Caolán McNamara caol...@redhat.com
Date:   Thu Jan 15 14:43:27 2015 +

Resolves: rhbz#SwDataChanged dtor accesses deleted PaM

an old bug that I finally hit on by typing one paragraph
of three lines consisting of repeated Apple  and the cursor
at position 0 and click the bullet icon

Change-Id: I90e998561f2645ebfa51423bcaab9a4195144338
(cherry picked from commit 3cb3396e4a4b36e5a05892da16b076feaef6b2b1)
Reviewed-on: https://gerrit.libreoffice.org/13931
Reviewed-by: Michael Stahl mst...@redhat.com
Reviewed-by: Eike Rathke er...@redhat.com
Tested-by: David Tardon dtar...@redhat.com
Reviewed-by: David Tardon dtar...@redhat.com

diff --git a/sw/source/core/doc/docfmt.cxx b/sw/source/core/doc/docfmt.cxx
index 3d9cbff..5a82a57 100644
--- a/sw/source/core/doc/docfmt.cxx
+++ b/sw/source/core/doc/docfmt.cxx
@@ -289,10 +289,10 @@ void SwDoc::ResetAttrs( const SwPaM rRg,
 }
 
 // #i96644#
-boost::scoped_ptr SwDataChanged  pDataChanged;
+boost::scoped_ptr SwDataChanged  xDataChanged;
 if ( bSendDataChangedEvents )
 {
-pDataChanged.reset( new SwDataChanged( *pPam ) );
+xDataChanged.reset( new SwDataChanged( *pPam ) );
 }
 SwHistory* pHst = 0;
 if (GetIDocumentUndoRedo().DoesUndo())
@@ -394,10 +394,12 @@ void SwDoc::ResetAttrs( const SwPaM rRg,
 GetNodes().ForEach( pStt-nNode, aTmpEnd, 
sw::DocumentContentOperationsManager::lcl_RstTxtAttr, aPara );
 }
 
+getIDocumentState().SetModified();
+
+xDataChanged.reset(); //before delete pPam
+
 if( pPam != rRg )
 delete pPam;
-
-getIDocumentState().SetModified();
 }
 
 /// Set the rsid of the next nLen symbols of rRg to the current session number
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 80138] Libreoffice Draw unable to export decent pictures

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

Regina Henschel rb.hensc...@t-online.de changed:

   What|Removed |Added

 CC||rb.hensc...@t-online.de

--- Comment #1 from Regina Henschel rb.hensc...@t-online.de ---
The default resolution is that of your monitor, for me 120dpi. I see no error
in using the monitor resolution as default.

I do not think, that the default should be a resolution for printing, which
would be at least 300dpi. If you have got a content, which does not compress
well, the file size will be large. For which purpose do you need such a large
resolution?

First set the desired resolution, then width or height. That is not difficult.
But perhaps someone likes to add a wizard for exporting images.

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


[Libreoffice-bugs] [Bug 88591] CONNECTING: ODBC Wants SQLite2, Cannot Connect to SQLite3 .db

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

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

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |NOTABUG

--- Comment #2 from Lionel Elie Mamane lio...@mamane.lu ---
How is that a bug of LibreOffice?

At most, it would be a bug in the ODBC driver. However, sqliteodbc actually
provides two drivers, one for SQLite2 and one for SQLite3. For example, on a
Debian system /etc/odbcinst.ini contains:

[SQLite]
Description=SQLite ODBC Driver
Driver=libsqliteodbc.so
Setup=libsqliteodbc.so
UsageCount=1

[SQLite3]
Description=SQLite3 ODBC Driver
Driver=libsqlite3odbc.so
Setup=libsqlite3odbc.so
UsageCount=1


I suggest you double check that your ODBC data source is configured with the
correct driver (that is a reference to the right entry in /etc/odbcinst.ini).
Probably your odbc data source (in ~/.odbc.ini or /etc/odbc.ini) needs

Driver  = SQLite3

instead of

Driver  = SQLite

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


[Libreoffice-bugs] [Bug 86458] calculations in doc, docx tables lost, if specific Euro symbol used

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

--- Comment #9 from Timur gti...@gmail.com ---
I got a response from Michael by email.
I'm using Ubuntu 14.10, before 14.04. In both Distros the same thing, NOT
depending on a specific € Symbol. Table won't keep formula when saving and
reopening.

Since we don't have the same results, I ask someone else to test also.

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


[Libreoffice-bugs] [Bug 88583] FILESAVE: Paragraph background in ODT not saved in DOC or DOCX

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

Luke lukebe...@hotmail.com changed:

   What|Removed |Added

 Whiteboard||bibisectRequest

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


Re: no 'object' file generated ?

2015-01-19 Thread Ashod Nakashian
Hey Markus,

On Mon, Jan 19, 2015 at 10:54 AM, Markus Mohrhard
markus.mohrh...@googlemail.com wrote:
 Hey,

 On Mon, Jan 19, 2015 at 4:33 PM, Ashod Nakashian ashnak...@gmail.com
 wrote:

 Anyone know why Jenkins sometimes throws this error?


 C:/cygwin/home/tdf/lode/jenkins/workspace/lo_gerrit_master/Gerrit/Gerrit/Platform/Windows/shell/source/win32/shlxthandler/util/utilities.cxx(110)
 : error C2220: warning treated as error - no 'object' file generated


 If you would have quoted the whole text you would have seen the error
 yourself:

Right, and I suspected that. But, as Michael noted, this is unrelated
to my patch. And I had seen it before, and it works in subsequent
build attempts.

Also odd was that I Gerrit wouldn't give me a rebase option, even
though I knew I was behind. I rebased manually, pushed and build
started.

Build failed on Windows at another point, while Linux passed.

[multiple import warnings]
test_ToxTextGenerator.o : warning LNK4217: locally defined symbol
??1SwForm@@QAE@XZ (public: __thiscall SwForm::~SwForm(void)) imported
in function public: void __thiscall
ToxTextGeneratorTest::ChapterNumberWithTitleIsGeneratedForNumberNoPrepst(void)
(?ChapterNumberWithTitleIsGeneratedForNumberNoPrepst@ToxTextGeneratorTest@@QAEXXZ)
make[2]: Leaving directory
'C:/cygwin/home/tdf/lode/jenkins/workspace/lo_gerrit_master/Gerrit/Gerrit/Platform/Windows'
Makefile:246: recipe for target 'build' failed

http://ci.libreoffice.org/job/lo_gerrit_master/431

Thanks.


 C:/cygwin/home/tdf/lode/jenkins/workspace/lo_gerrit_master/Gerrit/Gerrit/Platform/Windows/shell/source/win32/shlxthandler/util/utilities.cxx(110)
 : error C2220: warning treated as error - no 'object' file generated
 C:/cygwin/home/tdf/lode/jenkins/workspace/lo_gerrit_master/Gerrit/Gerrit/Platform/Windows/shell/source/win32/shlxthandler/util/utilities.cxx(110)
 : warning C4996: 'GetVersionExW': was declared deprecated

 So as we are using Werror and use a deprecated function we are aborting the
 build.





 I can't find any other failures in the output.
 That was on Windows. In the same build[*], but on Linux, I have this:

 nsinstall: cannot access nss.h: No such file or directory
 ../../coreconf/rules.mk:752: recipe for target 'export' failed
 make[4]: *** [export] Aborted


 Any ideas? How can we fix/avoid this?



 The linux one looks more like a problem with the nss build. I doubt that
 this one can be explained by looking at the logs without being able to build
 on the machine.

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


[Libreoffice-bugs] [Bug 72460] FILEOPEN: Can't access local ftp server

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

Beluga todven...@suomi24.fi changed:

   What|Removed |Added

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

--- Comment #10 from Beluga todven...@suomi24.fi ---
If I use ftp://localhost/file.doc either from command line or LibO dialogs, I
can't change the username in the auth dialog.

ftp://user:pass@localhost/ works fine from the command line.

With LibO dialogs, I get Access to ftp://.. denied.

With non-LibO dialogs I get:
The folder contents could not be displayed
   The specified location is not mounted

Used vsftpd. Had liborbit2 installed.

Ubuntu 14.10 64-bit Version: 4.5.0.0.alpha0+
Build ID: 0ffa3abc7d6c0437ece30cfb1430d28ffcc9f5c1
TinderBox: Linux-rpm_deb-x86_64@46-TDF-dbg, Branch:master, Time:
2015-01-15_22:47:16

Version: 4.3.3.2
Build ID: 430m0(Build:2)

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


[Libreoffice-bugs] [Bug 88591] CONNECTING: ODBC Wants SQLite2, Cannot Connect to SQLite3 .db

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

--- Comment #3 from Rich Shepard rshep...@appl-ecosys.com ---
Alex/Lionel:

  Your points are valid.

  I rebuilt unixODBC to include the GUI, but there's no ODBCConfig on my
system.

  There was no unixODBC.ini in /etc/ so I created one for sqlite3 using the
debian one as the source. Also, in /etc/odbc.ini and /etc/odbcinst.ini I did
have the sqlite2 libraries; those have been changed to specify sqlite3. Totally
my error.

  LO Base apparently does not recognize the changes. But, rather than telling
me it cannot make a connection because the library is missing I'm told the
connection cannot be established because the DSN is not found and a driver name
is not specified. Found no menu item to fix these, so I'll delete the .odb and
start over.

  This is obviously a configuration issue and not a bug so please close this
issue.

Thank you both,

Rich

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


[Libreoffice-ux-advise] [Bug 87217] the floating Sidebar moves back onto the side of the window at closing

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

--- Comment #21 from tmacalp tmac...@gmail.com ---
Yep, those links are for another bug I was working on (bug 88339).  I've just
committed a backport to 4.4:

https://gerrit.libreoffice.org/14025

But I guess it still needs to go to 4.4.0?

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


[Libreoffice-bugs] [Bug 87217] the floating Sidebar moves back onto the side of the window at closing

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

--- Comment #21 from tmacalp tmac...@gmail.com ---
Yep, those links are for another bug I was working on (bug 88339).  I've just
committed a backport to 4.4:

https://gerrit.libreoffice.org/14025

But I guess it still needs to go to 4.4.0?

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


[Libreoffice-bugs] [Bug 88564] Properties General Tab Help button

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

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

   What|Removed |Added

   Priority|medium  |lowest
 Status|NEEDINFO|RESOLVED
 CC|libreoffice-ux-advise@lists |
   |.freedesktop.org|
  Component|ux-advise   |UI
 Resolution|--- |WONTFIX

--- Comment #3 from Adolfo Jayme f...@libreoffice.org ---
Ignore the previous comment.

So… The Help button is there because LibreOffice runs in multiple platforms.
Windows is the only OS which provided support for a “?” button in the title
bar, but that has been deprecated for long already. As OS X and every Linux
window manager I know don’t support it, we place our help buttons in the window
area. Which I think it’s fine.

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


[Libreoffice-bugs] [Bug 88600] New: FORMATTING TABLE parse forced CR as a row separator in Table - Text to Table Conversion

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

Bug ID: 88600
   Summary: FORMATTING TABLE parse forced CR as a row separator
in Table - Text to Table Conversion
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: gpo...@gmail.com

Created attachment 112499
  -- https://bugs.freedesktop.org/attachment.cgi?id=112499action=edit
Example of pseudo-tables with tabulations and convertions in tables

I find that building pseudo-tables with tabulations is often useful and in
those cases I use (and teach) to separate each row with forced Carriage Return
(Shift+Enter).

This way it's not necessary to select each row of this pseudo-table, for
example, to modify a tabulation. It's enough to have keyboard cursor inside
that unique paragraph.

If You try to convert such a pseudo-table in a real table with the specific
function, it will ignore CR and create a one row table with a number of columns
that equals intended columns multiplied by intended rows.

I'm not a coder (anymore), but I guess it should be an easy feature to
implement, just adding the CR code to the existing End of Paragraph in the
parsing of the End of Line function. It should be about an OR operator.

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


[Libreoffice-ux-advise] [Bug 88564] Properties General Tab Help button

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

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

   What|Removed |Added

   Priority|medium  |lowest
 Status|NEEDINFO|RESOLVED
 CC|libreoffice-ux-advise@lists |
   |.freedesktop.org|
  Component|ux-advise   |UI
 Resolution|--- |WONTFIX

--- Comment #3 from Adolfo Jayme f...@libreoffice.org ---
Ignore the previous comment.

So… The Help button is there because LibreOffice runs in multiple platforms.
Windows is the only OS which provided support for a “?” button in the title
bar, but that has been deprecated for long already. As OS X and every Linux
window manager I know don’t support it, we place our help buttons in the window
area. Which I think it’s fine.

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


[Libreoffice-bugs] [Bug 88241] Sidebar: Undocked sidebar opened by call to Styles and Formatting is not dismissed with another call

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

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

   What|Removed |Added

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

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


[Libreoffice-ux-advise] [Bug 88562] UI: appearance of file name field in File Properties dialog gives the idea that it can be changed there, which cannot be done

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

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

   What|Removed |Added

   Priority|medium  |low
 CC|libreoffice-ux-advise@lists |caol...@redhat.com,
   |.freedesktop.org|f...@libreoffice.org
  Component|ux-advise   |UI
Summary|UI: appearance of file name |UI: appearance of file name
   |in file properties window   |field in File Properties
   |gives the idea that it can  |dialog gives the idea that
   |be changed there, wich  |it can be changed there,
   |cannot be done  |which cannot be done

--- Comment #3 from Adolfo Jayme f...@libreoffice.org ---
No need to add this to UX Advise IMHO. The bug is obvious and its UX resolution
should be too: that field’s background should appear disabled (i.e., grayed
out) as it cannot be modified.

Maybe Caolán can lend a hand here too ;) (sorry for abusing!)

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


[Libreoffice-bugs] [Bug 88562] UI: appearance of file name field in File Properties dialog gives the idea that it can be changed there, which cannot be done

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

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

   What|Removed |Added

   Priority|medium  |low
 CC|libreoffice-ux-advise@lists |caol...@redhat.com,
   |.freedesktop.org|f...@libreoffice.org
  Component|ux-advise   |UI
Summary|UI: appearance of file name |UI: appearance of file name
   |in file properties window   |field in File Properties
   |gives the idea that it can  |dialog gives the idea that
   |be changed there, wich  |it can be changed there,
   |cannot be done  |which cannot be done

--- Comment #3 from Adolfo Jayme f...@libreoffice.org ---
No need to add this to UX Advise IMHO. The bug is obvious and its UX resolution
should be too: that field’s background should appear disabled (i.e., grayed
out) as it cannot be modified.

Maybe Caolán can lend a hand here too ;) (sorry for abusing!)

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


[Libreoffice-bugs] [Bug 88601] New: LO BASE: Failure to correctly interpret range for UNSIGNED integers from MySQL database (jdbc and native connectors)

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

Bug ID: 88601
   Summary: LO BASE: Failure to correctly interpret range for
UNSIGNED integers from MySQL database (jdbc and native
connectors)
   Product: LibreOffice
   Version: 4.3.5.2 release
  Hardware: Other
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Database
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: dougt901-2...@yahoo.com

SHORT DESCRIPTION:  LO Base uses incorrect range of values for UNSIGNED
integers in MySQL/MariaDB tables.  LO and/or its connectors treat UNSIGNED
integer fields as if they are SIGNED and resulting in unexpected/erroenous
outcomes.  Erroneous functionality regardless of connector (two jdbc connectors
tested, along with direct LO native connector), so reporting here.

DETAILED DESCRIPION:

1.  Create MySQL/MariaDB database with Table1;
2.  On Table1 create Field1 as UNSIGNED TinyInt;

NOTE:  UNSIGNED TinyInt has range 0 to 255.

3.  Connect to MySQL database using any method with LO Base; and,
4.  In table, attempt to enter value into Field1 of 128 to 255.  (these values
can successfully be entered directly into MySQL field without LO)

UNEXPECTED RESULT:

JBDC Drivers (com.mysql.jdbc.Driver and org.mariadb.jdbc.Driver)
Error Updating Record // Data truncation:  Out of range value for column
'Field1' at row 1

SQL Status: 22001 // Error code: 1264

Also received 22003.

MySQL Native Connector did not return error, simply (erroenously) changed
out-of-range value between 128 and 255 to 0 and saved.

ALTERNATIVELY:
At step 4. substitute a value of -1 to -128.

ALTERNATIVE UNEXPECTED RESULT:  On loss of focus, value will change to the
product of the following equation:

NewValue = 256 + TypedValue

That is, a value of negative one will change to a NewValue of 255.

Then, as noted above, attempting to save record will result in error above for
jdbc drivers.  Native connector just changes the value and saves, usually the
value 0.

NOTE ALSO:
If values 128 to 255 already are stored in Field1, they will be correctly
displayed in the table view.  However, they will not be displayed correctly on
a form in a numeric field.  The form view just displays zero.

PRESENT WORKAROUND is to use bigger integer types so that I do not encounter
this bug.  However, other UNSIGNED integer types also appear to be affected by
this bug, just need bigger numbers to encounter them.  

Unable to test on odbc connector.  

Attempted to test on HSQLDB Embedded (LO type) but it does not support unsigned
integer types, which is the difference that presumably resulted in this bug.

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


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

2015-01-19 Thread Eike Rathke
 sc/source/core/tool/interpr4.cxx |4 
 1 file changed, 4 insertions(+)

New commits:
commit 913f777c08ce3f089d3155ed77338c9be26abc90
Author: Eike Rathke er...@redhat.com
Date:   Mon Jan 19 20:56:11 2015 +0100

add a comment about string conversion configuration

Change-Id: I7d939088a433e07195935ac7b8350b0030eb29b2

diff --git a/sc/source/core/tool/interpr4.cxx b/sc/source/core/tool/interpr4.cxx
index f695ea8..08f4dd5 100644
--- a/sc/source/core/tool/interpr4.cxx
+++ b/sc/source/core/tool/interpr4.cxx
@@ -206,6 +206,10 @@ bool isEmptyString( const OUString rStr )
 
 /** Convert string content to numeric value.
 
+Depending on the string conversion configuration different approaches are
+taken. For ScCalcConfig::STRING_CONVERSION_UNAMBIGUOUS if the string is not
+empty the following conversion rules are applied:
+
 Converted are only integer numbers including exponent, and ISO 8601 dates
 and times in their extended formats with separators. Anything else,
 especially fractional numeric values with decimal separators or dates other
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 86026] Cannot extract or open files OLE-embedded within a .doc(x) when they are from a non-Office type

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

--- Comment #5 from Gary Gruda gary.gr...@gmail.com ---
Screen Shot 2015-01-19 at 1.31.43 PM.png

Keep getting this message when trying to open downloaded templates. I've
uninstalled Java 8, reinstalled the same, quit the browser (Safari), quit
LibreOffice, restarted everything, and still get the same error when I know the
download and installation were done according to instuctions.

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


[Libreoffice-commits] core.git: avmedia/source fpicker/source setup_native/source shell/source vcl/win

2015-01-19 Thread Michael Stahl
 avmedia/source/win/player.cxx |
5 +
 fpicker/source/win32/misc/WinImplHelper.cxx   |
5 +
 setup_native/source/win32/customactions/shellextensions/startmenuicon.cxx |
8 +++-
 shell/source/win32/shlxthandler/propsheets/propsheets.cxx |
5 +
 shell/source/win32/shlxthandler/thumbviewer/thumbviewer.cxx   |
5 +
 shell/source/win32/shlxthandler/util/utilities.cxx|
5 +
 vcl/win/source/app/salinst.cxx|
6 ++
 7 files changed, 38 insertions(+), 1 deletion(-)

New commits:
commit 4500afcc1be7774b3c35ab69a20e36165ca5445a
Author: Michael Stahl mst...@redhat.com
Date:   Mon Jan 19 18:18:20 2015 +0100

try to fix GetVersionEx deprecation warnings from Windows SDK 8.1

Apparently GetVersionEx() is deprecated now, but the replacement header
versionhelpers.h does not exist in older SDKs (at least not in 8.0),
so try to determine the used SDK version by checking if the Windows 8.1
version constant _WIN32_WINNT_WINBLUE (0x0602) exists.


http://msdn.microsoft.com/en-us/library/windows/desktop/dn424972%28v=vs.85%29.aspx

Change-Id: Ia9224a8c76823ada7cb294a600046c6a0fc843ad
Reviewed-on: https://gerrit.libreoffice.org/14020
Tested-by: Jenkins c...@libreoffice.org
Reviewed-by: Michael Stahl mst...@redhat.com

diff --git a/avmedia/source/win/player.cxx b/avmedia/source/win/player.cxx
index baf72ad..1d7040b 100644
--- a/avmedia/source/win/player.cxx
+++ b/avmedia/source/win/player.cxx
@@ -68,12 +68,17 @@ LRESULT CALLBACK MediaPlayerWndProc_2( HWND hWnd,UINT nMsg, 
WPARAM nPar1, LPARAM
 
 bool isWindowsVistaOrHigher()
 {
+// the Win32 SDK 8.1 deprecates GetVersionEx()
+#ifdef _WIN32_WINNT_WINBLUE
+return IsWindowsVistaOrGreater() ? true : false;
+#else
 // POST: return true if we are at least on Windows Vista
 OSVERSIONINFO osvi;
 ZeroMemory(osvi, sizeof(osvi));
 osvi.dwOSVersionInfoSize = sizeof(osvi);
 GetVersionEx(osvi);
 return  osvi.dwMajorVersion = 6;
+#endif
 }
 
 
diff --git a/fpicker/source/win32/misc/WinImplHelper.cxx 
b/fpicker/source/win32/misc/WinImplHelper.cxx
index 84d76d7..8f470a2 100644
--- a/fpicker/source/win32/misc/WinImplHelper.cxx
+++ b/fpicker/source/win32/misc/WinImplHelper.cxx
@@ -63,6 +63,10 @@ const sal_Unicode   AMPERSAND_SIGN = L'';
 
 bool SAL_CALL IsWindowsVistaOrNewer()
 {
+// the Win32 SDK 8.1 deprecates GetVersionEx()
+#ifdef _WIN32_WINNT_WINBLUE
+return IsWindowsVistaOrGreater() ? true : false;
+#else
 OSVERSIONINFO osvi;
 osvi.dwOSVersionInfoSize = sizeof(osvi);
 
@@ -77,6 +81,7 @@ bool SAL_CALL IsWindowsVistaOrNewer()
  sal::static_int_cast unsigned int (0));
 
 return bRet;
+#endif
 }
 
 
diff --git 
a/setup_native/source/win32/customactions/shellextensions/startmenuicon.cxx 
b/setup_native/source/win32/customactions/shellextensions/startmenuicon.cxx
index f983338..5f8b15e 100644
--- a/setup_native/source/win32/customactions/shellextensions/startmenuicon.cxx
+++ b/setup_native/source/win32/customactions/shellextensions/startmenuicon.cxx
@@ -67,11 +67,17 @@ extern C UINT __stdcall InstallStartmenuFolderIcon( 
MSIHANDLE handle )
 std::_tstring sDesktopFile = sOfficeMenuFolder + TEXT(Desktop.ini);
 std::_tstring   sIconFile = GetMsiProperty( handle, 
TEXT(INSTALLLOCATION) ) + TEXT(program\\soffice.exe);
 
+// the Win32 SDK 8.1 deprecates GetVersionEx()
+#ifdef _WIN32_WINNT_WINBLUE
+bool const bIsVistaOrLater = IsWindowsVistaOrGreater() ? true : false;
+#else
 OSVERSIONINFO   osverinfo;
 osverinfo.dwOSVersionInfoSize = sizeof(OSVERSIONINFO);
 GetVersionEx( osverinfo );
+bool const bIsVistaOrLater = (osverinfo.dwMajorVersion = 6);
+#endif
 
-if (osverinfo.dwMajorVersion  6 /*  osverinfo.dwMinorVersion  */ )
+if (!bIsVistaOrLater)
 {
 WritePrivateProfileString(
 TEXT(.ShellClassInfo),
diff --git a/shell/source/win32/shlxthandler/propsheets/propsheets.cxx 
b/shell/source/win32/shlxthandler/propsheets/propsheets.cxx
index 936b3db..824b7fd 100644
--- a/shell/source/win32/shlxthandler/propsheets/propsheets.cxx
+++ b/shell/source/win32/shlxthandler/propsheets/propsheets.cxx
@@ -172,6 +172,10 @@ HRESULT STDMETHODCALLTYPE CPropertySheet::Initialize(
 
 HRESULT STDMETHODCALLTYPE CPropertySheet::AddPages(LPFNADDPROPSHEETPAGE 
lpfnAddPage, LPARAM lParam)
 {
+// the Win32 SDK 8.1 deprecates GetVersionEx()
+#ifdef _WIN32_WINNT_WINBLUE
+bool bIsVistaOrLater = IsWindowsVistaOrGreater() ? true : false;
+#else
 // Get OS version (we don't need the summary page on Windows Vista or 
later)
 OSVERSIONINFO sInfoOS;
 
@@ -179,6 +183,7 @@ HRESULT STDMETHODCALLTYPE 
CPropertySheet::AddPages(LPFNADDPROPSHEETPAGE lpfnAddP
 sInfoOS.dwOSVersionInfoSize = sizeof( OSVERSIONINFO );
 GetVersionEx( sInfoOS );
 bool 

[Libreoffice-bugs] [Bug 87217] the floating Sidebar moves back onto the side of the window at closing

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

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

   What|Removed |Added

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

--- Comment #19 from Jay Philips philip...@hotmail.com ---
It has also been merged into 4.4.0 and 4.4 daily.

https://gerrit.libreoffice.org/14022/
https://gerrit.libreoffice.org/14024/

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


Re: no 'object' file generated ?

2015-01-19 Thread Michael Stahl
On 19.01.2015 16:54, Michael Stahl wrote:

 the warning is printed in the next lines:
 
 C:/cygwin/home/tdf/lode/jenkins/workspace/lo_gerrit_master/Gerrit/Gerrit/Platform/Windows/shell/source/win32/shlxthandler/util/utilities.cxx(110)
  : warning C4996: 'GetVersionExW': was declared deprecated
 C:/PROGRA~2/WINDOW~4/8.1/include/umsysinfoapi.h(442) : see declaration of 
 'GetVersionExW'
 
 looks unrelated to your patch (and needs further investigation).

perhaps commit 4500afcc1be7774b3c35ab69a20e36165ca5445a fixes this now,
although i can't test it locally and evidently different Jenkins
buildbots are set up with different Windows SDK versions, so not
possible to know for sure now.


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


[Libreoffice-bugs] [Bug 88585] Feature request: user profile synchronization across multiple LO installs

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

V Stuart Foote vstuart.fo...@utsa.edu changed:

   What|Removed |Added

Summary|Feature request: user   |Feature request: user
   |synchronization.|profile synchronization
   ||across multiple LO installs

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


[Libreoffice-bugs] [Bug 86564] New colour selector: Addition to the standard formatting dialogs

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

--- Comment #6 from Jay Philips philip...@hotmail.com ---
(In reply to Cor Nouws from comment #5)
 However, the current drop downs have an advantage to: navigating with key
 board is fast and easy. down, page down, and the start letter of a color all
 work.

Unfortunately i dont see the drop down being very fast or easy as the colors
are not sorted by alphabet or gradient and there are way to many colors (167+)
to choose from.

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


[Libreoffice-ux-advise] [Bug 86564] New colour selector: Addition to the standard formatting dialogs

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

--- Comment #6 from Jay Philips philip...@hotmail.com ---
(In reply to Cor Nouws from comment #5)
 However, the current drop downs have an advantage to: navigating with key
 board is fast and easy. down, page down, and the start letter of a color all
 work.

Unfortunately i dont see the drop down being very fast or easy as the colors
are not sorted by alphabet or gradient and there are way to many colors (167+)
to choose from.

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


[Libreoffice-bugs] [Bug 87217] the floating Sidebar moves back onto the side of the window at closing

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

--- Comment #20 from V Stuart Foote vstuart.fo...@utsa.edu ---
(In reply to Jay Philips from comment #19)
 It has also been merged into 4.4.0 and 4.4 daily.
 
 https://gerrit.libreoffice.org/14022/
 https://gerrit.libreoffice.org/14024/

Huh? Those commits are for an issue with calc...

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


[Libreoffice-bugs] [Bug 86416] middle click paste truncates [Hard to reproduce]

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

--- Comment #24 from Todd toddandma...@zoho.com ---
(In reply to Beluga from comment #23)

 Yet, ClipIt seems to be abandoned:

I will just keep the Source RPM around so I can recompile it.

 Would you like to try Parcellite or some other manager:
 https://wiki.archlinux.org/index.php/clipboard#List_of_clipboard_managers

Parcellite (or the version that runs under SL 6.x) won't allow for the coping
and pasting of images.  Sigh.

You have a favorite replacement?

 
 Btw., I found your discussion about wine32 and SL 7.
 I tried this HOWTO build wine 32bit on CentOS 7:
 https://www.centos.org/forums/viewtopic.php?f=48t=49542
 But my wine build failed because of a symbolic link issue (I posted to the
 thread).

Wow!  What a tremendous amount of work!  And in Step 1, he made no mention of
where he is getting all those i686 packages from.  I book marked it, just in
case I ever have a free week with nothing else to do and decide to try
compiling it again.

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


[Libreoffice-bugs] [Bug 88594] LOCALHELP: LibreOffice compiled Help F1 crashing session

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

V Stuart Foote vstuart.fo...@utsa.edu changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||vstuart.fo...@utsa.edu
 Ever confirmed|0   |1
 OS|Windows (All)   |All

--- Comment #1 from V Stuart Foote vstuart.fo...@utsa.edu ---
Also present on 64-bit Linux (RHEL 6.5) en-US

Version: 4.5.0.0.alpha0+
Build ID: 07e84cae983c08afdba03018413a19d01abb3006
TinderBox: Linux-rpm_deb-x86_64@46-TDF, Branch:master, Time:
2015-01-19_06:14:43
Locale: en_US

master~2015-01-19_06.14.43_LibreOfficeDev_4.5.0.0.alpha0_Linux_x86-64_rpm.tar.gz
master~2015-01-19_06.14.43_LibreOfficeDev_4.5.0.0.alpha0_Linux_x86-64_rpm_helppack_en-US.tar.gz

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


[Libreoffice-bugs] [Bug 88339] EDITING: Moving images in Draw, Impress, and Calc now uses constrain by default

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

tmacalp tmac...@gmail.com changed:

   What|Removed |Added

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

--- Comment #11 from tmacalp tmac...@gmail.com ---
The Calc related patch was merged to master this morning, so I just submitted
its twin to 4.4 for review.  Hopefully we'll see that one in 4.4.1 too.

Though I'm still waiting on that last patch to be reviewed for 4.4, master is
already fixed.  So I'll be impatient and mark as resolved fixed!  :)

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


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

2015-01-19 Thread Trent MacAlpine
 sc/source/ui/drawfunc/fupoor.cxx |   19 ---
 1 file changed, 16 insertions(+), 3 deletions(-)

New commits:
commit fdff4b60b6d4beabadab15a4fceb60cb84e542d8
Author: Trent MacAlpine tmac...@gmail.com
Date:   Fri Jan 16 22:06:39 2015 -0500

fdo#88339 Fixed Calc constrained image movement

fixed on master by commit# 7a4a68e2515fa54e041004cf63042c1ead00d576

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

diff --git a/sc/source/ui/drawfunc/fupoor.cxx b/sc/source/ui/drawfunc/fupoor.cxx
index 979e7b6..d66a293 100644
--- a/sc/source/ui/drawfunc/fupoor.cxx
+++ b/sc/source/ui/drawfunc/fupoor.cxx
@@ -324,17 +324,30 @@ void FuPoor::ImpForceQuadratic(Rectangle rRect)
 }
 }
 
-// #i33136#
+// #i33136# fdo#88339
 bool FuPoor::doConstructOrthogonal() const
 {
-// Check whether an image is selected - they should scale proportionally
+// Detect whether we're moving an object or resizing.
+bool bIsMoveMode = false;
+if (pView-IsDragObj())
+{
+const SdrHdl* pHdl = pView-GetDragStat().GetHdl();
+if (!pHdl || (!pHdl-IsCornerHdl()  !pHdl-IsVertexHdl()))
+{
+bIsMoveMode = true;
+}
+}
+
+// Detect image and resize proportionally, but don't constrain movement by 
default
 if (pView-AreObjectsMarked())
 {
 const SdrMarkList rMarkList = pView-GetMarkedObjectList();
 if (rMarkList.GetMarkCount() == 1)
 {
-if (rMarkList.GetMark(0)-GetMarkedSdrObj()-GetObjIdentifier() == 
OBJ_GRAF)
+if (rMarkList.GetMark(0)-GetMarkedSdrObj()-GetObjIdentifier() == 
OBJ_GRAF  !bIsMoveMode)
+{
 return true;
+}
 }
 }
 return false;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 88339] EDITING: Moving images in Draw, Impress, and Calc now uses constrain by default

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

--- Comment #12 from Commit Notification 
libreoffice-comm...@lists.freedesktop.org ---
Trent MacAlpine committed a patch related to this issue.
It has been pushed to libreoffice-4-4:

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

fdo#88339 Fixed Calc constrained image movement

It will be available in 4.4.1.

The patch should be included in the daily builds available at
http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
http://wiki.documentfoundation.org/Testing_Daily_Builds
Affected users are encouraged to test the fix and report feedback.

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


[Libreoffice-bugs] [Bug 88077] Turning off 'Edit Mode' show infobar

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

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

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 88585] Feature request: user synchronization.

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

V Stuart Foote vstuart.fo...@utsa.edu changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||vstuart.fo...@utsa.edu
 Ever confirmed|0   |1

--- Comment #1 from V Stuart Foote vstuart.fo...@utsa.edu ---
@yanjingtao, *,

Any reason that simply copying per-user profile from system to system is not
sufficient?

So, guess this would have to be per individual user, where one of their systems
would need to be designated to host the master profile--and then other
systems would have to have access to it to synchronize against it. Both to
upload profile changes while using slave systems, but to also download user
profile to slave systems needing synchronize user-profiles.

Guess that might be functional--but, I don't see this as being something that
TDF would want to host for users. Are you suggesting that LibreOffice host this
as a service for users? Infrastructure for that does not exist and would be
prohibitive.

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


[Libreoffice-ux-advise] [Bug 87217] the floating Sidebar moves back onto the side of the window at closing

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

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

   What|Removed |Added

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

--- Comment #19 from Jay Philips philip...@hotmail.com ---
It has also been merged into 4.4.0 and 4.4 daily.

https://gerrit.libreoffice.org/14022/
https://gerrit.libreoffice.org/14024/

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


[Libreoffice-bugs] [Bug 65138] [META] Sidebar feature related issues

2015-01-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=65138
Bug 65138 depends on bug 87217, which changed state.

Bug 87217 Summary: the floating Sidebar moves back onto the side of the window 
at closing
https://bugs.freedesktop.org/show_bug.cgi?id=87217

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 87676] TOOLBAR: Hiding 'line and filling', 'text formatting' and image toolbars by default

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

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

   What|Removed |Added

Summary|TOOLBAR: Hiding 'line and   |TOOLBAR: Hiding 'line and
   |filling' and 'text  |filling', 'text formatting'
   |formatting' toolbars by |and image toolbars by
   |default |default

--- Comment #5 from Jay Philips philip...@hotmail.com ---
(In reply to Cor Nouws from comment #4)
 Is that worth the gain? I would expect people working with images would be
 annoyed.

Yes its about streamlining the UI, as the the properties tab of the sidebar has
most, if not all, features available in the 3 toolbars.

 Or is the plan to remove that one too (is all the stuff from the images
 toolbar to the side bar?) ?

Yes the image toolbar would also be hidden as well.

 (Now I see that when a frame is selected, the side bar has the character and
 paragraph parts of the panel active and not the area and line. Must be for
 another issue?)

When you say 'frame', do you mean textbox?

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


[Libreoffice-ux-advise] [Bug 87676] TOOLBAR: Hiding 'line and filling', 'text formatting' and image toolbars by default

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

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

   What|Removed |Added

Summary|TOOLBAR: Hiding 'line and   |TOOLBAR: Hiding 'line and
   |filling' and 'text  |filling', 'text formatting'
   |formatting' toolbars by |and image toolbars by
   |default |default

--- Comment #5 from Jay Philips philip...@hotmail.com ---
(In reply to Cor Nouws from comment #4)
 Is that worth the gain? I would expect people working with images would be
 annoyed.

Yes its about streamlining the UI, as the the properties tab of the sidebar has
most, if not all, features available in the 3 toolbars.

 Or is the plan to remove that one too (is all the stuff from the images
 toolbar to the side bar?) ?

Yes the image toolbar would also be hidden as well.

 (Now I see that when a frame is selected, the side bar has the character and
 paragraph parts of the panel active and not the area and line. Must be for
 another issue?)

When you say 'frame', do you mean textbox?

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


[Libreoffice-bugs] [Bug 88598] Missing word warp for basic objects in shortcut section

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

V Stuart Foote vstuart.fo...@utsa.edu changed:

   What|Removed |Added

 Attachment #112494|text/plain  |image/png
  mime type||

--- Comment #1 from V Stuart Foote vstuart.fo...@utsa.edu ---
Comment on attachment 112494
  -- https://bugs.freedesktop.org/attachment.cgi?id=112494
The Word warp text in shape is disabled and word warp is not working.

updated mime type

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


[Libreoffice-bugs] [Bug 42629] SUM, COUNT, COUNT², MAX, MIN, etc. Status bar toggle box for selections - Allow more than one

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

--- Comment #17 from Gabriele Ponzo gpo...@gmail.com ---
I'm not a programmer anymore (unfortunately), but I'd like to see this feature
implemented.

Could it be a good idea to insert it among Easy Hacks? Or it's not that so
easy?

I know a coder wondering to join TDF…

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


[Libreoffice-ux-advise] [Bug 87217] the floating Sidebar moves back onto the side of the window at closing

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

--- Comment #20 from V Stuart Foote vstuart.fo...@utsa.edu ---
(In reply to Jay Philips from comment #19)
 It has also been merged into 4.4.0 and 4.4 daily.
 
 https://gerrit.libreoffice.org/14022/
 https://gerrit.libreoffice.org/14024/

Huh? Those commits are for an issue with calc...

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


<    1   2   3   4