LibreOffice Gerrit News for core on 2014-08-16

2014-08-16 Thread gerrit
Moin!

* Open changes on master for project core changed in the last 25 hours:

 First time contributors doing great things! 
+ javaunohelper: The assigned value is sometimes used
  in https://gerrit.libreoffice.org/10941 from Robert Antoni Buj i Gelonch
  about module javaunohelper
+ javaunohelper: Use IndexOutOfBoundsException in decodeUTF8
  in https://gerrit.libreoffice.org/10940 from Robert Antoni Buj i Gelonch
  about module javaunohelper
 End of freshness 

+ upgrade to apache-commons-1.2
  in https://gerrit.libreoffice.org/10927 from Thomas Arnhold
  about module build, external, reportbuilder, swext
+ vcl: use enum for complex text layout constants
  in https://gerrit.libreoffice.org/10676 from Noel Grandin
  about module canvas, cppcanvas, drawinglayer, editeng, include, sc, starmath, 
svx, sw, vcl
+ new clang plugin referenceoverride
  in https://gerrit.libreoffice.org/10187 from Noel Grandin
  about module compilerplugins


* Merged changes on master for project core changed in the last 25 hours:

+ HIG-ization of latest Persona search dialog
  in https://gerrit.libreoffice.org/10936 from Olivier Hallot
+ Replaced %1's with URL's to make the errors more descriptive.
  in https://gerrit.libreoffice.org/10931 from Rachit Gupta
+ upgrade to openssl-1.0.1i
  in https://gerrit.libreoffice.org/10926 from Thomas Arnhold
+ XStyleLoader2 : correct idl description
  in https://gerrit.libreoffice.org/10923 from Laurent Godard
+ fdo#70625 Add --cat parameter to make git diffs pretty
  in https://gerrit.libreoffice.org/10623 from Deena P. F.


* Abandoned changes on master for project core changed in the last 25 hours:

+ fdo#80907 new implementing boost::make_shared for writerfilter::ooxml
  in https://gerrit.libreoffice.org/10526 from Fahad Al-Saidi


* Open changes needing tweaks, but being untouched for more than a week:

+ fdo#82290: Perform write(2) and read(2) concurrently to avoid pipe deadlo
  in https://gerrit.libreoffice.org/10825 from Jan Holesovsky
+ fdo#79422 Fix hang problem After ReplaceAll by closing Search Dialog
  in https://gerrit.libreoffice.org/10643 from Seyeong Kim
+ Rel fdo#48068: fix errors when 2 decimals in svg path position
  in https://gerrit.libreoffice.org/10544 from Joren De Cuyper
+ fdo#80996:Fix for DataLabel not preserved for ColumnChart after RT
  in https://gerrit.libreoffice.org/10169 from Dushyant Bhalgami
+ fdo#79018: LO hangs while opening file.
  in https://gerrit.libreoffice.org/9564 from Yogesh Bharate
+ Use assert instead of OSL_ASSERT in sal/
  in https://gerrit.libreoffice.org/10113 from Arnaud Versini
+ fdo#77716 : Paragraph spacing is not preserved after RT.
  in https://gerrit.libreoffice.org/9197 from Tushar Bende
+ fdo#77121 Header / Footer positions not preserved after RT
  in https://gerrit.libreoffice.org/9235 from Priyanka Gaikwad


Best,

Your friendly LibreOffice Gerrit Digest Mailer

Note: The bot generating this message can be found and improved here:
   
https://gerrit.libreoffice.org/gitweb?p=dev-tools.git;a=blob;f=gerritbot/send-daily-digest
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 82580] get rid of prewin.h / postwin.h wrapper headers

2014-08-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82580

--- Comment #1 from Tor Lillqvist t...@iki.fi ---
One note, that I sadly think needs to be spelled out: Please don't attempt to
do this unless you actually have Windows, Visual Studio, etc and are able to
build LibreOffice on Windows. Don't submit changes without verifying yourself
that they don't break the compilation.

-- 
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-commits] core.git: javaunohelper/com

2014-08-16 Thread rbuj
 javaunohelper/com/sun/star/lib/uno/helper/UnoUrl.java |7 +--
 1 file changed, 5 insertions(+), 2 deletions(-)

New commits:
commit b418ba93f48e361766f1aaa490292d3049501178
Author: rbuj robert@gmail.com
Date:   Sat Aug 16 00:14:26 2014 +0200

javaunohelper: The assigned value is sometimes used

Change-Id: I292921ef5b98ffbae9a0d5b631498a2d6efefbfd
Reviewed-on: https://gerrit.libreoffice.org/10941
Reviewed-by: Noel Grandin noelgran...@gmail.com
Tested-by: Noel Grandin noelgran...@gmail.com

diff --git a/javaunohelper/com/sun/star/lib/uno/helper/UnoUrl.java 
b/javaunohelper/com/sun/star/lib/uno/helper/UnoUrl.java
index ac5f05e..18700de 100644
--- a/javaunohelper/com/sun/star/lib/uno/helper/UnoUrl.java
+++ b/javaunohelper/com/sun/star/lib/uno/helper/UnoUrl.java
@@ -295,12 +295,15 @@ public class UnoUrl {
 
 private static UnoUrlPart parseUnoUrlPart(String thePart)
 throws com.sun.star.lang.IllegalArgumentException {
-String partName = thePart;
-String theParamPart = ;
+String partName;
+String theParamPart;
 int index = thePart.indexOf(,);
 if (index != -1) {
 partName = thePart.substring(0, index).trim();
 theParamPart = thePart.substring(index + 1).trim();
+} else {
+partName = thePart;
+theParamPart = ;
 }
 
 if (!isAlphaNumeric(partName)) {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2014-08-16 Thread Tor Lillqvist
 include/vcl/help.hxx |3 ---
 1 file changed, 3 deletions(-)

New commits:
commit d0ab0b08fad84f72a11c9234f759c08333637536
Author: Tor Lillqvist t...@collabora.com
Date:   Sat Aug 16 09:27:41 2014 +0300

OOO_HELP_HELPONHELP is unused

Change-Id: Iaabf05075bb51ed17abff5f4f4bb18c101e552a2

diff --git a/include/vcl/help.hxx b/include/vcl/help.hxx
index f1048fe..b41f6ad 100644
--- a/include/vcl/help.hxx
+++ b/include/vcl/help.hxx
@@ -50,12 +50,9 @@ class Window;
 #define QUICKHELP_BIDI_RTL  ((sal_uInt16)0x8000)
 
 #define OOO_HELP_INDEX  .help:index
-#define OOO_HELP_HELPONHELP .help:helponhelp
-
 
 // - Help -
 
-
 class VCL_DLLPUBLIC Help
 {
 public:
___
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' - cui/source

2014-08-16 Thread Eike Rathke
 cui/source/tabpages/numfmt.cxx |   15 ++-
 1 file changed, 14 insertions(+), 1 deletion(-)

New commits:
commit 2d52a907e26c306fa6738766409df2d7760fe3c4
Author: Eike Rathke er...@redhat.com
Date:   Fri Aug 15 22:41:58 2014 +0200

fdo#48110 disable the Automatically currency unless already used

This disables the Automatically currency listbox entry in the number
formats dialog and makes it unselectable, unless such currency format
was already used at the current position of a loaded document.

Getting completely rid of the listbox entry if not used is more
cumbersome as the positions are tied to the list entries in
SvxNumberFormatShell::aCurCurrencyList, but at least the disabled entry
prevents accidental or ill intended selection of that awkward format.

Change-Id: I16f3e88feede34e3f83afb108f253fb53d82d34d
(cherry picked from commit 2e3d7c742a1c1253c4bb2af1c3d1b1506d2e7af4)
Reviewed-on: https://gerrit.libreoffice.org/10939
Reviewed-by: Markus Mohrhard markus.mohrh...@googlemail.com
Tested-by: Markus Mohrhard markus.mohrh...@googlemail.com

diff --git a/cui/source/tabpages/numfmt.cxx b/cui/source/tabpages/numfmt.cxx
index 76a7743..52d2356 100644
--- a/cui/source/tabpages/numfmt.cxx
+++ b/cui/source/tabpages/numfmt.cxx
@@ -531,7 +531,15 @@ void SvxNumberFormatTabPage::Reset( const SfxItemSet rSet 
)
 pNumFmtShell-GetInitSettings( nCatLbSelPos, eLangType, nFmtLbSelPos,
aFmtEntryList, aPrevString, pDummy );
 
-
m_pLbCurrency-SelectEntryPos((sal_Int32)pNumFmtShell-GetCurrencySymbol());
+if (nCatLbSelPos==CAT_CURRENCY)
+{
+sal_Int32 nPos = pNumFmtShell-GetCurrencySymbol();
+if (nPos == 0)
+// Enable Automatically if currently used so it is selectable.
+m_pLbCurrency-SetEntryFlags( nPos, 0);
+
+m_pLbCurrency-SelectEntryPos(nPos);
+}
 
 nFixedCategory=nCatLbSelPos;
 if(bOneAreaFlag)
@@ -1680,6 +1688,11 @@ void SvxNumberFormatTabPage::FillCurrencyBox()
 for(std::vectorOUString::iterator i = aList.begin() + 1;i != 
aList.end(); ++i)
 m_pLbCurrency-InsertEntry(*i);
 
+// Initially disable the Automatically entry. First ensure that nothing
+// is selected, else if the to be disabled (first) entry was selected it
+// would be sticky when disabled and could not be deselected!
+m_pLbCurrency-SetNoSelection();
+m_pLbCurrency-SetEntryFlags( 0, LISTBOX_ENTRY_FLAG_DISABLE_SELECTION | 
LISTBOX_ENTRY_FLAG_DRAW_DISABLED);
 m_pLbCurrency-SelectEntryPos(nSelPos);
 }
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Bug 65675] LibreOffice 4.2 most annoying bugs

2014-08-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=65675

Bug 65675 depends on bug 57433, which changed state.

Bug 57433 Summary: There is no border between the document and the toolbar area
https://bugs.freedesktop.org/show_bug.cgi?id=57433

   What|Removed |Added

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

-- 
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 65675] LibreOffice 4.2 most annoying bugs

2014-08-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=65675

Bug 65675 depends on bug 57433, which changed state.

Bug 57433 Summary: There is no border between the document and the toolbar area
https://bugs.freedesktop.org/show_bug.cgi?id=57433

   What|Removed |Added

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

-- 
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-commits] core.git: dbaccess/source extensions/source include/vcl unusedcode.easy vcl/source

2014-08-16 Thread Caolán McNamara
 dbaccess/source/ui/control/charsetlistbox.cxx |   16 ---
 dbaccess/source/ui/dlg/adminpages.cxx |   11 --
 dbaccess/source/ui/dlg/adminpages.hxx |1 
 dbaccess/source/ui/inc/charsetlistbox.hxx |1 
 extensions/source/dbpilots/commonpagesdbp.cxx |   15 --
 extensions/source/dbpilots/commonpagesdbp.hxx |1 
 include/vcl/menubtn.hxx   |2 -
 include/vcl/tabctrl.hxx   |2 -
 unusedcode.easy   |6 ++---
 vcl/source/control/menubtn.cxx|   27 --
 vcl/source/control/tabctrl.cxx|   25 
 11 files changed, 4 insertions(+), 103 deletions(-)

New commits:
commit 7c1e12af8794db56a5dd9eeaea7067e6eff6584d
Author: Caolán McNamara caol...@redhat.com
Date:   Sat Aug 16 10:39:54 2014 +0100

callcatcher: update unused code

res ctor fallout continues at pace

Change-Id: Ic431c678919a6521ce94719cbf06b87ebf922a0c

diff --git a/dbaccess/source/ui/control/charsetlistbox.cxx 
b/dbaccess/source/ui/control/charsetlistbox.cxx
index 371f372..7327a58 100644
--- a/dbaccess/source/ui/control/charsetlistbox.cxx
+++ b/dbaccess/source/ui/control/charsetlistbox.cxx
@@ -25,22 +25,8 @@
 
 namespace dbaui
 {
-// CharSetListBox
-CharSetListBox::CharSetListBox( Window* _pParent, const ResId _rResId )
-:ListBox( _pParent, _rResId )
-{
-SetDropDownLineCount( 20 );
-
-OCharsetDisplay::const_iterator charSet = m_aCharSets.begin();
-while ( charSet != m_aCharSets.end() )
-{
-InsertEntry( (*charSet).getDisplayName() );
-++charSet;
-}
-}
-
 CharSetListBox::CharSetListBox( Window* _pParent, WinBits _nBits = 
WB_DROPDOWN )
-:ListBox( _pParent, _nBits )
+: ListBox( _pParent, _nBits )
 {
 SetDropDownLineCount( 20 );
 
diff --git a/dbaccess/source/ui/dlg/adminpages.cxx 
b/dbaccess/source/ui/dlg/adminpages.cxx
index 292b73a..1b23afb 100644
--- a/dbaccess/source/ui/dlg/adminpages.cxx
+++ b/dbaccess/source/ui/dlg/adminpages.cxx
@@ -56,17 +56,6 @@ namespace dbaui
 {
 }
 
-// OGenericAdministrationPage
-OGenericAdministrationPage::OGenericAdministrationPage(Window* _pParent, 
const ResId _rId, const SfxItemSet _rAttrSet)
-:SfxTabPage(_pParent, _rId, _rAttrSet)
-,m_abEnableRoadmap(false)
-,m_pAdminDialog(NULL)
-,m_pItemSetHelper(NULL)
-{
-
-SetExchangeSupport(true);
-}
-
 OGenericAdministrationPage::OGenericAdministrationPage(Window* _pParent, 
const OString _rId, const OUString _rUIXMLDescription, const SfxItemSet 
_rAttrSet)
 :SfxTabPage(_pParent, _rId, _rUIXMLDescription, _rAttrSet)
 ,m_abEnableRoadmap(false)
diff --git a/dbaccess/source/ui/dlg/adminpages.hxx 
b/dbaccess/source/ui/dlg/adminpages.hxx
index 88a8784..bf6ec61 100644
--- a/dbaccess/source/ui/dlg/adminpages.hxx
+++ b/dbaccess/source/ui/dlg/adminpages.hxx
@@ -102,7 +102,6 @@ namespace dbaui
 ::com::sun::star::uno::Reference 
::com::sun::star::uno::XComponentContext 
 m_xORB;
 public:
-OGenericAdministrationPage(Window* _pParent, const ResId _rId, const 
SfxItemSet _rAttrSet);
 OGenericAdministrationPage(Window* _pParent, const OString _rId, 
const OUString _rUIXMLDescription, const SfxItemSet _rAttrSet);
 /// set a handler which gets called every time something on the page 
has been modified
 void SetModifiedHandler(const Link _rHandler) { m_aModifiedHandler = 
_rHandler; }
diff --git a/dbaccess/source/ui/inc/charsetlistbox.hxx 
b/dbaccess/source/ui/inc/charsetlistbox.hxx
index 5a0df9d..990c9df 100644
--- a/dbaccess/source/ui/inc/charsetlistbox.hxx
+++ b/dbaccess/source/ui/inc/charsetlistbox.hxx
@@ -33,7 +33,6 @@ namespace dbaui
 class CharSetListBox : public ListBox
 {
 public:
-CharSetListBox( Window* _pParent, const ResId _rResId );
 CharSetListBox( Window* _pParent, WinBits _nBits );
 virtual ~CharSetListBox();
 
diff --git a/extensions/source/dbpilots/commonpagesdbp.cxx 
b/extensions/source/dbpilots/commonpagesdbp.cxx
index 25090d8..fdd481c 100644
--- a/extensions/source/dbpilots/commonpagesdbp.cxx
+++ b/extensions/source/dbpilots/commonpagesdbp.cxx
@@ -375,19 +375,6 @@ namespace dbp
 }
 }
 
-
-//= OMaybeListSelectionPage
-
-
-OMaybeListSelectionPage::OMaybeListSelectionPage( OControlWizard* 
_pParent, const ResId _rId )
-:OControlWizardPage(_pParent, _rId)
-,m_pYes(NULL)
-,m_pNo(NULL)
-,m_pList(NULL)
-{
-}
-
-
 OMaybeListSelectionPage::OMaybeListSelectionPage( OControlWizard* 
_pParent, const OString _rID, const OUString _rUIXMLDescription )
 :OControlWizardPage(_pParent, _rID, _rUIXMLDescription)
 ,m_pYes(NULL)
@@ -396,7 +383,6 @@ namespace dbp
 {
 }
 
-
 void 

Re: Context Menu - Writer

2014-08-16 Thread Olivier R.
Hi,

See XContextMenuInterceptor:
http://opengrok.libreoffice.org/search?q=XContextMenuInterceptorproject=coredefs=refs=path=hist=

I implemented a modification of the context menu in Grammalecte :
http://www.dicollecte.org/grammalecte/telecharger.php

Unzip the oxt and have a look in ContextMenu.py.

Regards,
Olivier




--
View this message in context: 
http://nabble.documentfoundation.org/Context-Menu-Writer-tp4119159p4119192.html
Sent from the Dev mailing list archive at Nabble.com.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


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

2014-08-16 Thread Caolán McNamara
 desktop/source/app/app.cxx |8 
 desktop/source/app/desktop.hrc |4 ++--
 desktop/source/app/desktop.src |6 ++
 3 files changed, 8 insertions(+), 10 deletions(-)

New commits:
commit 36efd0f9c7e4ce6217c981fc439274a036bb02c1
Author: Caolán McNamara caol...@redhat.com
Date:   Sat Aug 16 12:13:38 2014 +0100

try that ErrorBox removal again

Change-Id: I1d2f24def771651d36f06432c20e80429379c9fe

diff --git a/desktop/source/app/app.cxx b/desktop/source/app/app.cxx
index 8eed982..0332f90 100644
--- a/desktop/source/app/app.cxx
+++ b/desktop/source/app/app.cxx
@@ -92,7 +92,7 @@
 #include svtools/menuoptions.hxx
 #include rtl/bootstrap.hxx
 #include vcl/help.hxx
-#include vcl/msgbox.hxx
+#include vcl/layout.hxx
 #include vcl/settings.hxx
 #include sfx2/sfx.hrc
 #include sfx2/app.hxx
@@ -768,7 +768,7 @@ void Desktop::HandleBootstrapPathErrors( 
::utl::Bootstrap::Status aBootstrapStat
 
 OUString const aMessage(aDiagnosticMessage + \n);
 
-ErrorBox aBootstrapFailedBox( NULL, WB_OK, aMessage );
+MessageDialog aBootstrapFailedBox(NULL, aMessage);
 aBootstrapFailedBox.SetText( aProductKey );
 aBootstrapFailedBox.Execute();
 }
@@ -1173,7 +1173,7 @@ void restartOnMac(bool passArguments) {
 ResMgr *resMgr = Desktop::GetDesktopResManager();
 OUString aMessage = ResId(STR_LO_MUST_BE_RESTARTED, *resMgr).toString();
 
-ErrorBox aRestartBox( NULL, WB_OK, aMessage );
+MessageDialog aRestartBox(NULL, aMessage);
 aRestartBox.Execute();
 #else
 OUString execUrl;
@@ -2434,7 +2434,7 @@ void Desktop::OpenClients()
 ResMgr* pDtResMgr = GetDesktopResManager();
 if( pDtResMgr )
 {
-ErrorBox aBox( NULL, ResId( EBX_ERR_PRINTDISABLED, *pDtResMgr 
) );
+MessageDialog aBox(NULL, ResId(STR_ERR_PRINTDISABLED, 
*pDtResMgr));
 aBox.Execute();
 }
 }
diff --git a/desktop/source/app/desktop.hrc b/desktop/source/app/desktop.hrc
index e9caf4a..8a7affc 100644
--- a/desktop/source/app/desktop.hrc
+++ b/desktop/source/app/desktop.hrc
@@ -28,8 +28,6 @@
 
 #define QBX_USERDATALOCKED  (RID_DESKTOP_DIALOG_START+100)
 
-#define EBX_ERR_PRINTDISABLED   (RID_DESKTOP_DIALOG_START+190)
-
 #define STR_RECOVER_QUERY   (RID_DESKTOP_STRING_START+0)
 #define STR_RECOVER_TITLE   (RID_DESKTOP_STRING_START+1)
 #define STR_RECOVER_PREPARED(RID_DESKTOP_STRING_START+2)
@@ -52,6 +50,8 @@
 
 #define STR_ASK_START_SETUP_MANUALLY(RID_DESKTOP_STRING_START+152)
 
+#define STR_ERR_PRINTDISABLED   (RID_DESKTOP_STRING_START+153)
+
 #define STR_INTERNAL_ERRMSG (RID_DESKTOP_STRING_START+161)
 #define STR_LO_MUST_BE_RESTARTED(RID_DESKTOP_STRING_START+162)
 
diff --git a/desktop/source/app/desktop.src b/desktop/source/app/desktop.src
index 1036b21..b109a0e 100644
--- a/desktop/source/app/desktop.src
+++ b/desktop/source/app/desktop.src
@@ -151,11 +151,9 @@ String STR_TITLE_USERDATALOCKED
 Text [ en-US ] = %PRODUCTNAME %PRODUCTVERSION;
 };
 
-ErrorBox EBX_ERR_PRINTDISABLED
+String STR_ERR_PRINTDISABLED
 {
-Buttons = WB_OK ;
-DefButton = WB_DEF_OK ;
-Message [ en-US ] = Printing is disabled. No documents can be printed.;
+Text [ en-US ] = Printing is disabled. No documents can be printed.;
 };
 
 String STR_TITLE_EXPIRED
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2014-08-16 Thread Julien Nabet
 chart2/source/view/charttypes/GL3DBarChart.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit e74ddb13c5ea0431058f3bc3a76ad24c9b0cb140
Author: Julien Nabet serval2...@yahoo.fr
Date:   Sat Aug 16 12:10:31 2014 +0200

cppcheck: Prefer prefix ++/-- operators

Change-Id: I3b0f66ad96813b064d61ea8b2ed6f2c383a11390

diff --git a/chart2/source/view/charttypes/GL3DBarChart.cxx 
b/chart2/source/view/charttypes/GL3DBarChart.cxx
index 0299b92..8f9d8ec 100644
--- a/chart2/source/view/charttypes/GL3DBarChart.cxx
+++ b/chart2/source/view/charttypes/GL3DBarChart.cxx
@@ -1011,7 +1011,7 @@ void GL3DBarChart::updateClickEvent()
 {
 std::listfloat aList = maBarHistory[mSelectBarId];
 sal_uInt32 idex = 0;
-for (std::listfloat::iterator it = aList.begin();it != 
aList.end();it++)
+for (std::listfloat::iterator it = aList.begin();it != 
aList.end();++it)
 {
 OUString aBarValue;
 if (idex + 1 == aList.size())
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2014-08-16 Thread Julien Nabet
 dbaccess/source/core/api/SingleSelectQueryComposer.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 1bae7f5a5732068fa7181cbffdd10b62022a5e30
Author: Julien Nabet serval2...@yahoo.fr
Date:   Sat Aug 16 13:43:40 2014 +0200

cppcheck: Throwing the original exception

Change-Id: I0d2678dd86e42f882e8ed9926917f1e82746997e

diff --git a/dbaccess/source/core/api/SingleSelectQueryComposer.cxx 
b/dbaccess/source/core/api/SingleSelectQueryComposer.cxx
index d420d06..c3c99f9 100644
--- a/dbaccess/source/core/api/SingleSelectQueryComposer.cxx
+++ b/dbaccess/source/core/api/SingleSelectQueryComposer.cxx
@@ -1679,7 +1679,7 @@ void OSingleSelectQueryComposer::setConditionByColumn( 
const Reference XPropert
 }
 else
 {
-throw e;
+throw;
 }
 }
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: Context Menu - Writer

2014-08-16 Thread Tomaž Vajngerl
Hi,

On Sat, Aug 16, 2014 at 12:16 AM, Marcos Souza marcoo...@gmail.com wrote:
 Hello guys,

 I'm trying to contribute to LibreOffice. But I can not find the piece of
 code that refers to the 'context menu' in writer module.
 I would like to do what suggests Bug 62947 in bugzilla.
 Could anyone help me with this? I really want to contribute but can not find
 me in the code.
 I already have the code on my computer.
 Thank you.

 PS: Sorry for my English.


I gave some code pointers as comment in the bug.

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


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

2014-08-16 Thread Chris Sherlock
 odk/source/com/sun/star/lib/loader/Loader.java |1 +
 1 file changed, 1 insertion(+)

New commits:
commit 3579f76f151b26c42b1bd9dfc2374132ff61cca1
Author: Chris Sherlock chris.sherloc...@gmail.com
Date:   Sat Aug 16 22:23:08 2014 +1000

Suppress unchecked warning - this is fine

Change-Id: I69f47cf975a9ed91d4a1408351b5ad1751aab19e

diff --git a/odk/source/com/sun/star/lib/loader/Loader.java 
b/odk/source/com/sun/star/lib/loader/Loader.java
index 0c55d19..908e3f0 100644
--- a/odk/source/com/sun/star/lib/loader/Loader.java
+++ b/odk/source/com/sun/star/lib/loader/Loader.java
@@ -124,6 +124,7 @@ public final class Loader {
 ClassLoader cl = getCustomLoader();
 Thread.currentThread().setContextClassLoader(cl);
 Class c = cl.loadClass( className );
+@SuppressWarnings(unchecked)
 Method m = c.getMethod( main, new Class[] { String[].class } );
 m.invoke( null, new Object[] { args } );
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2014-08-16 Thread Chris Sherlock
 sfx2/source/dialog/backingwindow.cxx |   10 --
 1 file changed, 10 deletions(-)

New commits:
commit 97e1d52db4ffd49d6d8e9c4030e1e675c3517e18
Author: Chris Sherlock chris.sherloc...@gmail.com
Date:   Sat Aug 16 23:25:16 2014 +1000

sfx2: remove commented consts

Change-Id: I1521f174ac53c2e8e96dcb7b5c1264f0bf460fd0

diff --git a/sfx2/source/dialog/backingwindow.cxx 
b/sfx2/source/dialog/backingwindow.cxx
index 28179f9..60ab3fd 100644
--- a/sfx2/source/dialog/backingwindow.cxx
+++ b/sfx2/source/dialog/backingwindow.cxx
@@ -69,15 +69,6 @@ const char TEMPLATE_URL[] =   slot:5500;
 const char OPEN_URL[] =   .uno:Open;
 const char SERVICENAME_CFGREADACCESS[] = 
com.sun.star.configuration.ConfigurationAccess;
 
-//const char TEMPLATEBAR_SAVE[] = template_save;
-//const char TEMPLATEBAR_OPEN[] = open;
-//const char TEMPLATEBAR_EDIT[] = edit;
-//const char TEMPLATEBAR_PROPERTIES[] = properties;
-//const char TEMPLATEBAR_DEFAULT[] = default;
-//const char TEMPLATEBAR_MOVE[] = move;
-//const char TEMPLATEBAR_EXPORT[] = export;
-//const char TEMPLATEBAR_DELETE[] = template_delete;
-
 float fMultiplier = 1.4f;
 const Color aButtonsBackground(114, 168, 84); // TDF green
 const Color aButtonsText(COL_WHITE);
@@ -629,7 +620,6 @@ IMPL_LINK(BackingWindow, OpenTemplateHdl, 
ThumbnailViewItem*, pItem)
 try
 {
 dispatchURL( pTemplateItem-getPath(), _default, xFrame, aArgs );
-
//mxDesktop-loadComponentFromURL(pTemplateItem-getPath(),_default, 0, aArgs 
);
 }
 catch( const uno::Exception )
 {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: 2 commits - config_host.mk.in configure.ac writerfilter/CustomTarget_source.mk

2014-08-16 Thread Miklos Vajna
 config_host.mk.in   |1 +
 configure.ac|4 
 writerfilter/CustomTarget_source.mk |   13 +++--
 3 files changed, 16 insertions(+), 2 deletions(-)

New commits:
commit f8bed01825a72c906c320cd41751db35ff6d5b89
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Sat Aug 16 17:33:42 2014 +0200

writerfilter: abort build if model.xml does not validate

Most of the scripts parsing model.xml just load it as a DOM and extract
info from it needed for their task, which means if you have a typo in an
element / attribute name, it's just silently ignored.

This is annoying, let's prevent that by validating the model before
doing anything with it.

Change-Id: I4229e57c12840fead62cbd150dd1408f2f0d29eb

diff --git a/writerfilter/CustomTarget_source.mk 
b/writerfilter/CustomTarget_source.mk
index 1ac643c..6e751c0 100644
--- a/writerfilter/CustomTarget_source.mk
+++ b/writerfilter/CustomTarget_source.mk
@@ -13,6 +13,7 @@ writerfilter_WORK := $(call 
gb_CustomTarget_get_workdir,writerfilter/source)
 writerfilter_SRC := $(SRCDIR)/writerfilter/source
 
 writerfilter_PYTHONCOMMAND := $(call gb_ExternalExecutable_get_command,python)
+writerfilter_XMLLINTCOMMAND := $(call 
gb_ExternalExecutable_get_command,xmllint)
 
 writerfilter_OOXMLNAMESPACES= \
dml-baseStylesheet \
@@ -51,6 +52,7 @@ writerfilter_ALL = \
$(writerfilter_GEN_ooxml_NamespaceIds_hxx) \
$(writerfilter_GEN_ooxml_QNameToStr_cxx) \
$(writerfilter_GEN_ooxml_ResourceIds_hxx) \
+   $(writerfilter_GEN_ooxml_Model_validated) \
$(writerfilter_GEN_ooxml_Model_processed) \
$(patsubst 
%,$(writerfilter_WORK)/ooxml/OOXMLFactory_%.hxx,$(writerfilter_OOXMLNAMESPACES))
 \
$(patsubst 
%,$(writerfilter_WORK)/ooxml/OOXMLFactory_%.cxx,$(writerfilter_OOXMLNAMESPACES))
 \
@@ -59,6 +61,7 @@ writerfilter_DEP_ooxml_Namespaces_txt=$(call 
gb_CustomTarget_get_workdir,oox/gen
 
writerfilter_GEN_ooxml_FactoryValues_hxx=$(writerfilter_WORK)/ooxml/OOXMLFactory_values.hxx
 
writerfilter_GEN_ooxml_Factory_cxx=$(writerfilter_WORK)/ooxml/OOXMLFactory_generated.cxx
 
writerfilter_GEN_ooxml_Factory_hxx=$(writerfilter_WORK)/ooxml/OOXMLFactory_generated.hxx
+writerfilter_GEN_ooxml_Model_validated=$(writerfilter_WORK)/ooxml/model.validated
 
writerfilter_GEN_ooxml_Model_processed=$(writerfilter_WORK)/ooxml/model_preprocessed.xml
 
writerfilter_GEN_ooxml_NamespaceIds_hxx=$(writerfilter_WORK)/ooxml/OOXMLnamespaceids.hxx
 writerfilter_GEN_ooxml_QNameToStr_cxx=$(writerfilter_WORK)/ooxml/qnametostr.cxx
@@ -76,7 +79,13 @@ $(writerfilter_GEN_ooxml_Factory_hxx) : 
$(writerfilter_SRC)/ooxml/factoryinc.py
$(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),build,PY ,1)
$(call gb_Helper_abbreviate_dirs, $(writerfilter_PYTHONCOMMAND) $ 
$(writerfilter_GEN_ooxml_Model_processed))  $@
 
-$(writerfilter_GEN_ooxml_Model_processed) : 
$(writerfilter_SRC_ooxml_Preprocess_py) 
$(writerfilter_DEP_ooxml_Namespaces_txt) $(writerfilter_SRC_ooxml_Model) | 
$(writerfilter_WORK)/ooxml/.dir
+$(writerfilter_GEN_ooxml_Model_validated) : $(writerfilter_SRC_ooxml_Model)
+   $(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),build,VAL,1)
+   $(call gb_Helper_abbreviate_dirs,\
+   $(writerfilter_XMLLINTCOMMAND) --noout --relaxng 
$(writerfilter_SRC)/../documentation/ooxml/model.rng 
$(writerfilter_SRC_ooxml_Model)  $@ 21 \
+   || (cat $@; false))
+
+$(writerfilter_GEN_ooxml_Model_processed) : 
$(writerfilter_SRC_ooxml_Preprocess_py) 
$(writerfilter_DEP_ooxml_Namespaces_txt) 
$(writerfilter_GEN_ooxml_Model_validated)
$(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),build,PY ,1)
$(call gb_Helper_abbreviate_dirs, $(writerfilter_PYTHONCOMMAND) 
$(writerfilter_SRC_ooxml_Preprocess_py) 
$(writerfilter_DEP_ooxml_Namespaces_txt) $(writerfilter_SRC_ooxml_Model))  $@
 
@@ -103,6 +112,6 @@ $(writerfilter_WORK)/ooxml/OOXMLFactory%.hxx : 
$(writerfilter_SRC)/ooxml/factory
 
 $(call gb_CustomTarget_get_target,writerfilter/source) : $(writerfilter_ALL)
 
-$(writerfilter_ALL) :| $(call gb_ExternalExecutable_get_dependencies,python) 
$(writerfilter_WORK)/ooxml/.dir
+$(writerfilter_ALL) :| $(call gb_ExternalExecutable_get_dependencies,python) 
$(call gb_ExternalExecutable_get_dependencies,xmllint) 
$(writerfilter_WORK)/ooxml/.dir
 
 # vim: set noet sw=4 ts=4:
commit c9cf219dc57393d6efbfa756834c8c97b7cd4dff
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Sat Aug 16 17:33:04 2014 +0200

Fix $(call gb_ExternalExecutable_get_command,xmllint) in case of system 
libxml

Change-Id: If9b32b09fd8cbf8b194b75357494d99aaa3fe06e

diff --git a/config_host.mk.in b/config_host.mk.in
index 1d4520cf..f438432 100644
--- a/config_host.mk.in
+++ b/config_host.mk.in
@@ -544,6 +544,7 @@ export SYSTEM_LIBLANGTAG=@SYSTEM_LIBLANGTAG@
 export SYSTEM_LIBORCUS=@SYSTEM_LIBORCUS@
 export SYSTEM_LIBPNG=@SYSTEM_LIBPNG@
 export 

[Libreoffice-commits] core.git: 4 commits - include/postwin.h vcl/win

2014-08-16 Thread Tor Lillqvist
 include/postwin.h |   18 --
 vcl/win/source/gdi/salbmp.cxx |   19 +++
 2 files changed, 3 insertions(+), 34 deletions(-)

New commits:
commit a8669b56b194a7cd6da771dfb9904710da24c0b4
Author: Tor Lillqvist t...@collabora.com
Date:   Sat Aug 16 11:48:48 2014 +0300

fdo#82580: Win32 GetObject() simplification

We call the Win32 GetObject() in just one source file and there it is
the A version we mean. (As such, as we call it to get BITMAP objects,
which do not have different A and W variants, we could as well call
GetObjectW().)

Note that we have several own member functions called GetObject(), so
until those are renamed we still need to #undef the GetObject
definition (from windows.h).

(No, I am not working on the EasyHack fdo#82580 as a whole. It is
intended for some less mature LO contributor. I just did a few small
things because I couldn't resist.)

Change-Id: Idab79503b3d899ef19f0608677752a62b20302ff

diff --git a/include/postwin.h b/include/postwin.h
index a76bcb8..64ac27e 100644
--- a/include/postwin.h
+++ b/include/postwin.h
@@ -34,16 +34,7 @@
 #undef WB_LEFT
 #undef WB_RIGHT
 
-#ifdef GetObject
 #undef GetObject
-#ifdef UNICODE
-#define WIN_GetObject   GetObjectW
-#else
-#define WIN_GetObject   GetObjectA
-#endif
-#else
-#define WIN_GetObject   GetObject
-#endif
 
 #ifdef SetPrinter
 #undef SetPrinter
diff --git a/vcl/win/source/gdi/salbmp.cxx b/vcl/win/source/gdi/salbmp.cxx
index 2bccbd7..9121444 100644
--- a/vcl/win/source/gdi/salbmp.cxx
+++ b/vcl/win/source/gdi/salbmp.cxx
@@ -43,21 +43,8 @@
 #pragma warning(push, 1)
 #endif
 
-#ifdef __MINGW32__
-#ifdef GetObject
-#undef GetObject
-#endif
-#define GetObject GetObjectA
-#endif
-
 #include gdiplus.h
 
-#ifdef __MINGW32__
-#ifdef GetObject
-#undef GetObject
-#endif
-#endif
-
 #if defined _MSC_VER
 #pragma warning(pop)
 #endif
@@ -555,7 +542,7 @@ bool WinSalBitmap::Create( HANDLE hBitmap, bool bDIB, bool 
bCopyHandle )
 {
 BITMAP  aDDBInfo;
 
-if( WIN_GetObject( mhDDB, sizeof( BITMAP ), aDDBInfo ) )
+if( GetObjectA( mhDDB, sizeof( BITMAP ), aDDBInfo ) )
 {
 maSize = Size( aDDBInfo.bmWidth, aDDBInfo.bmHeight );
 mnBitCount = aDDBInfo.bmPlanes * aDDBInfo.bmBitsPixel;
@@ -651,7 +638,7 @@ bool WinSalBitmap::Create( const SalBitmap rSSalBmp, 
SalGraphics* pSGraphics )
 
 GlobalUnlock( rSalBmp.mhDIB );
 
-if( hNewDDB  WIN_GetObject( hNewDDB, sizeof( BITMAP ), aDDBInfo ) )
+if( hNewDDB  GetObjectA( hNewDDB, sizeof( BITMAP ), aDDBInfo ) )
 {
 mhDDB = hNewDDB;
 maSize = Size( aDDBInfo.bmWidth, aDDBInfo.bmHeight );
@@ -839,7 +826,7 @@ HANDLE WinSalBitmap::ImplCopyDIBOrDDB( HANDLE hHdl, bool 
bDIB )
 BITMAP aBmp;
 
 // find out size of source bitmap
-WIN_GetObject( hHdl, sizeof( BITMAP ), (LPSTR) aBmp );
+GetObjectA( hHdl, sizeof( BITMAP ), (LPSTR) aBmp );
 
 // create destination bitmap
 if ( (hCopy = CreateBitmapIndirect( aBmp )) != 0 )
commit bc19caa4f17ccbcd6e08634ae635fd9c741473ad
Author: Tor Lillqvist t...@collabora.com
Date:   Sat Aug 16 11:08:22 2014 +0300

WIN_MOUSE_MOVED and MOUSE_MOVED are unused

Change-Id: I1edfa97d9874c70fcc61d1b521c905fb499a9bd1

diff --git a/include/postwin.h b/include/postwin.h
index fd39b90..a76bcb8 100644
--- a/include/postwin.h
+++ b/include/postwin.h
@@ -29,9 +29,6 @@
 #undef Folder
 #undef GradientStyle_RECT
 
-#define WIN_MOUSE_MOVED 0x0001
-#undef MOUSE_MOVED
-
 #define WIN_WB_LEFT   0
 #define WIN_WB_RIGHT  1
 #undef WB_LEFT
commit 05d53a3fbd7cd2d23975700ad38d2a69a2fdddee
Author: Tor Lillqvist t...@collabora.com
Date:   Sat Aug 16 10:52:25 2014 +0300

WIN_HELP_HELPONHELP and HELP_HELPONHELP are unused

Change-Id: I54830ba65961f8f7ab6fa3555a1e6021b14cdb1c

diff --git a/include/postwin.h b/include/postwin.h
index 68c4f5c..fd39b90 100644
--- a/include/postwin.h
+++ b/include/postwin.h
@@ -29,10 +29,6 @@
 #undef Folder
 #undef GradientStyle_RECT
 
-/* rename help IDs */
-#define WIN_HELP_HELPONHELP  0x0004
-#undef HELP_HELPONHELP
-
 #define WIN_MOUSE_MOVED 0x0001
 #undef MOUSE_MOVED
 
commit 3fb98875ead1e8ec24f79445f83cfd28f2800a31
Author: Tor Lillqvist t...@collabora.com
Date:   Sat Aug 16 10:29:17 2014 +0300

WIN_HELP_INDEX and HELP_INDEX are unused

Change-Id: Icc2c34f51601304e2846d8bd9fce2f384327a4e2

diff --git a/include/postwin.h b/include/postwin.h
index f494b23..68c4f5c 100644
--- a/include/postwin.h
+++ b/include/postwin.h
@@ -30,9 +30,7 @@
 #undef GradientStyle_RECT
 
 /* rename help IDs */
-#define WIN_HELP_INDEX   0x0003
 #define WIN_HELP_HELPONHELP  0x0004
-#undef HELP_INDEX
 #undef HELP_HELPONHELP
 
 #define WIN_MOUSE_MOVED 0x0001
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org

[Bug 82580] get rid of prewin.h / postwin.h wrapper headers

2014-08-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82580

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

   What|Removed |Added

 Whiteboard|EasyHack DifficultyBeginner |EasyHack DifficultyBeginner
   |SkillCpp TopicCleanup   |SkillCpp TopicCleanup
   ||target:4.4.0

--- Comment #2 from Commit Notification 
libreoffice-comm...@lists.freedesktop.org ---
Tor Lillqvist committed a patch related to this issue.
It has been pushed to master:

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

fdo#82580: Win32 GetObject() simplification



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


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

2014-08-16 Thread Miklos Vajna
 sw/qa/extras/rtfimport/data/picture-wrap-polygon.rtf |   47 +++
 sw/qa/extras/rtfimport/rtfimport.cxx |   16 ++
 writerfilter/source/rtftok/rtfdocumentimpl.cxx   |9 ++-
 writerfilter/source/rtftok/rtfdocumentimpl.hxx   |2 
 writerfilter/source/rtftok/rtfsdrimport.cxx  |   38 +++
 5 files changed, 110 insertions(+), 2 deletions(-)

New commits:
commit 63fa1a7bc8a99800f490fb4dcd968eeb5710a631
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Sat Aug 16 18:00:21 2014 +0200

RTF import: handle pWrapPolygonVertices shape property

Change-Id: I512713e9b9aa1ceb3d98af7a1a6abd144e370689

diff --git a/sw/qa/extras/rtfimport/data/picture-wrap-polygon.rtf 
b/sw/qa/extras/rtfimport/data/picture-wrap-polygon.rtf
new file mode 100644
index 000..4fec72f
--- /dev/null
+++ b/sw/qa/extras/rtfimport/data/picture-wrap-polygon.rtf
@@ -0,0 +1,47 @@
+{\rtf1\pard\plain
+{\shp
+{\*\shpinst\shpleft-1177\shptop-67\shpright1613\shpbottom2723\shpfhdr0\shpbxcolumn\shpbxignore\shpbypara\shpbyignore\shpwr4\shpwrk0\shpfblwtxt1\shpz0\shplid1026
+{\sp{\sn shapeType}{\sv 75}}
+{\sp
+{\sn pib}
+{\sv
+{\pict\picscalex218\picscaley218\piccropl0\piccropr0\piccropt0\piccropb0
+\picw2258\pich2258\picwgoal1280\pichgoal1280\pngblip\bliptag1974568719
+89504e470d0a1a0a000d4948445200400040080600aa6971de000473424954080808087c0864880009704859730b120b
+1201d2dd7efc001874455874536f6674776172650041646f62652046697265776f726b734fb31f4e059049444154789ced9bdd8bd45518c73fcff9bd
+ccecbc38abbbea14b551a94890a4d04579515646d44d4160443782418410485df50f14417411dde47528845117929ba85d488808dbcb85a5bdd9a6bbae2f3bed
+b8cefce6f73b4f1733b3ad26eeac737676dcf10be7665ece79ce73bee77b9ee739bf9fa82a4dbcfe4da918faec0a3dd966842161694001ab9c8912dd1bc57cf8
+e9d6c258f33b693ae0cd43a56db994ec2ea44d2e1b0a812798c5b2d8312c504b942b9152aad872b9aa3b3e79aab0171a0ed879b8b46d2063f60c663d72a1107a
+82b75466df4062214a9472a45cb8927071dabef2f196c25e79e3e0647155ce9c2ae6bd5c3e6596dcc4af476261aa6a199b4acae7cb76ad9f4bc9ae155993cba5
+0463149dbb8fdb1ac6402e25acb026375dd39dfeb2b4bc940d0423a04b7df60d18816c202c4bc94b7e5f60867c4fb08b6d5587e179423a9435beef118a61c953
+ff7a18038127a12f8dc3bed71c0020023eda3b7bff7f50f02df4dcfe6fc202bea2688f5240517ca537f73fd4e77d670bdc1141dc3240808dcb03d6e43d065286
+52a4fc5a8e397eb1d6754cab8ba04306580b2fde9be29eac37f359211436ad0818ca78ecfbab4adc4574d3ff18d0be5156e1e14270cde46763306dd8b4dce3e8
+855ad7649c1630cd53a0dd564b944756f8371df0a1fe80285127e3b96abe6a7df5da4535864278f3a5cdf8825a71329e0bccda02ed23d67a9a39172c8aa53baa
+8d4e45b0d5556d32ae1b5cd060803a6140abb5a4e678dde0008bbad38056fb7877437ede7d8f5db57c3f5963e4720d71e839a71ab090414eb1cf50ec4b715fc6
+63df6805e3e81875aa019d886fd6177cd6977c4e4ec54e98a00aa6c980765ba74eb647070222ab4e6c9ea907b8d180ceb8a03f3444b13a892615bd3d3460362e
+572d89bab3d95d32d4a13d7062a2561fce916edd560c385d8a393c1e91ed73cc804ec601b782f169cbd1b18803a315b219831137f984d348b0d5947afba149aa
+f3b05e043c03e940c8648430001537779816c5b78e18d06a17858c901899d7396e1a4ef03d0171c736abd4abc29dd4003f1082e0d67201d715ec997a40272341
+e37005dbc5a29c02abd31e7f4789d3a4e6566101dfaa9b485055998e958c7ff3993d3618b06734ee8abaa055add7045de502172a73f3e0f155211bfb8399686e
+319b530d00f86d2a612877e3aaf06c6c7f20c3ba8988e3976b8c4e27448b542a77aa011818b954e3c9bbc2967ebe7965c8e695adfd76ac623971a9c6f07885a4
+1d1baf435d0370a4ca22fc3819538a9442e856e18a69c30b77a7589ff7f8e8f4348923c634ee05b451a76baf214a622c5ffe79d5897137c283799fa7570624ea
+c66645314d0d68b741fdc1a3e17355fe987249d46bb1b13f2449dcd8ecb422640131600278ff87294ad1c2e4878550a839ac0899662ee0a229751694acf2de48
+99a99a7b751f9fb658ebce66677783cd26068250f8bd92f0f6b17f182dbbdd0e87ce55415cde0d3a4a8767433c0852301925bc756c92678a695e5b97211fb477
+3a1c395be5c844953025b8b8d1d6e6c5c842c421c640180ac6c0c1f35586cf56d8b03c64f3ea90fb9779e403433133773c1c5b383919b3ff4c85ef2e45f4a5eb
+a974d795c46e08035e20a43c4812f8e94a8d915f6a58aba86d28f11c5dd40b22f5143a95168c0f2a6ed262b745d19bc0183046f03c080250ad2f61abc38ad4ff
+3bf354ab237b179e01d7c330eb5a6bfe7ad0142e57b080dfecb857d1d802bde982ce6f812e43c744b05ba1ca9d67857d8548a1b5cac4128342e45be58c55d62c
+b6318b01abfc6cacd52f9a995c2f35ab60ad7e25cf0e4f14c33e39653c726efc7a7bc02694ab5775ad39b075702c8ed9d14b2cb00a71cc8ee1ad8363332f4f3f
+ffedc5573d9fdd22f4397171974295ab49cc8efd4f0c7c06b3de1e0778eef0c5a2e7f38e185e166168d1ac5c00a872462d9f27311f7cbd6560e6f5f97f01f618b11f3ea2336949454e44ae426082}
+}
+}
+{\sp
+{\sn pWrapPolygonVertices}
+{\sv 
8;11;(7781,4181);(5923,4994);(5458,14284);(7200,16839);(15445,16490);(15678,13355);(15910,11497);(16026,7432);(12078,6271);(10219,5110);(7781,4181)}
+}
+{\sp
+{\sn fBehindDocument}
+{\sv 1}
+}
+}
+}
+Suddenly next to him, with a barely noticeable squeak, a door swung quietly to 
and fro in the night's breeze. Could this be the haven he'd prayed for? Slowly 
he slid toward the door, pressing himself more and more into the wall, into the 
dark, away from his enemy. Would 

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

2014-08-16 Thread Miklos Vajna
 writerfilter/source/ooxml/OOXMLFastContextHandler.cxx |   50 +-
 writerfilter/source/ooxml/factoryimpl.py  |4 -
 writerfilter/source/ooxml/factoryimpl_ns.py   |2 
 writerfilter/source/ooxml/model.xml   |   48 -
 writerfilter/source/ooxml/namespaceids.py |2 
 5 files changed, 53 insertions(+), 53 deletions(-)

New commits:
commit e33f6f499f9eca9a558cec557b20557f714f1caf
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Sat Aug 16 18:44:37 2014 +0200

Sync oox - writerfilter alias for generic VML

See 656ab07b2924dd2703f31f460c8586c375c7878a (Sync oox - writerfilter
alias for wordprocessingml, 2014-08-10).

Change-Id: I5179961b683473a502693923422171bb274fc845

diff --git a/writerfilter/source/ooxml/OOXMLFastContextHandler.cxx 
b/writerfilter/source/ooxml/OOXMLFastContextHandler.cxx
index 3a09641..158c614 100644
--- a/writerfilter/source/ooxml/OOXMLFastContextHandler.cxx
+++ b/writerfilter/source/ooxml/OOXMLFastContextHandler.cxx
@@ -1804,7 +1804,7 @@ OOXMLFastContextHandlerShape::lcl_createFastChildContext
 {
 case NMSP_doc:
 case NMSP_vml_wordprocessingDrawing:
-case NMSP_office:
+case NMSP_vmlOffice:
 if (!bGroupShape)
 
xContextHandler.set(OOXMLFactory::getInstance()-createFastChildContextFromStart(this,
 Element));
 // no break;
@@ -1823,7 +1823,7 @@ OOXMLFastContextHandlerShape::lcl_createFastChildContext
 {
 pWrapper-addNamespace(NMSP_doc);
 pWrapper-addNamespace(NMSP_vml_wordprocessingDrawing);
-pWrapper-addNamespace(NMSP_office);
+pWrapper-addNamespace(NMSP_vmlOffice);
 pWrapper-addToken( NMSP_vml|XML_textbox );
 }
 
diff --git a/writerfilter/source/ooxml/model.xml 
b/writerfilter/source/ooxml/model.xml
index ccabb1b..35fb03e 100644
--- a/writerfilter/source/ooxml/model.xml
+++ b/writerfilter/source/ooxml/model.xml
@@ -20,7 +20,7 @@
   namespace-alias name=http://www.w3.org/XML/1998/namespace; alias=xml/
   namespace-alias 
name=http://schemas.openxmlformats.org/officeDocument/2006/relationships; 
alias=officeRel/
   namespace-alias 
name=http://purl.oclc.org/ooxml/officeDocument/relationships; 
alias=officeRel/
-  namespace-alias name=urn:schemas-microsoft-com:office:office 
alias=office/
+  namespace-alias name=urn:schemas-microsoft-com:office:office 
alias=vmlOffice/
   namespace-alias 
name=http://schemas.openxmlformats.org/officeDocument/2006/relationships/theme;
 alias=theme/
   namespace-alias 
name=http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing; 
alias=wordprocessingDrawing/
   namespace-alias 
name=http://purl.oclc.org/ooxml/drawingml/wordprocessingDrawing; 
alias=wordprocessingDrawing/
@@ -10431,35 +10431,35 @@
   action name=end action=handleOLE/
 /resource
 resource name=ST_Angle resource=List
-  value tokenid=ooxml:Value_office_ST_Angle_anyany/value
-  value tokenid=ooxml:Value_office_ST_Angle_3030/value
-  value tokenid=ooxml:Value_office_ST_Angle_4545/value
-  value tokenid=ooxml:Value_office_ST_Angle_6060/value
-  value tokenid=ooxml:Value_office_ST_Angle_9090/value
-  value tokenid=ooxml:Value_office_ST_Angle_autoauto/value
+  value tokenid=ooxml:Value_vmlOffice_ST_Angle_anyany/value
+  value tokenid=ooxml:Value_vmlOffice_ST_Angle_3030/value
+  value tokenid=ooxml:Value_vmlOffice_ST_Angle_4545/value
+  value tokenid=ooxml:Value_vmlOffice_ST_Angle_6060/value
+  value tokenid=ooxml:Value_vmlOffice_ST_Angle_9090/value
+  value tokenid=ooxml:Value_vmlOffice_ST_Angle_autoauto/value
 /resource
 resource name=ST_OLELinkType resource=List
-  value 
tokenid=ooxml:Value_office_ST_OLELinkType_PicturePicture/value
-  value tokenid=ooxml:Value_office_ST_OLELinkType_BitmapBitmap/value
-  value 
tokenid=ooxml:Value_office_ST_OLELinkType_EnhancedMetaFileEnhancedMetaFile/value
+  value 
tokenid=ooxml:Value_vmlOffice_ST_OLELinkType_PicturePicture/value
+  value 
tokenid=ooxml:Value_vmlOffice_ST_OLELinkType_BitmapBitmap/value
+  value 
tokenid=ooxml:Value_vmlOffice_ST_OLELinkType_EnhancedMetaFileEnhancedMetaFile/value
 /resource
 resource name=ST_TrueFalseBlank resource=List
-  value tokenid=ooxml:Value_office_ST_TrueFalseBlank_/
-  value tokenid=ooxml:Value_office_ST_TrueFalseBlank_tt/value
-  value tokenid=ooxml:Value_office_ST_TrueFalseBlank_ff/value
-  value tokenid=ooxml:Value_office_ST_TrueFalseBlank_truetrue/value
-  value tokenid=ooxml:Value_office_ST_TrueFalseBlank_falsefalse/value
+  value tokenid=ooxml:Value_vmlOffice_ST_TrueFalseBlank_/
+  value tokenid=ooxml:Value_vmlOffice_ST_TrueFalseBlank_tt/value
+  value tokenid=ooxml:Value_vmlOffice_ST_TrueFalseBlank_ff/value
+  value 

[Libreoffice-commits] core.git: 3 commits - include/tools rsc/inc rsc/source tools/source

2014-08-16 Thread Caolán McNamara
 include/tools/rc.h|8 
 include/tools/rcid.h  |3 ---
 rsc/inc/rscdb.hxx |1 -
 rsc/source/parser/rscicpx.cxx |   20 
 rsc/source/parser/rscinit.cxx |4 
 tools/source/rc/resmgr.cxx|1 -
 6 files changed, 37 deletions(-)

New commits:
commit e09e956a0c8eaa00e73474bccacee7aa656f2f67
Author: Caolán McNamara caol...@redhat.com
Date:   Sat Aug 16 18:28:53 2014 +0100

RSC_TABCONTROLITEM* no longer used

Change-Id: Ic496662d623c4732db41476109b3731cf1fd71a0

diff --git a/include/tools/rc.h b/include/tools/rc.h
index 47d8fee..3c77bdc 100644
--- a/include/tools/rc.h
+++ b/include/tools/rc.h
@@ -162,11 +162,6 @@ typedef short RSWND_STYLE;
 #define RSC_DOCKINGWINDOW_Y 0x04
 #define RSC_DOCKINGWINDOW_FLOATING  0x08
 
-// For TabControlItem resources:
-#define RSC_TABCONTROLITEM_ID   0x0001
-#define RSC_TABCONTROLITEM_TEXT 0x0002
-#define RSC_TABCONTROLITEM_PAGERESID0x0008
-
 // For ImageButtons:
 #define RSC_IMAGEBUTTON_IMAGE   0x01
 #define RSC_IMAGEBUTTON_SYMBOL  0x02
diff --git a/include/tools/rcid.h b/include/tools/rcid.h
index 8d6ef0e..74fdef6 100644
--- a/include/tools/rcid.h
+++ b/include/tools/rcid.h
@@ -100,8 +100,6 @@
 
 #define RSC_TABPAGE (RSC_NOTYPE + 0x74)
 
-#define RSC_TABCONTROLITEM  (RSC_NOTYPE + 0x77)
-
 #define RSC_STRINGARRAY (RSC_NOTYPE + 0x79)
 
 // (RSC_NOTYPE + 0x200) - (RSC_NOTYPE + 0x300) reserved for Sfx
commit 07048650e2459ad3d77fbeed9df2d63b9c849a7b
Author: Caolán McNamara caol...@redhat.com
Date:   Sat Aug 16 18:26:14 2014 +0100

RSCMENUBUTTON_MENU is not longer used

Change-Id: I2e12d923a07385fc6a036863070a10666542d39d

diff --git a/include/tools/rc.h b/include/tools/rc.h
index 29dd4f3..47d8fee 100644
--- a/include/tools/rc.h
+++ b/include/tools/rc.h
@@ -53,9 +53,6 @@ typedef short RSWND_STYLE;
 // For FixedImage resource:
 #define RSC_FIXEDIMAGE_IMAGE0x0001
 
-// For MenuButton resources:
-#define RSCMENUBUTTON_MENU  0x01
-
 // For all menu resources:
 #define RSC_MENU_ITEMS  0x01
 #define RSC_MENU_TEXT   0x02
commit 924dda90a99f94799a053c6d127722ccd4540b5f
Author: Caolán McNamara caol...@redhat.com
Date:   Sat Aug 16 18:24:38 2014 +0100

RSC_MENUBUTTON is not in use anymore

Change-Id: I853b6b1cfcd4847603d9920a47298d1b9105b46f

diff --git a/include/tools/rcid.h b/include/tools/rcid.h
index 032b815..8d6ef0e 100644
--- a/include/tools/rcid.h
+++ b/include/tools/rcid.h
@@ -67,7 +67,6 @@
 #define RSC_CANCELBUTTON(RSC_NOTYPE + 0x48)
 #define RSC_HELPBUTTON  (RSC_NOTYPE + 0x49)
 #define RSC_IMAGEBUTTON (RSC_NOTYPE + 0x4a)
-#define RSC_MENUBUTTON  (RSC_NOTYPE + 0x4b)
 
 #define RSC_SPINBUTTON  (RSC_NOTYPE + 0x4d)
 #define RSC_RADIOBUTTON (RSC_NOTYPE + 0x4e)
diff --git a/rsc/inc/rscdb.hxx b/rsc/inc/rscdb.hxx
index c5f84b7..c688190 100644
--- a/rsc/inc/rscdb.hxx
+++ b/rsc/inc/rscdb.hxx
@@ -177,7 +177,6 @@ class RscTypCont
 RscTop *InitClassCheckBox( RscTop * pSuper );
 RscTop *InitClassPushButton( RscTop * pSuper );
 RscTop *InitClassTriStateBox( RscTop * pSuper, RscEnum * pTriState );
-RscTop *InitClassMenuButton( RscTop * pSuper, RscTop * pClasMenu );
 RscTop *InitClassImageButton( RscTop * pSuper, RscTop * pClassImage,
 RscEnum * pTriState );
 RscTop *InitClassEdit( RscTop * pSuper );
diff --git a/rsc/source/parser/rscicpx.cxx b/rsc/source/parser/rscicpx.cxx
index e920df4..0760f32 100644
--- a/rsc/source/parser/rscicpx.cxx
+++ b/rsc/source/parser/rscicpx.cxx
@@ -452,26 +452,6 @@ RscTop * RscTypCont::InitClassTriStateBox( RscTop * pSuper,
 return pClassTriStateBox;
 }
 
-RscTop * RscTypCont::InitClassMenuButton( RscTop * pSuper,
-  RscTop * pClassMenu )
-{
-AtomnId;
-RscTop *pClassMenuButton;
-
-nId = pHS-getID( MenuButton );
-pClassMenuButton = new RscClass( nId, RSC_MENUBUTTON, pSuper );
-pClassMenuButton-SetCallPar( *pWinPar1, *pWinPar2, *pWinParType );
-aNmTb.Put( nId, CLASSNAME, pClassMenuButton );
-
-// Variablen anlegen
-nId = aNmTb.Put( ButtonMenu, VARNAME );
-pClassMenuButton-SetVariable( nId, pClassMenu, NULL, 0,
-
RSCMENUBUTTON_MENU );
-
-return pClassMenuButton;
-}
-
-
 RscTop * RscTypCont::InitClassImageButton( RscTop * pSuper,
RscTop * pClassImage,
RscEnum * pTriState )
diff --git a/rsc/source/parser/rscinit.cxx b/rsc/source/parser/rscinit.cxx
index 1da37a6..7068140 100644
--- a/rsc/source/parser/rscinit.cxx
+++ b/rsc/source/parser/rscinit.cxx
@@ -95,7 +95,6 @@ void RscTypCont::Init()
 RscTop   *  pClassAccel;
 RscTop   *  pClassMenuItem;

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

2014-08-16 Thread Caolán McNamara
 include/tools/rcid.h  |2 +-
 rsc/inc/rscdb.hxx |1 -
 rsc/source/parser/rscicpx.cxx |   20 
 rsc/source/parser/rscinit.cxx |4 
 tools/source/rc/resmgr.cxx|1 -
 vcl/source/control/edit.cxx   |4 +---
 6 files changed, 2 insertions(+), 30 deletions(-)

New commits:
commit b0da096c610b4392277a3b7fe3c7c29d2c8c3fcf
Author: Caolán McNamara caol...@redhat.com
Date:   Sat Aug 16 18:33:04 2014 +0100

RSC_MULTILINEEDIT no longer used

Change-Id: If56233b5226cec9516d5e2f8992e1b0beae733bf

diff --git a/include/tools/rcid.h b/include/tools/rcid.h
index 74fdef6..d3b4e63 100644
--- a/include/tools/rcid.h
+++ b/include/tools/rcid.h
@@ -74,7 +74,7 @@
 #define RSC_CHECKBOX(RSC_NOTYPE + 0x50)
 #define RSC_TRISTATEBOX (RSC_NOTYPE + 0x51)
 #define RSC_EDIT(RSC_NOTYPE + 0x52)
-#define RSC_MULTILINEEDIT   (RSC_NOTYPE + 0x53)
+
 #define RSC_COMBOBOX(RSC_NOTYPE + 0x54)
 #define RSC_LISTBOX (RSC_NOTYPE + 0x55)
 
diff --git a/rsc/inc/rscdb.hxx b/rsc/inc/rscdb.hxx
index c688190..b8fc762 100644
--- a/rsc/inc/rscdb.hxx
+++ b/rsc/inc/rscdb.hxx
@@ -180,7 +180,6 @@ class RscTypCont
 RscTop *InitClassImageButton( RscTop * pSuper, RscTop * pClassImage,
 RscEnum * pTriState );
 RscTop *InitClassEdit( RscTop * pSuper );
-RscTop *InitClassMultiLineEdit( RscTop * pSuper );
 RscTop *InitClassScrollBar( RscTop * pSuper );
 RscTop *InitClassListBox( RscTop * pSuper, RscArray * pStrLst );
 RscTop *InitClassComboBox( RscTop * pSuper, RscArray * pStrLst );
diff --git a/rsc/source/parser/rscicpx.cxx b/rsc/source/parser/rscicpx.cxx
index 0760f32..195f6af 100644
--- a/rsc/source/parser/rscicpx.cxx
+++ b/rsc/source/parser/rscicpx.cxx
@@ -542,26 +542,6 @@ RscTop * RscTypCont::InitClassEdit( RscTop * pSuper )
 return pClassEdit;
 }
 
-RscTop * RscTypCont::InitClassMultiLineEdit( RscTop * pSuper )
-{
-AtomnId;
-RscTop *pClassMultiLineEdit;
-
-// Klasse anlegen
-nId = pHS-getID( MultiLineEdit );
-pClassMultiLineEdit = new RscClass( nId, RSC_MULTILINEEDIT, pSuper );
-pClassMultiLineEdit-SetCallPar( *pWinPar1, *pWinPar2, *pWinParType );
-
-aNmTb.Put( nId, CLASSNAME, pClassMultiLineEdit );
-
-INS_WINBIT( pClassMultiLineEdit, HScroll );
-INS_WINBIT( pClassMultiLineEdit, VScroll );
-INS_WINBIT( pClassMultiLineEdit, IgnoreTab );
-INS_WINBIT( pClassMultiLineEdit, AutoVScroll )
-
-return pClassMultiLineEdit;
-}
-
 RscTop * RscTypCont::InitClassListBox( RscTop * pSuper, RscArray * pStrLst )
 {
 AtomnId;
diff --git a/rsc/source/parser/rscinit.cxx b/rsc/source/parser/rscinit.cxx
index 7068140..0aecf07 100644
--- a/rsc/source/parser/rscinit.cxx
+++ b/rsc/source/parser/rscinit.cxx
@@ -84,7 +84,6 @@ void RscTypCont::Init()
 RscTop   *  pClassImageButton;
 RscTop   *  pClassTriStateBox;
 RscTop   *  pClassEdit;
-RscTop   *  pClassMultiLineEdit;
 RscTop   *  pClassListBox;
 RscTop   *  pClassComboBox;
 RscTop   *  pClassFixedText;
@@ -427,9 +426,6 @@ void RscTypCont::Init()
 
 pClassEdit = InitClassEdit( pClassControl );
 pRoot-Insert( pClassEdit );
-
-pClassMultiLineEdit = InitClassMultiLineEdit( pClassEdit );
-pRoot-Insert( pClassMultiLineEdit );
 }
 {
 pClassListBox = InitClassListBox( pClassControl, pLangStringLongTupelList 
);
diff --git a/tools/source/rc/resmgr.cxx b/tools/source/rc/resmgr.cxx
index d3f02e8..a41f981 100644
--- a/tools/source/rc/resmgr.cxx
+++ b/tools/source/rc/resmgr.cxx
@@ -1483,7 +1483,6 @@ OString ResMgr::GetAutoHelpId()
 case RSC_CHECKBOX:  aHID.append( CheckBox ); 
break;
 case RSC_TRISTATEBOX:   aHID.append( TriStateBox );  
break;
 case RSC_EDIT:  aHID.append( Edit ); 
break;
-case RSC_MULTILINEEDIT: aHID.append( MultiLineEdit 
);break;
 case RSC_LISTBOX:   aHID.append( ListBox );  
break;
 case RSC_COMBOBOX:  aHID.append( ComboBox ); 
break;
 case RSC_PUSHBUTTON:aHID.append( PushButton );   
break;
diff --git a/vcl/source/control/edit.cxx b/vcl/source/control/edit.cxx
index e03f0e5..bf6b283 100644
--- a/vcl/source/control/edit.cxx
+++ b/vcl/source/control/edit.cxx
@@ -177,9 +177,7 @@ Edit::Edit( Window* pParent, const ResId rResId ) :
 ImplInit( pParent, nStyle );
 ImplLoadRes( rResId );
 
-// Derived MultiLineEdit takes care to call Show only after MultiLineEdit
-// ctor has already started:
-if ( !(nStyle  WB_HIDE)  rResId.GetRT() != RSC_MULTILINEEDIT )
+if ( !(nStyle  WB_HIDE) )
 Show();
 }
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org

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

2014-08-16 Thread Caolán McNamara
 include/tools/rcid.h  |2 +-
 rsc/inc/rscdb.hxx |1 -
 rsc/source/parser/rscicpx.cxx |   20 
 rsc/source/parser/rscinit.cxx |4 
 tools/source/rc/resmgr.cxx|1 -
 vcl/source/control/button.cxx |   11 ---
 6 files changed, 5 insertions(+), 34 deletions(-)

New commits:
commit 1c13f9c2b67d3a26a8cbbc11b6ae0dc1dc2d30ca
Author: Caolán McNamara caol...@redhat.com
Date:   Sat Aug 16 18:36:24 2014 +0100

RSC_TRISTATEBOX is no longer used

Change-Id: Ib3f43db131cf5562ad011538873c2ee51839665c

diff --git a/include/tools/rcid.h b/include/tools/rcid.h
index d3b4e63..47244ea 100644
--- a/include/tools/rcid.h
+++ b/include/tools/rcid.h
@@ -72,7 +72,7 @@
 #define RSC_RADIOBUTTON (RSC_NOTYPE + 0x4e)
 
 #define RSC_CHECKBOX(RSC_NOTYPE + 0x50)
-#define RSC_TRISTATEBOX (RSC_NOTYPE + 0x51)
+
 #define RSC_EDIT(RSC_NOTYPE + 0x52)
 
 #define RSC_COMBOBOX(RSC_NOTYPE + 0x54)
diff --git a/rsc/inc/rscdb.hxx b/rsc/inc/rscdb.hxx
index b8fc762..6aca602 100644
--- a/rsc/inc/rscdb.hxx
+++ b/rsc/inc/rscdb.hxx
@@ -176,7 +176,6 @@ class RscTypCont
 RscTop *InitClassControl( RscTop * pSuper );
 RscTop *InitClassCheckBox( RscTop * pSuper );
 RscTop *InitClassPushButton( RscTop * pSuper );
-RscTop *InitClassTriStateBox( RscTop * pSuper, RscEnum * pTriState );
 RscTop *InitClassImageButton( RscTop * pSuper, RscTop * pClassImage,
 RscEnum * pTriState );
 RscTop *InitClassEdit( RscTop * pSuper );
diff --git a/rsc/source/parser/rscicpx.cxx b/rsc/source/parser/rscicpx.cxx
index 195f6af..6169eda 100644
--- a/rsc/source/parser/rscicpx.cxx
+++ b/rsc/source/parser/rscicpx.cxx
@@ -432,26 +432,6 @@ RscTop * RscTypCont::InitClassPushButton( RscTop * pSuper )
 return pClassPushButton;
 }
 
-RscTop * RscTypCont::InitClassTriStateBox( RscTop * pSuper,
-   RscEnum * pTriState )
-{
-AtomnId;
-RscTop *pClassTriStateBox;
-
-nId = pHS-getID( TriStateBox );
-pClassTriStateBox = new RscClass( nId, RSC_TRISTATEBOX, pSuper );
-pClassTriStateBox-SetCallPar( *pWinPar1, *pWinPar2, *pWinParType );
-aNmTb.Put( nId, CLASSNAME, pClassTriStateBox );
-
-// Variablen anlegen
-nId = aNmTb.Put( State, VARNAME );
-pClassTriStateBox-SetVariable( nId, pTriState );
-nId = aNmTb.Put( TriStateDisable, VARNAME );
-pClassTriStateBox-SetVariable( nId, aBool );
-
-return pClassTriStateBox;
-}
-
 RscTop * RscTypCont::InitClassImageButton( RscTop * pSuper,
RscTop * pClassImage,
RscEnum * pTriState )
diff --git a/rsc/source/parser/rscinit.cxx b/rsc/source/parser/rscinit.cxx
index 0aecf07..70415bc 100644
--- a/rsc/source/parser/rscinit.cxx
+++ b/rsc/source/parser/rscinit.cxx
@@ -82,7 +82,6 @@ void RscTypCont::Init()
 RscTop   *  pClassHelpButton;
 RscTop   *  pClassRadioButton;
 RscTop   *  pClassImageButton;
-RscTop   *  pClassTriStateBox;
 RscTop   *  pClassEdit;
 RscTop   *  pClassListBox;
 RscTop   *  pClassComboBox;
@@ -417,9 +416,6 @@ void RscTypCont::Init()
 pClassRadioButton = InitClassRadioButton( pClassButton );
 pRoot-Insert( pClassRadioButton );
 
-pClassTriStateBox = InitClassTriStateBox( pClassControl, pTriState );
-pRoot-Insert( pClassTriStateBox );
-
 pClassImageButton = InitClassImageButton( pClassPushButton,
   pClassImage, pTriState );
 pRoot-Insert( pClassImageButton );
diff --git a/tools/source/rc/resmgr.cxx b/tools/source/rc/resmgr.cxx
index a41f981..e31071a 100644
--- a/tools/source/rc/resmgr.cxx
+++ b/tools/source/rc/resmgr.cxx
@@ -1481,7 +1481,6 @@ OString ResMgr::GetAutoHelpId()
 switch( pRC-pResource-GetRT() ) {
 case RSC_RADIOBUTTON:   aHID.append( RadioButton );  
break;
 case RSC_CHECKBOX:  aHID.append( CheckBox ); 
break;
-case RSC_TRISTATEBOX:   aHID.append( TriStateBox );  
break;
 case RSC_EDIT:  aHID.append( Edit ); 
break;
 case RSC_LISTBOX:   aHID.append( ListBox );  
break;
 case RSC_COMBOBOX:  aHID.append( ComboBox ); 
break;
diff --git a/vcl/source/control/button.cxx b/vcl/source/control/button.cxx
index 465e15a..60cff9b 100644
--- a/vcl/source/control/button.cxx
+++ b/vcl/source/control/button.cxx
@@ -2984,13 +2984,10 @@ void CheckBox::ImplLoadRes( const ResId rResId )
 {
 Button::ImplLoadRes( rResId );
 
-if ( rResId.GetRT() != RSC_TRISTATEBOX )
-{
-sal_uInt16 nChecked = ReadShortRes();
-//anderer Wert als Default ?
-if( nChecked )
-Check( true );
-}
+sal_uInt16 nChecked = 

[Libreoffice-commits] core.git: include/postx.h include/prex.h

2014-08-16 Thread Tor Lillqvist
 include/postx.h |1 -
 include/prex.h  |1 -
 2 files changed, 2 deletions(-)

New commits:
commit a5f4c5b685703a8d9069a47599983083450bb099
Author: Tor Lillqvist t...@collabora.com
Date:   Sat Aug 16 20:34:23 2014 +0300

Our use of Boolean does not clash with the Xt X11/Intrinsic.h typedef

So no need to hide the Xt type.

Change-Id: Ib7d96745294ab747b3c8ed355d4562a68e3cb0cf

diff --git a/include/postx.h b/include/postx.h
index e65bd546..15edbea 100644
--- a/include/postx.h
+++ b/include/postx.h
@@ -32,7 +32,6 @@
 #undef Region
 #undef Icon
 #undef Time
-#undef Boolean
 
 #undef Min
 #undef Max
diff --git a/include/prex.h b/include/prex.h
index fec9c62..15950f1 100644
--- a/include/prex.h
+++ b/include/prex.h
@@ -27,7 +27,6 @@
 /* Types from X11/X.h that clash with LO's identifiers
  * and we don't need.
  */
-#define Boolean HIDE_XLIB_Boolean
 #define FontHIDE_XLIB_Font
 #define IconHIDE_XLIB_Icon
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Bug 82580] get rid of prewin.h / postwin.h wrapper headers

2014-08-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82580

--- Comment #3 from Thomas Arnhold thomas-l...@arnhold.org ---
(In reply to comment #0)
 2) in some cases it can be avoided to have the Win32 type
and the LO type visible in the same LO source file
by not including both the defining LO and Win32 headers

Note, that this could be complicated, because we (mostly) use precompiled
headers on Windows, which include nearly all headers needed by a module. See
for example oox/inc/pch/precompiled_oox.hxx, which includes all headers from
the oox module. And thus avoiding to include one file could be problematic.

-- 
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-commits] core.git: include/postmac.h include/premac.h

2014-08-16 Thread Tor Lillqvist
 include/postmac.h |1 -
 include/premac.h  |1 -
 2 files changed, 2 deletions(-)

New commits:
commit d4a8fa7db0ed4faae00408fbda2352379774cfc0
Author: Tor Lillqvist t...@collabora.com
Date:   Sat Aug 16 21:31:30 2014 +0300

Our use of Byte does not clash with the MacTypes.h typedef

Change-Id: I693de4bc9eb7fc9b409d321e0dcec6e0c03212c3

diff --git a/include/postmac.h b/include/postmac.h
index bc16849..0648030 100644
--- a/include/postmac.h
+++ b/include/postmac.h
@@ -18,7 +18,6 @@
  */
 
 #undef Button
-#undef Byte
 #undef Control
 #undef Cursor
 #undef DirInfo
diff --git a/include/premac.h b/include/premac.h
index e67b315..cbed11a 100644
--- a/include/premac.h
+++ b/include/premac.h
@@ -18,7 +18,6 @@
  */
 
 #define Button MacOSButton
-#define Byte MacOSByte
 #define Control MacOSControl
 #define Cursor MacOSCursor
 #define DirInfo MacOSDirInfo
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: 6 commits - include/test include/tools svgio/CppunitTest_svgio.mk svgio/qa test/Library_test.mk test/source

2014-08-16 Thread Tomaž Vajngerl
 include/test/mtfxmldump.hxx |4 
 include/test/primitive2dxmldump.hxx |   47 +++
 include/test/xmlwriter.hxx  |5 
 include/tools/stream.hxx|2 
 svgio/CppunitTest_svgio.mk  |5 
 svgio/qa/cppunit/SvgImportTest.cxx  |   49 +--
 test/Library_test.mk|3 
 test/source/mtfxmldump.cxx  |  231 
 test/source/primitive2dxmldump.cxx  |  183 
 test/source/xmlwriter.cxx   |   32 
 10 files changed, 420 insertions(+), 141 deletions(-)

New commits:
commit 871b196f7e7296eb4e397f84f1700db33d77bfb9
Author: Tomaž Vajngerl tomaz.vajng...@collabora.com
Date:   Sat Aug 16 20:43:09 2014 +0200

SVG test: check content of Primitive2DSequence with the XML dumper

Change-Id: I12954cd52cece2d2fe99b7b4ca1e60cee3b430f0

diff --git a/svgio/CppunitTest_svgio.mk b/svgio/CppunitTest_svgio.mk
index 6c1380c..2aa4f39 100644
--- a/svgio/CppunitTest_svgio.mk
+++ b/svgio/CppunitTest_svgio.mk
@@ -14,7 +14,10 @@ $(eval $(call gb_CppunitTest_set_include,svgio_import_test,\
 -I$(SRCDIR)/svgio/inc \
 ))
 
-$(eval $(call gb_CppunitTest_use_external,svgio_import_test,boost_headers))
+$(eval $(call gb_CppunitTest_use_externals,svgio_import_test,\
+boost_headers \
+libxml2 \
+))
 
 $(eval $(call gb_CppunitTest_use_api,svgio_import_test,\
 offapi \
diff --git a/svgio/qa/cppunit/SvgImportTest.cxx 
b/svgio/qa/cppunit/SvgImportTest.cxx
index 5b8392d..b2ed826 100644
--- a/svgio/qa/cppunit/SvgImportTest.cxx
+++ b/svgio/qa/cppunit/SvgImportTest.cxx
@@ -8,7 +8,11 @@
  */
 
 #include sal/config.h
+
 #include test/bootstrapfixture.hxx
+#include test/primitive2dxmldump.hxx
+#include test/xmltesttools.hxx
+
 #include comphelper/processfactory.hxx
 #include comphelper/seqstream.hxx
 
@@ -28,8 +32,10 @@ using namespace css::io;
 using namespace css::graphic;
 using drawinglayer::primitive2d::arePrimitive2DSequencesEqual;
 
-class Test : public test::BootstrapFixture
+class Test : public test::BootstrapFixture, public XmlTestTools
 {
+void checkRectPrimitive(Primitive2DSequence rPrimitive);
+
 void testStyles();
 
 Primitive2DSequence parseSvg(const char* aSource);
@@ -72,28 +78,47 @@ void Test::tearDown()
 BootstrapFixture::tearDown();
 }
 
+void Test::checkRectPrimitive(Primitive2DSequence rPrimitive)
+{
+Primitive2dXmlDump dumper;
+xmlDocPtr pDocument = dumper.dumpAndParse(rPrimitive);
+
+CPPUNIT_ASSERT (pDocument);
+
+assertXPath(pDocument, /primitive2D/transform/polypolygoncolor, color, 
#00cc00); // rect background color
+assertXPath(pDocument, /primitive2D/transform/polypolygonstroke/line, 
color, #ff); // rect stroke color
+assertXPath(pDocument, /primitive2D/transform/polypolygonstroke/line, 
width, 3); // rect stroke width
+
+}
+
 // Attributes for an object (like rect as in this case) can be defined
 // in different ways (directly with xml attributes, or with CSS styles),
 // however the end result should be the same.
 void Test::testStyles()
 {
-Primitive2DSequence maSequenceRect = 
parseSvg(/svgio/qa/cppunit/data/Rect.svg);
-CPPUNIT_ASSERT_EQUAL(1, (int) maSequenceRect.getLength());
+Primitive2DSequence aSequenceRect = 
parseSvg(/svgio/qa/cppunit/data/Rect.svg);
+CPPUNIT_ASSERT_EQUAL(1, (int) aSequenceRect.getLength());
+checkRectPrimitive(aSequenceRect);
 
-Primitive2DSequence maSequenceRectWithStyle = 
parseSvg(/svgio/qa/cppunit/data/RectWithStyles.svg);
-CPPUNIT_ASSERT_EQUAL(1, (int) maSequenceRectWithStyle.getLength());
+Primitive2DSequence aSequenceRectWithStyle = 
parseSvg(/svgio/qa/cppunit/data/RectWithStyles.svg);
+CPPUNIT_ASSERT_EQUAL(1, (int) aSequenceRectWithStyle.getLength());
+checkRectPrimitive(aSequenceRectWithStyle);
 
-Primitive2DSequence maSequenceRectWithParentStyle = 
parseSvg(/svgio/qa/cppunit/data/RectWithParentStyles.svg);
-CPPUNIT_ASSERT_EQUAL(1, (int) maSequenceRectWithParentStyle.getLength());
+Primitive2DSequence aSequenceRectWithParentStyle = 
parseSvg(/svgio/qa/cppunit/data/RectWithParentStyles.svg);
+CPPUNIT_ASSERT_EQUAL(1, (int) aSequenceRectWithParentStyle.getLength());
+checkRectPrimitive(aSequenceRectWithParentStyle);
 
-Primitive2DSequence maSequenceRectWithStylesByGroup = 
parseSvg(/svgio/qa/cppunit/data/RectWithStylesByGroup.svg);
-CPPUNIT_ASSERT_EQUAL(1, (int) maSequenceRectWithStylesByGroup.getLength());
+Primitive2DSequence aSequenceRectWithStylesByGroup = 
parseSvg(/svgio/qa/cppunit/data/RectWithStylesByGroup.svg);
+CPPUNIT_ASSERT_EQUAL(1, (int) aSequenceRectWithStylesByGroup.getLength());
+checkRectPrimitive(aSequenceRectWithStylesByGroup);
+
+CPPUNIT_ASSERT(arePrimitive2DSequencesEqual(aSequenceRect, 
aSequenceRectWithStyle));
+CPPUNIT_ASSERT(arePrimitive2DSequencesEqual(aSequenceRect, 
aSequenceRectWithParentStyle));
+CPPUNIT_ASSERT(arePrimitive2DSequencesEqual(aSequenceRect, 

[Libreoffice-commits] core.git: 2 commits - include/postmac.h include/premac.h

2014-08-16 Thread Tor Lillqvist
 include/postmac.h |4 
 include/premac.h  |4 
 2 files changed, 8 deletions(-)

New commits:
commit aaca2debfa42031997cf869c0c595c99315f3101
Author: Tor Lillqvist t...@collabora.com
Date:   Sat Aug 16 21:54:49 2014 +0300

DirInfo, LSize and MemoryBlock are unused

Change-Id: I6ddec983ef160cabf22690d0f3e8cfb08ba52394

diff --git a/include/postmac.h b/include/postmac.h
index 1a059f2..9e72141 100644
--- a/include/postmac.h
+++ b/include/postmac.h
@@ -20,11 +20,8 @@
 #undef Button
 #undef Control
 #undef Cursor
-#undef DirInfo
 #undef FontInfo
-#undef LSize
 #undef Line
-#undef MemoryBlock
 #undef ModalDialog
 #undef Palette
 #undef Pattern
diff --git a/include/premac.h b/include/premac.h
index 02b66d3..9782f47 100644
--- a/include/premac.h
+++ b/include/premac.h
@@ -20,11 +20,8 @@
 #define Button MacOSButton
 #define Control MacOSControl
 #define Cursor MacOSCursor
-#define DirInfo MacOSDirInfo
 #define FontInfo MacOSFontInfo
-#define LSize MacOSLSize
 #define Line MacOSLine
-#define MemoryBlock MacOSMemoryBlock
 #define ModalDialog MacOSModalDialog
 #define Palette MacOSPalette
 #define Pattern MacOSPattern
commit e98397d1ce2d4d3b56ee86c450ee7a0286229320
Author: Tor Lillqvist t...@collabora.com
Date:   Sat Aug 16 21:50:55 2014 +0300

Our use of Ptr does not clash with the MacTypes.h typedef

Change-Id: I5bcd1afde7c083c9a86be068c211fad152e75d01

diff --git a/include/postmac.h b/include/postmac.h
index 0648030..1a059f2 100644
--- a/include/postmac.h
+++ b/include/postmac.h
@@ -30,7 +30,6 @@
 #undef Pattern
 #undef Point
 #undef Polygon
-#undef Ptr
 #undef Region
 #undef SetCursor
 #undef Size
diff --git a/include/premac.h b/include/premac.h
index cbed11a..02b66d3 100644
--- a/include/premac.h
+++ b/include/premac.h
@@ -30,7 +30,6 @@
 #define Pattern MacOSPattern
 #define Point MacOSPoint
 #define Polygon MacOSPolygon
-#define Ptr MacOSPtr
 #define Region MacOSRegion
 #define SetCursor MacOSSetCursor
 #define Size MacOSSize
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: 19 commits - basctl/source chart2/source cui/source include/svx reportdesign/inc reportdesign/source sc/qa sc/source sd/inc sd/qa sd/source svx/source sw/inc sw/qa sw/s

2014-08-16 Thread Matteo Casalin
 basctl/source/accessibility/accessibledialogwindow.cxx|6 
 basctl/source/dlged/dlged.cxx |   12 
 basctl/source/dlged/dlgedobj.cxx  |6 
 basctl/source/dlged/dlgedpage.cxx |2 
 basctl/source/dlged/propbrw.cxx   |6 
 basctl/source/inc/dlgedpage.hxx   |2 
 chart2/source/controller/drawinglayer/ViewElementListProvider.cxx |2 
 chart2/source/controller/inc/DrawViewWrapper.hxx  |4 
 chart2/source/view/main/DrawModelWrapper.cxx  |4 
 cui/source/tabpages/swpossizetabpage.cxx  |4 
 cui/source/tabpages/tpline.cxx|6 
 cui/source/tabpages/transfrm.cxx  |2 
 include/svx/fmpage.hxx|4 
 include/svx/obj3d.hxx |8 
 include/svx/svdhdl.hxx|   10 
 include/svx/svdmark.hxx   |   11 
 include/svx/svdmrkv.hxx   |   26 -
 include/svx/svdpage.hxx   |   24 -
 include/svx/unoshape.hxx  |2 
 reportdesign/inc/RptPage.hxx  |4 
 reportdesign/source/core/sdr/RptPage.cxx  |   12 
 reportdesign/source/ui/report/FixedTextColor.cxx  |2 
 reportdesign/source/ui/report/FormattedFieldBeautifier.cxx|2 
 reportdesign/source/ui/report/ReportSection.cxx   |   13 
 reportdesign/source/ui/report/SectionView.cxx |   19 
 reportdesign/source/ui/report/ViewsWindow.cxx |   14 
 reportdesign/source/ui/report/dlgedfunc.cxx   |4 
 reportdesign/source/ui/report/propbrw.cxx |4 
 sc/qa/unit/filters-test.cxx   |2 
 sc/qa/unit/subsequent_filters-test.cxx|6 
 sc/qa/unit/ucalc.cxx  |2 
 sc/source/core/data/drwlayer.cxx  |   26 -
 sc/source/core/tool/detfunc.cxx   |   29 -
 sc/source/filter/html/htmlexp2.cxx|3 
 sc/source/ui/Accessibility/AccessibleDocument.cxx |4 
 sc/source/ui/Accessibility/AccessibleDocumentPagePreview.cxx  |4 
 sc/source/ui/app/drwtrans.cxx |4 
 sc/source/ui/app/seltrans.cxx |2 
 sc/source/ui/drawfunc/drawsh.cxx  |6 
 sc/source/ui/drawfunc/drawsh2.cxx |9 
 sc/source/ui/drawfunc/drawsh5.cxx |   11 
 sc/source/ui/drawfunc/fudraw.cxx  |6 
 sc/source/ui/drawfunc/fusel.cxx   |8 
 sc/source/ui/drawfunc/futext.cxx  |2 
 sc/source/ui/unoobj/viewuno.cxx   |   10 
 sc/source/ui/view/drawvie3.cxx|   12 
 sc/source/ui/view/drawvie4.cxx|8 
 sc/source/ui/view/drawview.cxx|   22 -
 sc/source/ui/view/gridwin.cxx |4 
 sc/source/ui/view/viewfun5.cxx|2 
 sc/source/ui/view/viewfun7.cxx|4 
 sd/inc/sdpage.hxx |   10 
 sd/qa/unit/import-tests.cxx   |4 
 sd/source/core/drawdoc2.cxx   |4 
 sd/source/core/drawdoc3.cxx   |8 
 sd/source/core/drawdoc4.cxx   |4 
 sd/source/core/sdpage.cxx |   21 
 sd/source/core/sdpage2.cxx|8 
 sd/source/filter/html/htmlex.cxx  |6 
 sd/source/filter/xml/sdtransform.cxx  |4 
 sd/source/ui/animations/motionpathtag.cxx |   18 
 sd/source/ui/app/sdxfer.cxx   |2 
 sd/source/ui/dlg/animobjs.cxx |   16 
 sd/source/ui/dlg/dlgassim.cxx |4 
 sd/source/ui/dlg/dlgolbul.cxx |4 
 sd/source/ui/dlg/masterlayoutdlg.cxx  |3 
 sd/source/ui/docshell/docshel3.cxx 

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

2014-08-16 Thread Matteo Casalin
 include/svx/svdedtv.hxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit ce9a327c507aaed816cf85401187020d4846cc21
Author: Matteo Casalin matteo.casa...@yahoo.com
Date:   Sat Aug 16 22:15:56 2014 +0200

Fix member function prototype (sal_uIntPtr to size_t)

Change-Id: I063549d510d80450ab502fc511c79de41b591c4e

diff --git a/include/svx/svdedtv.hxx b/include/svx/svdedtv.hxx
index f0a9883..1782820 100644
--- a/include/svx/svdedtv.hxx
+++ b/include/svx/svdedtv.hxx
@@ -144,7 +144,7 @@ protected:
 // fuer DismantleMarkedObjects
 bool ImpCanDismantle(const basegfx::B2DPolyPolygon rPpolyPpolygon, bool 
bMakeLines) const;
 bool ImpCanDismantle(const SdrObject* pObj, bool bMakeLines) const;
-void ImpDismantleOneObject(const SdrObject* pObj, SdrObjList rOL, 
sal_uIntPtr rPos, SdrPageView* pPV, bool bMakeLines);
+void ImpDismantleOneObject(const SdrObject* pObj, SdrObjList rOL, size_t 
rPos, SdrPageView* pPV, bool bMakeLines);
 void ImpCrookObj(SdrObject* pO, const Point rRef, const Point rRad, 
SdrCrookMode eMode,
 bool bVertical, bool bNoContortion, bool bRotate, const Rectangle 
rMarkRect);
 void ImpDistortObj(SdrObject* pO, const Rectangle rRef, const XPolygon 
rDistortedRect, bool bNoContortion);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2014-08-16 Thread Matteo Casalin
 sw/source/uibase/shells/tabsh.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit f53878770a3e3f82659df3d74fd8fd2d408476b3
Author: Matteo Casalin matteo.casa...@yahoo.com
Date:   Sat Aug 16 22:18:55 2014 +0200

Missing ; (unsuccessful merge)

Change-Id: I3a1ab8936021e0b310afa799b1c257040bf78be3

diff --git a/sw/source/uibase/shells/tabsh.cxx 
b/sw/source/uibase/shells/tabsh.cxx
index 3fe1367..da67f6f 100644
--- a/sw/source/uibase/shells/tabsh.cxx
+++ b/sw/source/uibase/shells/tabsh.cxx
@@ -741,7 +741,7 @@ void SwTableShell::Execute(SfxRequest rReq)
 }
 default:
 OSL_ENSURE( false, unknown return value MergeTab.);
-break
+break;
 }
 break;
 case FN_TABLE_ADJUST_CELLS:
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Suspicious loop: any idea?

2014-08-16 Thread Matteo Casalin

Hi all,
function lcl_NotifyNeighbours in sw/source/core/frmedt/feshview.cxx 
has the following loop:


for( size_t j = 0; j  pLst-GetMarkCount(); ++j )
{
[...]
SdrObject *pO = pLst-GetMark( 0 )-GetMarkedSdrObj();
[...]
}

I can't see any use of j inside the loop itself, and repeatedly calling 
GetMark( 0 ) seems a little strange to me since I do not see any 
removal of the obtained Mark (which could explain the loop). I'm not 
familiar with this code, though: does anybody have an idea of whether 
the loop is correct or not, and in case of how to fix it?


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


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

2014-08-16 Thread Matteo Casalin
 dbaccess/source/ui/inc/WTypeSelect.hxx |1 +
 1 file changed, 1 insertion(+)

New commits:
commit 97cb7cd16c809e8311eada4200c748984e3f148f
Author: Matteo Casalin matteo.casa...@yahoo.com
Date:   Sat Aug 16 22:56:18 2014 +0200

CID 1231678: Uninitialized pointer field

Change-Id: I1c691b2c9c66b99957b07df4197c0a67c2598273

diff --git a/dbaccess/source/ui/inc/WTypeSelect.hxx 
b/dbaccess/source/ui/inc/WTypeSelect.hxx
index 5e498d1..0967c5c 100644
--- a/dbaccess/source/ui/inc/WTypeSelect.hxx
+++ b/dbaccess/source/ui/inc/WTypeSelect.hxx
@@ -74,6 +74,7 @@ namespace dbaui
 OWizTypeSelectList( Window* pParent, WinBits nStyle = WB_BORDER )
 : MultiListBox(pParent,nStyle)
 , m_bPKey(false)
+, m_pParentTabPage(NULL)
 {}
 voidSetPKey(bool bPKey) { m_bPKey = bPKey; }
 voidSetParentTabPage(Window* pParentTabPage) { 
m_pParentTabPage = pParentTabPage; }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2014-08-16 Thread Julien Nabet
 officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu |2 +-
 sw/uiconfig/swriter/ui/optformataidspage.ui  |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 46b7a08767e17ff1ef086393c4e111a8ffa19d55
Author: Julien Nabet serval2...@yahoo.fr
Date:   Sat Aug 16 22:06:46 2014 +0200

Related: fdo#45588 Use of different items for Formatting Marks

There's still help part to change
See https://bugs.freedesktop.org/show_bug.cgi?id=45588#c9

Change-Id: Ieb69ebffc680b0352ed481524a95a78bca50ac83

diff --git 
a/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu
index 74597a3..f9e33bf 100644
--- a/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu
@@ -5547,7 +5547,7 @@
   /node
   node oor:name=.uno:InsertSoftHyphen oor:op=replace
 prop oor:name=Label oor:type=xs:string
-  value xml:lang=en-US~Optional hyphen/value
+  value xml:lang=en-USS~oft hyphen/value
 /prop
   /node
   node oor:name=.uno:InsertNonBreakingSpace oor:op=replace
diff --git a/sw/uiconfig/swriter/ui/optformataidspage.ui 
b/sw/uiconfig/swriter/ui/optformataidspage.ui
index c128453..85dd592 100644
--- a/sw/uiconfig/swriter/ui/optformataidspage.ui
+++ b/sw/uiconfig/swriter/ui/optformataidspage.ui
@@ -57,7 +57,7 @@
 /child
 child
   object class=GtkCheckButton id=hyphens
-property name=label translatable=yesCustom 
h_yphens/property
+property name=label translatable=yesSoft 
h_yphens/property
 property name=visibleTrue/property
 property name=can_focusTrue/property
 property name=receives_defaultFalse/property
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2014-08-16 Thread Matteo Casalin
 include/test/primitive2dxmldump.hxx |2 +-
 test/source/primitive2dxmldump.cxx  |   10 +++---
 2 files changed, 8 insertions(+), 4 deletions(-)

New commits:
commit ed8c68726508112e30f178f1ce31f421cddb4d87
Author: Matteo Casalin matteo.casa...@yahoo.com
Date:   Sun Aug 17 00:31:19 2014 +0200

Fix: reference to 'Primitive2DSequence' is ambiguous

Change-Id: Ic6cf4bc6dab4b9e2610aebdc42e3df7b56eda59d

diff --git a/test/source/primitive2dxmldump.cxx 
b/test/source/primitive2dxmldump.cxx
index da6f4e2..afa26fe 100644
--- a/test/source/primitive2dxmldump.cxx
+++ b/test/source/primitive2dxmldump.cxx
@@ -59,7 +59,9 @@ void Primitive2dXmlDump::filterAllActionTypes()
 maFilter.assign(constMaxActionType, true);
 }
 
-xmlDocPtr Primitive2dXmlDump::dumpAndParse(const Primitive2DSequence 
rPrimitive2DSequence, const OUString rTempStreamName)
+xmlDocPtr Primitive2dXmlDump::dumpAndParse(
+const drawinglayer::primitive2d::Primitive2DSequence rPrimitive2DSequence,
+const OUString rTempStreamName)
 {
 boost::scoped_ptrSvStream pStream;
 
@@ -84,7 +86,9 @@ xmlDocPtr Primitive2dXmlDump::dumpAndParse(const 
Primitive2DSequence rPrimitive
 return pDoc;
 }
 
-void Primitive2dXmlDump::decomposeAndWrite(const Primitive2DSequence 
rPrimitive2DSequence, XmlWriter rWriter)
+void Primitive2dXmlDump::decomposeAndWrite(
+const drawinglayer::primitive2d::Primitive2DSequence rPrimitive2DSequence,
+XmlWriter rWriter)
 {
 for (int i = 0; i  rPrimitive2DSequence.getLength(); i++)
 {
commit fb1f710d3f58337e8a05e476326453b584e87fa2
Author: Matteo Casalin matteo.casa...@yahoo.com
Date:   Sun Aug 17 00:27:24 2014 +0200

loplugin:passstuffbyref (Primitive2DSequence)

Change-Id: I3d9c6daa09d71ca872021fe13405b08050e191d9

diff --git a/include/test/primitive2dxmldump.hxx 
b/include/test/primitive2dxmldump.hxx
index 6a94960..a578e60 100644
--- a/include/test/primitive2dxmldump.hxx
+++ b/include/test/primitive2dxmldump.hxx
@@ -39,7 +39,7 @@ public:
 pTempStreamName - this is useful when creating the test, to dump the
 file for examination.
 */
-xmlDocPtr dumpAndParse(drawinglayer::primitive2d::Primitive2DSequence 
aPrimitive2DSequence, const OUString rTempStreamName = OUString());
+xmlDocPtr dumpAndParse(const 
drawinglayer::primitive2d::Primitive2DSequence aPrimitive2DSequence, const 
OUString rTempStreamName = OUString());
 };
 
 #endif // INCLUDED_TEST_PRIMITIVE2DXMLDUMP_HXX
diff --git a/test/source/primitive2dxmldump.cxx 
b/test/source/primitive2dxmldump.cxx
index ea12562..da6f4e2 100644
--- a/test/source/primitive2dxmldump.cxx
+++ b/test/source/primitive2dxmldump.cxx
@@ -59,7 +59,7 @@ void Primitive2dXmlDump::filterAllActionTypes()
 maFilter.assign(constMaxActionType, true);
 }
 
-xmlDocPtr Primitive2dXmlDump::dumpAndParse(Primitive2DSequence 
aPrimitive2DSequence, const OUString rTempStreamName)
+xmlDocPtr Primitive2dXmlDump::dumpAndParse(const Primitive2DSequence 
rPrimitive2DSequence, const OUString rTempStreamName)
 {
 boost::scoped_ptrSvStream pStream;
 
@@ -72,7 +72,7 @@ xmlDocPtr 
Primitive2dXmlDump::dumpAndParse(Primitive2DSequence aPrimitive2DSeque
 aWriter.startDocument();
 aWriter.startElement(primitive2D);
 
-decomposeAndWrite(aPrimitive2DSequence, aWriter);
+decomposeAndWrite(rPrimitive2DSequence, aWriter);
 
 aWriter.endElement();
 aWriter.endDocument();
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2014-08-16 Thread Matteo Casalin
 test/source/primitive2dxmldump.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 613cc91bb5c169ad5294f04567df526d2181a6f9
Author: Matteo Casalin matteo.casa...@yahoo.com
Date:   Sun Aug 17 00:54:21 2014 +0200

Fix another: reference to 'Primitive2DSequence' is ambiguous

Change-Id: I8b78126cab64f023ffcb35c080576148b1eb15f5

diff --git a/test/source/primitive2dxmldump.cxx 
b/test/source/primitive2dxmldump.cxx
index afa26fe..9d3ad11 100644
--- a/test/source/primitive2dxmldump.cxx
+++ b/test/source/primitive2dxmldump.cxx
@@ -92,7 +92,7 @@ void Primitive2dXmlDump::decomposeAndWrite(
 {
 for (int i = 0; i  rPrimitive2DSequence.getLength(); i++)
 {
-Primitive2DReference xPrimitive2DReference = rPrimitive2DSequence[i];
+drawinglayer::primitive2d::Primitive2DReference xPrimitive2DReference 
= rPrimitive2DSequence[i];
 const BasePrimitive2D* pBasePrimitive = dynamic_castconst 
BasePrimitive2D* (xPrimitive2DReference.get());
 
 sal_uInt32 nId = pBasePrimitive-getPrimitive2DID();
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Helpcontent2

2014-08-16 Thread Olivier Hallot
Hello guys...

AFAIK we have no tool to edit the help pages for LibreOffice. The tools
scattered here and there that I tested are broken and I end up having to
edit the XML text file with great pain, limiting the possibilities to
add/improve content.

A feature with no help page is a hidden feature/secret for most users.

OTOH, discussions on a new help system are stalled, some hickups once a
while, since LO birth.

The extension I am told to investigate is HelpAuthoring.oxt, + a SUN
Help2 Reference Guide in PDF available in the net. The extenstion is
broken and debate will rise to fix it or design a new help system with
no foreseable future.

So, is there *anywhere* a version of OpenOffice.org + Helpauthoring.oxt
 known to work in Linux/windows(*) that I can install and edit
LibreOffice Help pages?

Thank you

(*) W7 or Win XP
-- 
Olivier Hallot
Comunidade LibreOffice
http://ask.libreoffice.org/pt-br
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] core.git: configure.ac download.lst external/apache-commons external/jfreereport reportbuilder/java RepositoryExternal.mk swext/Extension_wiki-publisher.mk

2014-08-16 Thread Thomas Arnhold
 RepositoryExternal.mk|4 
++--
 configure.ac |4 
++--
 download.lst |3 ++-
 external/apache-commons/ExternalPackage_apache_commons_logging.mk|2 +-
 external/apache-commons/ExternalProject_apache_commons_httpclient.mk |2 +-
 external/apache-commons/patches/logging.patch|8 

 external/jfreereport/ExternalProject_jfreereport_flow_engine.mk  |2 +-
 external/jfreereport/ExternalProject_jfreereport_liblayout.mk|2 +-
 reportbuilder/java/org/libreoffice/report/pentaho/Manifest.mf|2 +-
 swext/Extension_wiki-publisher.mk|2 +-
 10 files changed, 16 insertions(+), 15 deletions(-)

New commits:
commit 439354a0b4641bc2ee8e403e8b9e84ac4a0ec6a9
Author: Thomas Arnhold tho...@arnhold.org
Date:   Thu Aug 14 23:20:27 2014 +0200

upgrade to apache-commons-1.2

Change-Id: Ic356c6a23f42b5fe37be1075e8508bb168eac9a1
Reviewed-on: https://gerrit.libreoffice.org/10927
Reviewed-by: Thomas Arnhold tho...@arnhold.org
Tested-by: Thomas Arnhold tho...@arnhold.org

diff --git a/RepositoryExternal.mk b/RepositoryExternal.mk
index 621ff41..16772512 100644
--- a/RepositoryExternal.mk
+++ b/RepositoryExternal.mk
@@ -3512,7 +3512,7 @@ else # !SYSTEM_APACHE_COMMONS
 
 ifeq ($(ENABLE_JAVA),TRUE)
 $(eval $(call gb_Helper_register_jars_for_install,OOO,reportbuilder,\
-   commons-logging-1.1.3 \
+   commons-logging-1.2 \
 ))
 endif
 $(eval $(call gb_Helper_register_jars,OXT,\
@@ -3553,7 +3553,7 @@ endef
 
 define gb_Jar__use_commons-logging
 $(call gb_Jar_use_external_project,$(1),apache_commons_logging)
-$(call gb_Jar_use_jar,$(1),commons-logging-1.1.3)
+$(call gb_Jar_use_jar,$(1),commons-logging-1.2)
 endef
 define gb_ExternalProject__use_commons-logging
 $(call gb_ExternalProject_use_external_project,$(1),apache_commons_logging)
diff --git a/configure.ac b/configure.ac
index b5d7373..1189229 100644
--- a/configure.ac
+++ b/configure.ac
@@ -10930,8 +10930,8 @@ if test $ENABLE_MEDIAWIKI = TRUE -o 
$ENABLE_REPORTBUILDER = TRUE; then
 fi
 if test $ENABLE_MEDIAWIKI = TRUE -o $ENABLE_REPORTBUILDER = 
TRUE; then
 if test -z $COMMONS_LOGGING_JAR; then
-AC_CHECK_FILE(/usr/share/java/commons-logging-1.1.3.jar,
-   [ 
COMMONS_LOGGING_JAR=/usr/share/java/commons-logging-1.1.3.jar ],
+AC_CHECK_FILE(/usr/share/java/commons-logging-1.2.jar,
+   [ 
COMMONS_LOGGING_JAR=/usr/share/java/commons-logging-1.2.jar ],
[
 AC_CHECK_FILE(/usr/share/java/commons-logging.jar,
 [ 
COMMONS_LOGGING_JAR=/usr/share/java/commons-logging.jar ],
diff --git a/download.lst b/download.lst
index 9eb59ac..bd66376 100644
--- a/download.lst
+++ b/download.lst
@@ -9,7 +9,8 @@ export APACHE_COMMONS_LANG_TARBALL := $(if $(filter 
TRUE,$(HAVE_JAVA6))\
   ,8ab049135b2d15313da5d9f0656894a1-commons-lang3-3.3.1-src.tar.gz\
   ,625ff5f2f968dd908bca43c9469d6e6b-commons-lang-2.4-src.tar.gz\
 )
-export APACHE_COMMONS_LOGGING_TARBALL := 
e8e197d628436490886d17cffa108fe3-commons-logging-1.1.3-src.tar.gz
+export APACHE_COMMONS_LOGGING_MD5SUM := ce977548f1cbf46918e93cd38ac35163
+export APACHE_COMMONS_LOGGING_TARBALL := commons-logging-1.2-src.tar.gz
 export APR_MD5SUM := eff9d741b0999a9bbab96862dd2a2a3d
 export APR_TARBALL := apr-1.4.8.tar.gz
 export APR_UTIL_MD5SUM := 71a11d037240b292f824ba1eb537b4e3
diff --git a/external/apache-commons/ExternalPackage_apache_commons_logging.mk 
b/external/apache-commons/ExternalPackage_apache_commons_logging.mk
index b89a394..ce72112 100644
--- a/external/apache-commons/ExternalPackage_apache_commons_logging.mk
+++ b/external/apache-commons/ExternalPackage_apache_commons_logging.mk
@@ -11,6 +11,6 @@ $(eval $(call 
gb_ExternalPackage_ExternalPackage,apache_commons_logging,apache_c
 
 $(eval $(call 
gb_ExternalPackage_use_external_project,apache_commons_logging,apache_commons_logging))
 
-$(eval $(call 
gb_ExternalPackage_add_file,apache_commons_logging,$(LIBO_SHARE_JAVA_FOLDER)/commons-logging-1.1.3.jar,target/commons-logging-1.1.3.jar))
+$(eval $(call 
gb_ExternalPackage_add_file,apache_commons_logging,$(LIBO_SHARE_JAVA_FOLDER)/commons-logging-1.2.jar,target/commons-logging-1.2.jar))
 
 # vim: set noet sw=4 ts=4:
diff --git 
a/external/apache-commons/ExternalProject_apache_commons_httpclient.mk 
b/external/apache-commons/ExternalProject_apache_commons_httpclient.mk
index f8cec74..ff2733a 100644
--- a/external/apache-commons/ExternalProject_apache_commons_httpclient.mk
+++ b/external/apache-commons/ExternalProject_apache_commons_httpclient.mk
@@ -23,7 +23,7 @@ $(call 
gb_ExternalProject_get_state_target,apache_commons_httpclient,build) :
-q \
-f build.xml \
   

[Libreoffice-commits] core.git: Branch 'libreoffice-4-3' - configure.ac

2014-08-16 Thread Michael Stahl
 configure.ac |   14 --
 1 file changed, 12 insertions(+), 2 deletions(-)

New commits:
commit 2087b54aab25ddbab5128af9f777b1686bc0ce5e
Author: Michael Stahl mst...@redhat.com
Date:   Fri Aug 15 13:25:22 2014 +0200

configure: don't try to use Win32 make on release branch

Change-Id: Icd8c1b45659ca323aef25a55803f5b1ce078b9d3
Reviewed-on: https://gerrit.libreoffice.org/10932
Reviewed-by: Thomas Arnhold tho...@arnhold.org
Tested-by: Thomas Arnhold tho...@arnhold.org

diff --git a/configure.ac b/configure.ac
index 537f48b..2f1 100644
--- a/configure.ac
+++ b/configure.ac
@@ -5016,8 +5016,18 @@ for a in $MAKE $GNUMAKE make gmake gnumake; do
 if test -n $a; then
 $a --version 2 /dev/null | grep GNU  21  /dev/null
 if test $? -eq 0;  then
-GNUMAKE=`which $a`
-break
+if test $build_os = cygwin; then
+if test -n $($a -v | grep 'Built for Windows') ; then
+AC_MSG_NOTICE([$a is a native Win32 make, which is not 
supported on this old branch.])
+unset GNUMAKE
+else
+GNUMAKE=`which $a`
+break
+fi
+else
+GNUMAKE=`which $a`
+break
+fi
 fi
 fi
 done
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: 16 commits - external/boost i18npool/source include/canvas include/connectivity include/filter include/osl include/sfx2 include/svx lotuswordpro/source registry/source

2014-08-16 Thread Thomas Arnhold
 external/boost/UnpackedTarball_boost.mk   |6 -
 i18npool/source/localedata/filewriter.cxx |2 
 include/canvas/base/graphicdevicebase.hxx |  108 +-
 include/connectivity/FValue.hxx   |4 
 include/filter/msfilter/mstoolbar.hxx |2 
 include/osl/file.hxx  |4 
 include/sfx2/docfilt.hxx  |   14 +--
 include/sfx2/templateabstractview.hxx |2 
 include/svx/fmtools.hxx   |  100 
 lotuswordpro/source/filter/lwpborderstuff.cxx |2 
 lotuswordpro/source/filter/lwpdlvlist.cxx |2 
 lotuswordpro/source/filter/lwpdoc.hxx |4 
 lotuswordpro/source/filter/lwpfrib.cxx|2 
 lotuswordpro/source/filter/lwpmarker.cxx  |2 
 lotuswordpro/source/filter/lwpoverride.cxx|2 
 lotuswordpro/source/filter/lwppara.cxx|2 
 lotuswordpro/source/filter/lwpsection.cxx |4 
 registry/source/keyimpl.cxx   |4 
 registry/source/keyimpl.hxx   |   12 +-
 sc/qa/unit/ucalc.cxx  |2 
 sc/source/ui/inc/viewdata.hxx |4 
 sw/source/core/inc/frame.hxx  |   28 +++---
 sw/source/core/layout/findfrm.cxx |8 -
 sw/source/core/text/porlin.hxx|   24 ++---
 vcl/inc/outdata.hxx   |4 
 25 files changed, 174 insertions(+), 174 deletions(-)

New commits:
commit fceb7534bfc9cece328c1f7c310ecdd0f707ba15
Author: Thomas Arnhold tho...@arnhold.org
Date:   Sun Aug 17 04:17:21 2014 +0200

fix unit test after size_t change

Change-Id: I511fd2c11fc1506c0cf7532347cca7933ed8ed5a

diff --git a/sc/qa/unit/ucalc.cxx b/sc/qa/unit/ucalc.cxx
index d9097bf..f06c2fc 100644
--- a/sc/qa/unit/ucalc.cxx
+++ b/sc/qa/unit/ucalc.cxx
@@ -3054,7 +3054,7 @@ void Test::testGraphicsOnSheetMove()
 
 pPage = pDrawLayer-GetPage(1);
 CPPUNIT_ASSERT_MESSAGE(No page instance for the 2nd sheet., pPage);
-CPPUNIT_ASSERT_EQUAL_MESSAGE(2nd sheet shouldn't have any object., 
pPage-GetObjCount(), static_castsal_uIntPtr(0));
+CPPUNIT_ASSERT_EQUAL_MESSAGE(2nd sheet shouldn't have any object., 
pPage-GetObjCount(), static_castsize_t(0));
 
 // Insert a new sheet at left-end, and make sure the object has moved to
 // the 2nd page.
commit 1f1dfcdc91f55c87bbd80dbca09209c547907746
Author: Thomas Arnhold tho...@arnhold.org
Date:   Sun Aug 17 04:06:56 2014 +0200

boost: update patch states

Change-Id: I08d9692f42bd5bbce2d0c893b2eaf7eb65d4f2aa

diff --git a/external/boost/UnpackedTarball_boost.mk 
b/external/boost/UnpackedTarball_boost.mk
index 23fb367..237d97d 100644
--- a/external/boost/UnpackedTarball_boost.mk
+++ b/external/boost/UnpackedTarball_boost.mk
@@ -35,13 +35,13 @@ boost_patches += boost.date_time.Wshadow.warnings.patch
 boost_patches += boost.date_time.Wunused-local-typedefs.warnings.patch
 # fixed upstream
 boost_patches += boost.math.Wdeprecated-register.patch.0
-# https://svn.boost.org/trac/boost/ticket/9884
+# fixed upstream
 boost_patches += boost.math.Wunused-local-typedefs.warnings.patch
 # https://svn.boost.org/trac/boost/ticket/9885
 boost_patches += boost.multi_array.C4510.warnings.patch
 # https://svn.boost.org/trac/boost/ticket/9886
 boost_patches += boost.multi_array.Wshadow.warnings.patch.2
-# https://svn.boost.org/trac/boost/ticket/9887
+# fixed upstream
 boost_patches += boost.multi_array.Wundef.warnings.patch
 # https://svn.boost.org/trac/boost/ticket/9888
 boost_patches += boost.multi_array.Wunused-local-typedefs.warnings.patch
@@ -76,7 +76,7 @@ boost_patches += boost.spirit.Wunused-parameter.warnings.patch
 boost_patches += boost.date_time.Wshadow.warnings.patch.1
 # fixed upstream
 boost_patches += boost.unordered.Wshadow.warnings.patch
-# https://svn.boost.org/trac/boost/ticket/9902
+# fixed upstream
 boost_patches += boost.tuple.Wunused-local-typedefs.warnings.patch
 # https://svn.boost.org/trac/boost/ticket/9903
 boost_patches += boost.utility.Wundef.warnings.patch
commit 2b4c54aa1363bf450e91172ad67db33de63c5963
Author: Thomas Arnhold tho...@arnhold.org
Date:   Sun Aug 17 01:57:20 2014 +0200

warning C4800: forcing value to bool 'true' or 'false'

Change-Id: I0bea774cd903f93721de6ffd8ed4ff9f5a15ef81

diff --git a/include/sfx2/templateabstractview.hxx 
b/include/sfx2/templateabstractview.hxx
index cd51d2b..00ecf03 100644
--- a/include/sfx2/templateabstractview.hxx
+++ b/include/sfx2/templateabstractview.hxx
@@ -112,7 +112,7 @@ public:
 const OUString getCurRegionName () const { return maCurRegionName;}
 
 // Check if the root region is visible or not.
-bool isNonRootRegionVisible () const { return mnCurRegionId;}
+bool isNonRootRegionVisible () const { return mnCurRegionId  0;}
 
 void setOpenRegionHdl(const Link rLink);
 
commit f05d1812c069ad4471da21a8b6a0f9cc7717e37e
Author: Thomas Arnhold tho...@arnhold.org

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

2014-08-16 Thread Olivier Hallot
 sc/uiconfig/scalc/ui/randomnumbergenerator.ui |  601 +++---
 1 file changed, 354 insertions(+), 247 deletions(-)

New commits:
commit 18749c7ad38d1a8cec1a941100112c99260c34fa
Author: Olivier Hallot olivier.hal...@edx.srv.br
Date:   Sat Aug 16 19:19:53 2014 -0300

fdo#80453 (part) Help button for insert random #

* Insert help button in dialogo
* HIG-ify dialog.

Change-Id: I839af28981e9bd980842e73e29bd6443f4154b86
Reviewed-on: https://gerrit.libreoffice.org/10944
Reviewed-by: Thomas Arnhold tho...@arnhold.org
Tested-by: Thomas Arnhold tho...@arnhold.org

diff --git a/sc/uiconfig/scalc/ui/randomnumbergenerator.ui 
b/sc/uiconfig/scalc/ui/randomnumbergenerator.ui
index cd7b8b9..1e3e00b 100644
--- a/sc/uiconfig/scalc/ui/randomnumbergenerator.ui
+++ b/sc/uiconfig/scalc/ui/randomnumbergenerator.ui
@@ -77,6 +77,88 @@
 property name=can_focusFalse/property
 property name=orientationvertical/property
 property name=spacing12/property
+child
+  object class=GtkFrame id=frame-data
+property name=visibleTrue/property
+property name=can_focusFalse/property
+property name=label_xalign0/property
+property name=shadow_typenone/property
+child
+  object class=GtkAlignment id=alignment1
+property name=visibleTrue/property
+property name=can_focusFalse/property
+property name=top_padding6/property
+property name=bottom_padding6/property
+property name=left_padding12/property
+property name=right_padding12/property
+child
+  object class=GtkBox id=box1
+property name=visibleTrue/property
+property name=can_focusFalse/property
+property name=spacing12/property
+child
+  object class=GtkLabel id=cell-range-label
+property name=visibleTrue/property
+property name=can_focusFalse/property
+property name=xalign0/property
+property name=label translatable=yesCell 
Range/property
+property name=use_underlineTrue/property
+property 
name=mnemonic_widgetcell-range-edit/property
+  /object
+  packing
+property name=expandFalse/property
+property name=fillTrue/property
+property name=position0/property
+  /packing
+/child
+child
+  object class=foruilo-RefEdit id=cell-range-edit
+property name=visibleTrue/property
+property name=can_focusTrue/property
+property name=valigncenter/property
+property name=hexpandTrue/property
+property name=invisible_char•/property
+property name=width_chars30/property
+  /object
+  packing
+property name=expandFalse/property
+property name=fillTrue/property
+property name=position1/property
+  /packing
+/child
+child
+  object class=foruilo-RefButton id=cell-range-button
+property name=visibleTrue/property
+property name=can_focusTrue/property
+property name=receives_defaultTrue/property
+  /object
+  packing
+property name=expandFalse/property
+property name=fillTrue/property
+property name=position2/property
+  /packing
+/child
+  /object
+/child
+  /object
+/child
+child type=label
+  object class=GtkLabel id=label1
+property name=visibleTrue/property
+property name=can_focusFalse/property
+property name=label translatable=yesData/property
+attributes
+  attribute name=weight value=bold/
+/attributes
+  /object
+/child
+  /object
+  packing
+property name=expandFalse/property
+property name=fillTrue/property
+property name=position0/property
+  /packing
+/child
 child internal-child=action_area
   object class=GtkButtonBox id=dialog-action_area1
 property name=can_focusFalse/property
@@ -129,6 +211,20 @@
 property 

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

2014-08-16 Thread Chris Laplante
 svl/ignores.persist   |binary
 svl/source/config/cjkoptions.cxx  |5 -
 svl/source/config/ctloptions.cxx  |6 -
 svl/source/config/languageoptions.cxx |8 --
 svl/source/fsstor/fsstorage.cxx   |2 
 svl/source/items/globalnameitem.cxx   |5 -
 svl/source/items/itemprop.cxx |6 -
 svl/source/items/itemset.cxx  |2 
 svl/source/items/poolitem.cxx |6 -
 svl/source/items/slstitm.cxx  |2 
 svl/source/items/srchitem.cxx |2 
 svl/source/items/style.cxx|3 
 svl/source/misc/adrparse.cxx  |4 -
 svl/source/misc/filenotation.cxx  |1 
 svl/source/misc/inethist.cxx  |   81 +
 svl/source/misc/urihelper.cxx |   16 -
 svl/source/numbers/zforlist.cxx   |7 --
 svl/source/svdde/ddecli.cxx   |   49 ---
 svl/source/svdde/ddedata.cxx  |   20 --
 svl/source/svdde/ddeinf.cxx   |2 
 svl/source/svdde/ddestrg.cxx  |   10 ---
 svl/source/svdde/ddesvr.cxx   |  106 --
 22 files changed, 16 insertions(+), 327 deletions(-)

New commits:
commit b0e02e72c20f3c921fed34367f8184604387572b
Author: Chris Laplante mostthings...@gmail.com
Date:   Sat Aug 16 21:27:34 2014 -0400

svl: Remove ASCII art and pointless comments

Change-Id: Idd8ea0cb7e7d58a29dbfcae084558320efe5fe43
Reviewed-on: https://gerrit.libreoffice.org/10945
Reviewed-by: Thomas Arnhold tho...@arnhold.org
Tested-by: Thomas Arnhold tho...@arnhold.org

diff --git a/svl/ignores.persist b/svl/ignores.persist
new file mode 100644
index 000..69ae856
Binary files /dev/null and b/svl/ignores.persist differ
diff --git a/svl/source/config/cjkoptions.cxx b/svl/source/config/cjkoptions.cxx
index b8c9788..eb47226 100644
--- a/svl/source/config/cjkoptions.cxx
+++ b/svl/source/config/cjkoptions.cxx
@@ -378,15 +378,12 @@ bool 
SvtCJKOptions_Impl::IsReadOnly(SvtCJKOptions::EOption eOption) const
 return bReadOnly;
 }
 
-// global 
+// global
 
 static SvtCJKOptions_Impl*  pCJKOptions = NULL;
 static sal_Int32nCJKRefCount = 0;
 namespace { struct theCJKOptionsMutex : public rtl::Static ::osl::Mutex , 
theCJKOptionsMutex {}; }
 
-
-// class SvtCJKOptions --
-
 SvtCJKOptions::SvtCJKOptions(bool bDontLoad)
 {
 // Global access, must be guarded (multithreading)
diff --git a/svl/source/config/ctloptions.cxx b/svl/source/config/ctloptions.cxx
index b6c3967..a75ba60 100644
--- a/svl/source/config/ctloptions.cxx
+++ b/svl/source/config/ctloptions.cxx
@@ -37,8 +37,6 @@ using namespace ::com::sun::star::uno;
 
 #define CFG_READONLY_DEFAULT false
 
-// SvtCJKOptions_Impl 
--
-
 class SvtCTLOptions_Impl : public utl::ConfigItem
 {
 private:
@@ -377,14 +375,12 @@ void SvtCTLOptions_Impl::SetCTLTextNumerals( 
SvtCTLOptions::TextNumerals _eNumer
 NotifyListeners(0);
 }
 }
-// global 
+// global
 
 static SvtCTLOptions_Impl*  pCTLOptions = NULL;
 static sal_Int32nCTLRefCount = 0;
 namespace { struct CTLMutex : public rtl::Static osl::Mutex, CTLMutex  {}; }
 
-// class SvtCTLOptions --
-
 SvtCTLOptions::SvtCTLOptions( bool bDontLoad )
 {
 // Global access, must be guarded (multithreading)
diff --git a/svl/source/config/languageoptions.cxx 
b/svl/source/config/languageoptions.cxx
index 72c5338..06d4382 100644
--- a/svl/source/config/languageoptions.cxx
+++ b/svl/source/config/languageoptions.cxx
@@ -33,12 +33,10 @@
 #endif
 
 using namespace ::com::sun::star;
-// global 
--
+// global
 
 namespace { struct ALMutex : public rtl::Static ::osl::Mutex, ALMutex  {}; }
 
-// class SvtLanguageOptions 

-
 SvtLanguageOptions::SvtLanguageOptions( bool _bDontLoad )
 {
 // Global access, must be guarded (multithreading)
@@ -60,7 +58,7 @@ SvtLanguageOptions::~SvtLanguageOptions()
 delete m_pCJKOptions;
 delete m_pCTLOptions;
 }
-// CJK options 
-
+// CJK options
 bool SvtLanguageOptions::IsCJKFontEnabled() const
 {
 return m_pCJKOptions-IsCJKFontEnabled();
@@ -85,7 +83,7 @@ bool SvtLanguageOptions::IsAnyEnabled() const
 {
 return m_pCJKOptions-IsAnyEnabled();
 }
-// CTL options 
-
+// CTL options
 void SvtLanguageOptions::SetCTLFontEnabled( bool _bEnabled )
 {
 m_pCTLOptions-SetCTLFontEnabled( _bEnabled );
diff --git a/svl/source/fsstor/fsstorage.cxx b/svl/source/fsstor/fsstorage.cxx
index b2eb88f..9eb5547 100644
--- 

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

2014-08-16 Thread Thomas Arnhold
 sw/source/core/inc/frame.hxx |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit bd660b3d31a444fb46927b9e31ef6bd2752eab24
Author: Thomas Arnhold tho...@arnhold.org
Date:   Sun Aug 17 05:23:12 2014 +0200

oups

wrongly deleted in
0842a2707cfca15c0af5eee6ed9d76547a01a7f9

Change-Id: Iafccce9a503c48e483d492a2d4bdee9a648f32c7

diff --git a/sw/source/core/inc/frame.hxx b/sw/source/core/inc/frame.hxx
index 825b452..0d9ac84 100644
--- a/sw/source/core/inc/frame.hxx
+++ b/sw/source/core/inc/frame.hxx
@@ -549,12 +549,12 @@ public:
 bool IsInBalancedSection() const;
 
 inline bool IsReverse() const { return mbReverse; }
-inline void SetReverse( bool bNew ){ mbReverse; }
+inline void SetReverse( bool bNew ){ mbReverse = bNew; }
 inline bool IsVertical() const;
 
 inline bool IsVertLR() const;
 inline bool GetVerticalFlag() const { return mbVertical; }
-inline void SetVertical( bool bNew ){ mbVertical; }
+inline void SetVertical( bool bNew ){ mbVertical = bNew; }
 
 inline void SetbVertLR( bool bNew ) { mbVertLR = bNew; }
 inline void SetDerivedVert( bool bNew ){ mbDerivedVert = bNew; }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: 2 commits - chart2/qa crashrep/source dbaccess/uiconfig icon-themes/galaxy icon-themes/hicontrast icon-themes/sifr oox/source scp2/inc sc/qa sd/qa shell/source svl/igno

2014-08-16 Thread Thomas Arnhold
 dev/null |binary
 1 file changed

New commits:
commit e99535df4d57f93ef977a7f93c71ce940b440ee9
Author: Thomas Arnhold tho...@arnhold.org
Date:   Sun Aug 17 05:48:15 2014 +0200

remove executable bits

Change-Id: Iec785ae538de81325812b1e6fe33115789b39770

diff --git a/chart2/qa/extras/data/docx/3d-bar-label.docx 
b/chart2/qa/extras/data/docx/3d-bar-label.docx
old mode 100755
new mode 100644
diff --git a/chart2/qa/extras/data/docx/area-chart-labels.docx 
b/chart2/qa/extras/data/docx/area-chart-labels.docx
old mode 100755
new mode 100644
diff --git a/chart2/qa/extras/data/docx/bar-chart-labels.docx 
b/chart2/qa/extras/data/docx/bar-chart-labels.docx
old mode 100755
new mode 100644
diff --git a/chart2/qa/extras/data/docx/data-label-borders.docx 
b/chart2/qa/extras/data/docx/data-label-borders.docx
old mode 100755
new mode 100644
diff --git a/chart2/qa/extras/data/docx/doughnut-chart-labels.docx 
b/chart2/qa/extras/data/docx/doughnut-chart-labels.docx
old mode 100755
new mode 100644
diff --git a/chart2/qa/extras/data/docx/line-chart-label-default-placement.docx 
b/chart2/qa/extras/data/docx/line-chart-label-default-placement.docx
old mode 100755
new mode 100644
diff --git a/chart2/qa/extras/data/docx/radar-chart-labels.docx 
b/chart2/qa/extras/data/docx/radar-chart-labels.docx
old mode 100755
new mode 100644
diff --git a/chart2/qa/extras/data/pptx/percentage-number-formats.pptx 
b/chart2/qa/extras/data/pptx/percentage-number-formats.pptx
old mode 100755
new mode 100644
diff --git a/chart2/qa/extras/data/pptx/stacked-bar-chart-hidden-series.pptx 
b/chart2/qa/extras/data/pptx/stacked-bar-chart-hidden-series.pptx
old mode 100755
new mode 100644
diff --git a/chart2/qa/extras/data/pptx/stacked-non-stacked-mix-y-axis.pptx 
b/chart2/qa/extras/data/pptx/stacked-non-stacked-mix-y-axis.pptx
old mode 100755
new mode 100644
diff --git a/chart2/qa/extras/data/xlsx/chart-auto-background.xlsx 
b/chart2/qa/extras/data/xlsx/chart-auto-background.xlsx
old mode 100755
new mode 100644
diff --git a/crashrep/source/win32/crashrep.rc 
b/crashrep/source/win32/crashrep.rc
old mode 100755
new mode 100644
diff --git a/dbaccess/uiconfig/ui/indexdesigndialog.ui 
b/dbaccess/uiconfig/ui/indexdesigndialog.ui
old mode 100755
new mode 100644
diff --git a/icon-themes/galaxy/avmedia/res/avaudiologo.png 
b/icon-themes/galaxy/avmedia/res/avaudiologo.png
old mode 100755
new mode 100644
diff --git a/icon-themes/galaxy/avmedia/res/avl02048.png 
b/icon-themes/galaxy/avmedia/res/avl02048.png
old mode 100755
new mode 100644
diff --git a/icon-themes/galaxy/avmedia/res/avl02052.png 
b/icon-themes/galaxy/avmedia/res/avl02052.png
old mode 100755
new mode 100644
diff --git a/icon-themes/galaxy/avmedia/res/avl02054.png 
b/icon-themes/galaxy/avmedia/res/avl02054.png
old mode 100755
new mode 100644
diff --git a/icon-themes/galaxy/brand/intro.png 
b/icon-themes/galaxy/brand/intro.png
old mode 100755
new mode 100644
diff --git a/icon-themes/galaxy/sfx2/res/128x128_calc_doc-p.png 
b/icon-themes/galaxy/sfx2/res/128x128_calc_doc-p.png
old mode 100755
new mode 100644
diff --git a/icon-themes/galaxy/sfx2/res/128x128_draw_doc-p.png 
b/icon-themes/galaxy/sfx2/res/128x128_draw_doc-p.png
old mode 100755
new mode 100644
diff --git a/icon-themes/galaxy/sfx2/res/128x128_impress_doc-p.png 
b/icon-themes/galaxy/sfx2/res/128x128_impress_doc-p.png
old mode 100755
new mode 100644
diff --git a/icon-themes/galaxy/sfx2/res/128x128_math_doc-p.png 
b/icon-themes/galaxy/sfx2/res/128x128_math_doc-p.png
old mode 100755
new mode 100644
diff --git a/icon-themes/galaxy/sfx2/res/128x128_writer_doc-p.png 
b/icon-themes/galaxy/sfx2/res/128x128_writer_doc-p.png
old mode 100755
new mode 100644
diff --git a/icon-themes/galaxy/sfx2/res/logo.png 
b/icon-themes/galaxy/sfx2/res/logo.png
old mode 100755
new mode 100644
diff --git a/icon-themes/galaxy/sfx2/res/signet.png 
b/icon-themes/galaxy/sfx2/res/signet.png
old mode 100755
new mode 100644
diff --git a/icon-themes/galaxy/sfx2/res/startcenter-logo.png 
b/icon-themes/galaxy/sfx2/res/startcenter-logo.png
old mode 100755
new mode 100644
diff --git a/icon-themes/galaxy/svx/res/galmedia.png 
b/icon-themes/galaxy/svx/res/galmedia.png
old mode 100755
new mode 100644
diff --git a/icon-themes/galaxy/svx/res/markers.png 
b/icon-themes/galaxy/svx/res/markers.png
old mode 100755
new mode 100644
diff --git a/icon-themes/galaxy/svx/res/markers2.png 
b/icon-themes/galaxy/svx/res/markers2.png
old mode 100755
new mode 100644
diff --git a/icon-themes/galaxy/svx/res/vendor01.png 
b/icon-themes/galaxy/svx/res/vendor01.png
old mode 100755
new mode 100644
diff --git a/icon-themes/galaxy/sw/res/image-example.png 
b/icon-themes/galaxy/sw/res/image-example.png
old mode 100755
new mode 100644
diff --git a/icon-themes/hicontrast/sw/res/image-example.png 
b/icon-themes/hicontrast/sw/res/image-example.png
old mode 100755
new mode 100644
diff --git a/icon-themes/sifr/chart2/res/areas_52x60.png 
b/icon-themes/sifr/chart2/res/areas_52x60.png
old mode 100755
new mode 

[Libreoffice-bugs] [Bug 82690] New: VIEWING: Non-printing characters invisible if a font doesn't contain the necessary characters

2014-08-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82690

  Priority: medium
Bug ID: 82690
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: VIEWING: Non-printing characters invisible if a font
doesn't contain the necessary characters
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: fdb...@neosheffield.co.uk
  Hardware: Other
Status: UNCONFIRMED
   Version: 4.3.0.4 release
 Component: Writer
   Product: LibreOffice

When View - Non-printing Characters is enabled in Writer, the non-printing
characters in question are rendered in the font of the text to which they
belong.

However, if the font in question doesn't contain the necessary characters, the
non-printing characters are invisible whether or not View - Non-printing
Characters is enabled.

For instance, on OSX, the font Baoli SC does not contain a paragraph mark
symbol (U+00B6 PILCROW SIGN).


To reproduce:
1. Open the attached document
2. Ensure View - Non-printing Characters is enabled

Notice that the first paragraph (font: Baoli SC) has no paragraph mark, while
the second paragraph (font: Hiragino Sans GB) does.

-- 
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 82690] VIEWING: Non-printing characters invisible if a font doesn't contain the necessary characters

2014-08-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82690

--- Comment #1 from Matthew Francis fdb...@neosheffield.co.uk ---
Created attachment 104703
  -- https://bugs.freedesktop.org/attachment.cgi?id=104703action=edit
Document which demonstrates the issue

-- 
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 82690] VIEWING: Non-printing characters invisible if a font doesn't contain the necessary characters

2014-08-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82690

--- Comment #2 from Matthew Francis fdb...@neosheffield.co.uk ---
Created attachment 104704
  -- https://bugs.freedesktop.org/attachment.cgi?id=104704action=edit
Image showing the missing paragraph mark

-- 
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 82580] get rid of prewin.h / postwin.h wrapper headers

2014-08-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82580

--- Comment #1 from Tor Lillqvist t...@iki.fi ---
One note, that I sadly think needs to be spelled out: Please don't attempt to
do this unless you actually have Windows, Visual Studio, etc and are able to
build LibreOffice on Windows. Don't submit changes without verifying yourself
that they don't break the compilation.

-- 
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 82692] New: U+2027 HYPHENATION POINT sometimes mis-rendered on 4.4 master

2014-08-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82692

  Priority: medium
Bug ID: 82692
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: U+2027 HYPHENATION POINT sometimes mis-rendered on 4.4
master
  Severity: normal
Classification: Unclassified
OS: Mac OS X (All)
  Reporter: fdb...@neosheffield.co.uk
  Hardware: Other
Status: UNCONFIRMED
   Version: 4.4.0.0.alpha0+ Master
 Component: Writer
   Product: LibreOffice

Observed on OSX 10.9.4 / LO 4.4 master:


See attached files with sample text in various fonts (note that these are MS
Word fonts, so font substitution is in effect). The rendering of some of these
is a bit off in 4.3.0.4, but much worse in a build from 4.4 master.

The sample text is the same in each case, but notice the incorrect spacing at
the end of some of the lines.


Could possibly be related to the following commit?

authorNorbert Thiebaud nthieb...@gmail.com2014-07-19 14:22:54 (GMT)
committerNorbert Thiebaud nthieb...@gmail.com2014-07-20 20:11:00
(GMT)
commitd9d16df299607d0fdbb7067ad1a8f7bccc85abf7 (patch)
tree25acc532088a7beef70b3f245de7c858f756a114
parent6ca2d0d6645a697d323593a401ea8b1da02445bf (diff)
vcl quartz: draw 'bullet' manually for better control
Change-Id: If0f6bd93adc5d39fd421bb482833619f85f7a461

-- 
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 82692] U+2027 HYPHENATION POINT sometimes mis-rendered on 4.4 master

2014-08-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82692

--- Comment #1 from Matthew Francis fdb...@neosheffield.co.uk ---
Created attachment 104706
  -- https://bugs.freedesktop.org/attachment.cgi?id=104706action=edit
Sample word doc showing the issue

-- 
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 82692] U+2027 HYPHENATION POINT sometimes mis-rendered on 4.4 master

2014-08-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82692

--- Comment #2 from Matthew Francis fdb...@neosheffield.co.uk ---
Created attachment 104707
  -- https://bugs.freedesktop.org/attachment.cgi?id=104707action=edit
ODT exhibiting a slighly different mis-formatting

-- 
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 82692] U+2027 HYPHENATION POINT sometimes mis-rendered on 4.4 master

2014-08-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82692

--- Comment #3 from Matthew Francis fdb...@neosheffield.co.uk ---
Created attachment 104708
  -- https://bugs.freedesktop.org/attachment.cgi?id=104708action=edit
Image showing the issue as rendered (4.4 master)

-- 
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 82692] U+2027 HYPHENATION POINT sometimes mis-rendered on 4.4 master

2014-08-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82692

--- Comment #4 from Matthew Francis fdb...@neosheffield.co.uk ---
Created attachment 104709
  -- https://bugs.freedesktop.org/attachment.cgi?id=104709action=edit
Image showing the same text in 4.3.0.4

In this case, the spacing looks wrong at the start and end of the lines which
have become long, but the middle is at least evenly spaced

-- 
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 82692] U+2027 HYPHENATION POINT sometimes mis-rendered on 4.4 master

2014-08-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82692

--- Comment #5 from Matthew Francis fdb...@neosheffield.co.uk ---
Created attachment 104710
  -- https://bugs.freedesktop.org/attachment.cgi?id=104710action=edit
Image showing same text rendered in Word for Mac 2011

-- 
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 82658] FILEOPEN: A parallelogram in DOCX canvas become a triangle

2014-08-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82658

--- Comment #5 from Alexandr alexpik...@gmail.com ---
I reproduce the problem with  
 4.4.0.0.alpha0+
Build ID: 24931841534d232b5ebf6af5bee1e54b7cfae738
TinderBox: Win-x86@39, Branch:master, Time: 2014-08-12_02:01:00

 4.4.0.0.alpha0+
Build ID: d5642fe00cfd23d1470fa2062a93b30a612bbadd
TinderBox: Win-x86@42, Branch:master, Time: 2014-08-13_23:06:06

 4.4.0.0.alpha0+
Build ID: 0771823d80abadf8e7f2ccc078f3f9e2c277f8a5
TinderBox: Win-x86@42, Branch:master, Time: 2014-08-15_23:19:56

on Windows 7 x86_64.

Deleting user profile does not help.

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


[Libreoffice-bugs] [Bug 82223] GL3D Chart shown on all sheets of Spreadsheet

2014-08-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82223

Bugcruncher libobugcrunc...@gmail.com changed:

   What|Removed |Added

 CC||libobugcrunc...@gmail.com
Summary|chart can not be hided  |GL3D Chart shown on all
   |after swith spreadsheet |sheets of Spreadsheet

--- Comment #9 from Bugcruncher libobugcrunc...@gmail.com ---
Reproducible with Version: 4.4.0.0.alpha0+ Build ID:
0771823d80abadf8e7f2ccc078f3f9e2c277f8a5 TinderBox: Win-x86@42, Branch:master,
Time: 2014-08-15_23:19:56
It does not matter in what sheet the chart has been created and in what order
sheets have been created, at least a gray (background?) area will be shown on
all sheets.

-- 
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 82684] TABLE: Table shows fake border lines on page breaks

2014-08-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82684

Urmas davian...@gmail.com changed:

   What|Removed |Added

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

--- Comment #1 from Urmas davian...@gmail.com ---
Corresponds to MSO behavior, not a bug.

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


[Libreoffice-bugs] [Bug 82681] EDITING: Draw crashes when copying table row

2014-08-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82681

--- Comment #1 from Julien Nabet serval2...@yahoo.fr ---
Created attachment 104711
  -- https://bugs.freedesktop.org/attachment.cgi?id=104711action=edit
bt with master sources

On pc Debian x86-64 with master sources updated yesterday, I could reproduce
the problem.
I attached bt.

-- 
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 82681] EDITING: Draw crashes when copying table row

2014-08-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82681

Julien Nabet serval2...@yahoo.fr changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
   Severity|normal  |major
   Priority|medium  |high
 CC||serval2...@yahoo.fr
   Keywords||have-backtrace, regression
 Ever confirmed|0   |1

--- Comment #2 from Julien Nabet serval2...@yahoo.fr ---
LO Debian package 4.2.6 is ok=regression.
= increase importance.

-- 
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 82693] New: EDITING: CRASH when switch type to GL3D

2014-08-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82693

  Priority: medium
Bug ID: 82693
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: EDITING: CRASH when switch type to GL3D
  Severity: normal
Classification: Unclassified
OS: Windows (All)
  Reporter: libobugcrunc...@gmail.com
  Hardware: Other
Whiteboard: BSA
Status: UNCONFIRMED
   Version: 4.4.0.0.alpha0+ Master
 Component: Chart
   Product: LibreOffice

Created attachment 104712
  -- https://bugs.freedesktop.org/attachment.cgi?id=104712action=edit
Sample Document

Steps to reproduce:
1. Open attachment sample30
2. Double click Chart
3. RightClick Chart  ► Chart Type = GL3D 
   » LibreOffice becomes unresponding, if you click around
 on cells and chart after few clicks you will get 
 crash message Runtime Error!  R6025 - 
 Pure virtual function call

Generally working with GL3D Charts causes significant processor load on
changing Processor Cores for me, but LibreOffice keeps working and responding 

Operating System: Windows 7
Version: 4.4.0.0.alpha0+ Master

-- 
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 82694] New: libreoffice can be built only with internal coinmp

2014-08-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82694

  Priority: medium
Bug ID: 82694
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: libreoffice can be built only with internal coinmp
  Severity: major
Classification: Unclassified
OS: All
  Reporter: tomas.chva...@gmail.com
  Hardware: Other
Status: UNCONFIRMED
   Version: 4.3.0.4 release
 Component: Libreoffice
   Product: LibreOffice

There is no possibility to switch over to use system version of coinmp.

We should allow distro packagers to use system version of it.

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


[Libreoffice-bugs] [Bug 82695] New: Libreoffice use only bundled components when building ftgl

2014-08-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82695

  Priority: medium
Bug ID: 82695
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Libreoffice use only bundled components when building
ftgl
  Severity: major
Classification: Unclassified
OS: All
  Reporter: tomas.chva...@gmail.com
  Hardware: Other
Status: UNCONFIRMED
   Version: 4.3.0.4 release
 Component: Libreoffice
   Product: LibreOffice

Usage of ftgl requires several bundled tarballs:

ADDONS_SRC+=
${ADDONS_URI}/4b87018f7fff1d054939d19920b751a0-collada2gltf-master-cb1d97788a.tar.bz2
ADDONS_SRC+= ${ADDONS_URI}/OpenCOLLADA-master-6509aa13af.tar.bz2
ADDONS_SRC+=
${ADDONS_URI}/libgltf/3d9ea1f2828c46f8ba94b88a87b3326d-libgltf-0.0.0.tar.bz2

These should be possible to be build separately and libreoffice should allow
its usage. Otherwise no linux distros will provide this.

-- 
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 82696] Wrong 3d colors for widgets

2014-08-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82696

Urmas davian...@gmail.com changed:

   What|Removed |Added

 Attachment #104713|text/plain  |image/png
  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 82696] New: Wrong 3d colors for widgets

2014-08-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82696

  Priority: medium
Bug ID: 82696
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Wrong 3d colors for widgets
  Severity: trivial
Classification: Unclassified
OS: Windows (All)
  Reporter: davian...@gmail.com
  Hardware: Other
Status: UNCONFIRMED
   Version: 4.3.0.4 release
 Component: UI
   Product: LibreOffice

Created attachment 104713
  -- https://bugs.freedesktop.org/attachment.cgi?id=104713action=edit
Screenshot

LO control above, native one below.

-- 
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 52082] German character style on Hungarian User Interface: Absatz-Standardscriftart

2014-08-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=52082

--- Comment #6 from Urmas davian...@gmail.com ---
We need the original DOC file to diagnose this.

-- 
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 82623] Images disappear after saving presentation

2014-08-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82623

horia hor...@yahoo.fr changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |FIXED

--- Comment #10 from horia hor...@yahoo.fr ---
Hello Robinson Tryon and Ign Christian,

Sorry for not having answered properly.

I had not seen Ign Christian's answer and tried to read his first link when I
saw it.
Thank you very much, because it worked.

 I have done the presentation all over again from the second picture to the
27th and saved manually after each image.

Apparenntly, the images disappear when several image are saved at a time.
That explains why it worked with a single image (which was helpless for me).

I did half the work yesterday, closed the computer several times and each time
(including this morning) the images were still there.

This morning, I inserted the rest of the images, shut the computer, re-opened,
and everything is still there.

https://www.dropbox.com/s/1srap4y1ay1ef7r/Reiser%20Linda%20Mopp.odp

I just have to add my questions and suggestions of anwsers now.

Thank you very much.

Horia

-- 
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 82400] FILEOPEN: PPTX files open with multiple undos already added

2014-08-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82400

Robinson Tryon (qubit) qu...@runcibility.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||qu...@runcibility.com
 Ever confirmed|0   |1

--- Comment #2 from Robinson Tryon (qubit) qu...@runcibility.com ---
(In reply to comment #0)
 I was going through the pptx files found at 
 http://cgit.freedesktop.org/libreoffice/core/tree/chart2/qa/extras/data/ 
 and noticed that when i open them that they have multiple undos already
 listed which results in libreoffice asking me to save changes to the
 document when i havent made any.

CONFIRMED on LO 4.3.1.1 + Ubuntu 12.04

Repro steps:

1) Download and open file:
http://cgit.freedesktop.org/libreoffice/core/plain/chart2/qa/extras/data/pptx/chart.pptx
2) Immediately try to close document

RESULT: Prompted to save document

EXPECTED: Would not be prompted to save document, as I'd made no changes

-- 
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 82623] Images disappear after saving presentation

2014-08-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82623

horia hor...@yahoo.fr changed:

   What|Removed |Added

 Status|RESOLVED|UNCONFIRMED
 Resolution|FIXED   |---

--- Comment #11 from horia hor...@yahoo.fr ---
N !!!

They have all disappeared 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 82400] FILEOPEN: PPTX files open with multiple undos already added

2014-08-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82400

--- Comment #3 from Robinson Tryon (qubit) qu...@runcibility.com ---
(Possibly) related problem:

1) Create new ODP document and set the title of the first slide to Hello,
world
2) File - Save foobar.odp
3) File - Save as foobar.pptx
3b) Click OK to prompt to save in OOXML file format
4) Attempt to close the document

RESULT: Prompted to save document

EXPECTED: No prompt to save document


Now here's where it gets interesting: Try the same repro steps, but after
saving foobar.odp, close and reopen the document *first* before using Save
As - foobar.pptx.

RESULT: No prompt to save document

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


[Libreoffice-bugs] [Bug 82623] Images disappear after saving presentation

2014-08-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82623

--- Comment #12 from horia hor...@yahoo.fr ---
Here is what I have now...

https://www.dropbox.com/s/1srap4y1ay1ef7r/Reiser%20Linda%20Mopp.odp

-- 
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 82623] Images disappear after saving presentation

2014-08-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82623

--- Comment #13 from horia hor...@yahoo.fr ---

Horia - Please try opening this presentation on your computer, making a minor
modification, then saving and re-opening. Let us know whether the images remain
or disappear.


I have tried this several times... it doesn't work...

-- 
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 82623] Images disappear after saving presentation

2014-08-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82623

--- Comment #14 from Robinson Tryon (qubit) qu...@runcibility.com ---
(In reply to comment #11)
 N !!!
 
 They have all disappeared again !!

Hi Horia,
I've been seeing the file size of Reiser%20Linda%20Mopp.odp fluctuate on
Dropbox...

The file I originally downloaded was 8.2MB, and was missing pictures
Later in the night that file zoomed up to about 12MB (and looked much better)
Now the file is down to 8.2MB, and is once again missing pictures

I believe the url has been the same the whole time:
https://www.dropbox.com/s/1srap4y1ay1ef7r/Reiser%20Linda%20Mopp.odp

Are you auto-syncing this file to Dropbox? I wonder if there's an issue with
the file system or sync..

-- 
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 82623] Images disappear after saving presentation

2014-08-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82623

Robinson Tryon (qubit) qu...@runcibility.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #15 from Robinson Tryon (qubit) qu...@runcibility.com ---
(In reply to comment #13)
 Horia - Please try opening this presentation on your computer, making a
 minor modification, then saving and re-opening. Let us know whether the
 images remain or disappear.
 
 I have tried this several times... it doesn't work...

What do you mean 'doesn't work'? Do you mean that the images disappear?

-- 
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 82364] create test files for regression testing of libetonyek

2014-08-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82364

Robinson Tryon (qubit) qu...@runcibility.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||qu...@runcibility.com
 Ever confirmed|0   |1

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


[Libreoffice-bugs] [Bug 82365] create test files for regression testing of libabw

2014-08-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82365

Robinson Tryon (qubit) qu...@runcibility.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||qu...@runcibility.com
 Ever confirmed|0   |1

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


[Libreoffice-bugs] [Bug 82363] create test files for regression testing of libvisio

2014-08-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82363

Robinson Tryon (qubit) qu...@runcibility.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||qu...@runcibility.com
 Ever confirmed|0   |1

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


[Libreoffice-bugs] [Bug 82362] create test files for regression testing of libmspub

2014-08-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82362

Robinson Tryon (qubit) qu...@runcibility.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||qu...@runcibility.com
 Ever confirmed|0   |1

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


[Libreoffice-bugs] [Bug 82361] create test files for regression testing of libcdr

2014-08-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82361

Robinson Tryon (qubit) qu...@runcibility.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||qu...@runcibility.com
 Ever confirmed|0   |1

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


[Libreoffice-bugs] [Bug 82623] Images disappear after saving presentation

2014-08-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82623

--- Comment #16 from horia hor...@yahoo.fr ---
Yes, the pictures still disappear.

-- 
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 82623] Images disappear after saving presentation

2014-08-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82623

--- Comment #17 from horia hor...@yahoo.fr ---
Sorry, I know this is not going to help...

But I don't understand a word of this :

Are you auto-syncing this file to Dropbox? I wonder if there's an issue with
the file system or sync..

-- 
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 82623] Images disappear after saving presentation

2014-08-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82623

--- Comment #18 from horia hor...@yahoo.fr ---
PS / the problem started before I even knew dropbox existed...

I don't know if there is a link, but I tried to have the software in French and
downloaded LibreOffice Language pack.

I couldn't have it in French and didn't really mind, so left it in English.

Yesderday, it suddenly was in French.

This morning, it is in English again...

Anyway, thank you very much for trying to help.

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


[Libreoffice-bugs] [Bug 72157] LibreOffice does not release WebDAV file lock on document close

2014-08-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=72157

--- Comment #32 from Samuel Mehrbrodt s.mehrbr...@gmail.com ---
Please create a new bug and add me and Matus in CC.

-- 
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 81234] [META] RTF filter issues

2014-08-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=81234

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

   What|Removed |Added

 Depends on||82697

-- 
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 82697] New: FILESAVE: RTF - Table of Contents [TOC] not outputted correctly

2014-08-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82697

  Priority: medium
Bug ID: 82697
  Assignee: libreoffice-bugs@lists.freedesktop.org
Blocks: 81234
   Summary: FILESAVE: RTF - Table of Contents [TOC] not outputted
correctly
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: philip...@hotmail.com
  Hardware: Other
Status: UNCONFIRMED
   Version: 4.4.0.0.alpha0+ Master
 Component: Writer
   Product: LibreOffice

Created attachment 104714
  -- https://bugs.freedesktop.org/attachment.cgi?id=104714action=edit
RTF (left) VS DOCX (right)

Steps:
1) open attachment 104685
2) look at the TOC on page 3 and how all entries have a grey background color
(i'm assuming this grey background has to do with some feature of TOC)
3) save it as an RTF, close it, reopen the RTF, and return to TOC

Problem: Only the first entry has the grey background color, as seen in the
attached screenshot. The text being blue and having an underline is a fileopen
issue and has already been reported in bug 82071.

4) open RTF in MS Word 2007, 2010, or 2013
5) goto page 3 to compare the TOC

Problems in MS Word:
1) When opening the RTF, you get a notice on how to add/remove entries from the
TOC (Word is thinking there arent any entries in the TOC).
2) 'No table of contents entries found.' is written before the first entry in
the TOC.
3) The grey background color doesnt appears behind TOC entries
4) Page numbers arent aligned on the right

Tested in 4.4 (2014-08-12) on Windows and 4.3.2 (2014-08-09) on Linux.

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


[Libreoffice-bugs] [Bug 82697] FILESAVE: RTF - Table of Contents [TOC] not outputted correctly

2014-08-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82697

--- Comment #1 from Jay Philips philip...@hotmail.com ---
Created attachment 104715
  -- https://bugs.freedesktop.org/attachment.cgi?id=104715action=edit
DOCX in LibO (left) VS LibO RTF in Word 2013 (right)

-- 
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 82697] FILESAVE: RTF - Table of Contents [TOC] not outputted correctly

2014-08-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82697

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

   What|Removed |Added

 Whiteboard||filter:rtf rtf_filter

-- 
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 82254] FILESAVE: UTF-8 BOM removed from CSV when saving file

2014-08-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82254

Robinson Tryon (qubit) qu...@runcibility.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
   Severity|normal  |enhancement
 CC||qu...@runcibility.com
 Ever confirmed|0   |1

--- Comment #1 from Robinson Tryon (qubit) qu...@runcibility.com ---
TESTING on LO 4.3.1.1 + Ubuntu 12.04

(In reply to comment #0)
 When a file is saved in Calc UTF-8 BOM is removed even when it exists on the
 source file.

Confirmed.

 Steps to reproduce:
 Open the BOM-test.csv (this one starts with UTF-8 BOM)
 Choose Save As
 Resulting file will be similar but without UTF-8 BOM
 
 If source file starts with BOM, exported one should also have BOM, or at
 least we should be able to choose on the export filter what we need.

+1

I can understand that in the import process, some aspects of a file (e.g. the
BOM) might be stripped away and not re-included in the export process, although
ideally there would be consistency, especially if someone wants to use
LibreOffice to edit shared CSV files.

Sounds like a reasonable enhancement request.

Status - NEW

-- 
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 82669] FILESAVE: RTF header and footer image position not retained

2014-08-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82669

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

   What|Removed |Added

 Whiteboard||filter:rtf rtf_filter

-- 
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 82223] GL3D Chart shown on all sheets of Spreadsheet

2014-08-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82223

Markus Mohrhard markus.mohrh...@googlemail.com changed:

   What|Removed |Added

 Blocks||81107

-- 
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 81107] GPU tracker bug

2014-08-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=81107

Markus Mohrhard markus.mohrh...@googlemail.com changed:

   What|Removed |Added

 Depends on||82223

-- 
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 57433] There is no border between the document and the toolbar area

2014-08-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=57433

--- Comment #41 from Adolfo Jayme f...@libreoffice.org ---
(In reply to comment #40)
 Foss - could you take a screenshot with the rulers off?

FWIW, rulers on or off won’t matter anymore — both rulers and document
background have the same color now (bug 51534).

-- 
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 82690] VIEWING: Non-printing characters invisible if a font doesn't contain the necessary characters

2014-08-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82690

Matthew Francis fdb...@neosheffield.co.uk changed:

   What|Removed |Added

 CC||fdb...@neosheffield.co.uk

--- Comment #3 from Matthew Francis fdb...@neosheffield.co.uk ---
Another example: Hoefler Text has the Pilcrow sign character, but not the
bullet character used to denote whitespace

-- 
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 82686] Other: signal detected by ubuntu 4.14

2014-08-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82686

Foss f...@openmailbox.org changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #1 from Foss f...@openmailbox.org ---
Daniele, attach some screenshots. I'm sure you are talking about Ubuntu 14.04
and not 4.14?

Please provide all necessary info to reproduce this issue. After that, please
back to UNCONFIRMED.

-- 
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 81234] [META] RTF filter issues

2014-08-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=81234

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

   What|Removed |Added

 Depends on||82698

-- 
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 82698] New: FILESAVE: RTF - styles not preserved

2014-08-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82698

  Priority: medium
Bug ID: 82698
  Assignee: libreoffice-bugs@lists.freedesktop.org
Blocks: 81234
   Summary: FILESAVE: RTF - styles not preserved
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: philip...@hotmail.com
  Hardware: Other
Status: UNCONFIRMED
   Version: 4.4.0.0.alpha0+ Master
 Component: Writer
   Product: LibreOffice

Created attachment 104719
  -- https://bugs.freedesktop.org/attachment.cgi?id=104719action=edit
sample file

Steps:
1) Open attached file
2) Save it as an RTF, close it and reopen it
3) Compare the DOCX and RTF
4) On page 1, you'll notice that the bullet point indentation is wrong
5) On page 2, you'll notice that the number list numbers are the wrong size
6) On page 3, you'll notice that headings are in italics when they shouldnt be
and that the 'Legal' heading is not in bold

Tested in 4.4 (2014-08-12) on Windows and 4.3.2 (2014-08-09) on Linux.

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


[Libreoffice-bugs] [Bug 57433] There is no border between the document and the toolbar area

2014-08-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=57433

--- Comment #42 from Foss f...@openmailbox.org ---
Created attachment 104720
  -- https://bugs.freedesktop.org/attachment.cgi?id=104720action=edit
LO 4.3.1RC1 rulers off

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


[Libreoffice-bugs] [Bug 57433] There is no border between the document and the toolbar area

2014-08-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=57433

Foss f...@openmailbox.org changed:

   What|Removed |Added

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

--- Comment #43 from Foss f...@openmailbox.org ---
Screenshot attached. There are other remaining issues with the grey background
at the top, but those are here:
https://bugs.freedesktop.org/show_bug.cgi?id=80474

-- 
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 80474] Mac OS X toolbar background isn't drawn correctly

2014-08-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=80474

Foss f...@openmailbox.org changed:

   What|Removed |Added

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

-- 
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 82698] FILESAVE: RTF - styles not preserved

2014-08-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82698

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

   What|Removed |Added

 Whiteboard||filter:rtf rtf_filter

-- 
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 65675] LibreOffice 4.2 most annoying bugs

2014-08-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=65675

Bug 65675 depends on bug 57433, which changed state.

Bug 57433 Summary: There is no border between the document and the toolbar area
https://bugs.freedesktop.org/show_bug.cgi?id=57433

   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


  1   2   3   >