[Libreoffice-bugs] [Bug 94437] Editing: entries from a deleted alphabetic index reappear when a new index is inserted

2015-09-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94437

--- Comment #4 from Bernard Moreton  ---
Nothing to do with ToC, I'm afraid.

Sample ODT file for indexing has had an index created, then deleted, then Saved
- possibly more than once.

To reproduce:
Check the sample concordance file
Open the DT document,
check there is no existing visible alphabetic index in it,
go to EOF (not essential, but ...),
Insert/Index, select type=alphabetic index, opt to use Concordance file, 
and select the one submitted above, completely different from anything I used
in previous aborted attempts.

One new relevant entry should be creaated,  but lots of entries, mostly
duplicated, from the previous attempts.

At least, that what happens on my system - but that *might* be due to something
in my environment rather than in the submitted file - unlikely, because I've
checked by indexing fresh copies, and those attenpts have not triggered the
problem.

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


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

2015-09-22 Thread Noel Grandin
 sc/inc/navicfg.hxx  |   16 +-
 sc/source/core/tool/navicfg.cxx |5 
 sc/source/ui/inc/content.hxx|   62 -
 sc/source/ui/inc/navsett.hxx|   16 +-
 sc/source/ui/navipi/content.cxx |  265 +++-
 sc/source/ui/navipi/navipi.cxx  |   31 ++--
 sc/source/ui/unoobj/targuno.cxx |   12 -
 7 files changed, 201 insertions(+), 206 deletions(-)

New commits:
commit 2ea92be9973e6892727eae37ae958863702b3658
Author: Noel Grandin 
Date:   Tue Sep 22 09:15:50 2015 +0200

convert SC_CONVERT constants to scoped enum

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

diff --git a/sc/inc/navicfg.hxx b/sc/inc/navicfg.hxx
index 8d5b3d1..314bc10 100644
--- a/sc/inc/navicfg.hxx
+++ b/sc/inc/navicfg.hxx
@@ -22,24 +22,26 @@
 
 #include 
 
+enum class ScContentId;
+
 // CfgItem for navigator-state
 
 class ScNavipiCfg
 {
 private:
-sal_uInt16  nListMode;
-sal_uInt16  nDragMode;
-sal_uInt16  nRootType;
+sal_uInt16   nListMode;
+sal_uInt16   nDragMode;
+ScContentId  nRootType;
 
 public:
 ScNavipiCfg();
 
-voidSetListMode(sal_uInt16 nNew);
+voidSetListMode(sal_uInt16 nNew);
 sal_uInt16  GetListMode() const { return nListMode; }
-voidSetDragMode(sal_uInt16 nNew);
+voidSetDragMode(sal_uInt16 nNew);
 sal_uInt16  GetDragMode() const { return nDragMode; }
-voidSetRootType(sal_uInt16 nNew);
-sal_uInt16  GetRootType() const { return nRootType; }
+voidSetRootType(ScContentId nNew);
+ScContentId GetRootType() const { return nRootType; }
 };
 
 #endif
diff --git a/sc/source/core/tool/navicfg.cxx b/sc/source/core/tool/navicfg.cxx
index 7d70e5b..9fff302 100644
--- a/sc/source/core/tool/navicfg.cxx
+++ b/sc/source/core/tool/navicfg.cxx
@@ -18,6 +18,7 @@
  */
 
 #include "navicfg.hxx"
+#include "content.hxx"
 
 //TODO: #define CFGPATH_NAVIPI  "Office.Calc/Navigator"
 
@@ -25,7 +26,7 @@ ScNavipiCfg::ScNavipiCfg() :
 //TODO: ConfigItem( OUString( CFGPATH_NAVIPI ) ),
 nListMode(0),
 nDragMode(0),
-nRootType(0)
+nRootType(ScContentId::ROOT)
 {
 }
 
@@ -47,7 +48,7 @@ void ScNavipiCfg::SetDragMode(sal_uInt16 nNew)
 }
 }
 
-void ScNavipiCfg::SetRootType(sal_uInt16 nNew)
+void ScNavipiCfg::SetRootType(ScContentId nNew)
 {
 if ( nRootType != nNew )
 {
diff --git a/sc/source/ui/inc/content.hxx b/sc/source/ui/inc/content.hxx
index 9a01602..8da6b70 100644
--- a/sc/source/ui/inc/content.hxx
+++ b/sc/source/ui/inc/content.hxx
@@ -24,6 +24,7 @@
 #include "global.hxx"
 #include "address.hxx"
 #include 
+#include 
 
 class ScNavigatorDlg;
 class ScDocument;
@@ -31,44 +32,39 @@ class ScDocShell;
 class ScAreaLink;
 class SdrPage;
 
-#define SC_CONTENT_ROOT 0
-#define SC_CONTENT_TABLE1
-#define SC_CONTENT_RANGENAME2
-#define SC_CONTENT_DBAREA   3
-#define SC_CONTENT_GRAPHIC  4
-#define SC_CONTENT_OLEOBJECT5
-#define SC_CONTENT_NOTE 6
-#define SC_CONTENT_AREALINK 7
-#define SC_CONTENT_DRAWING  8
-#define SC_CONTENT_COUNT9
+enum class ScContentId {
+ROOT, TABLE, RANGENAME, DBAREA,
+GRAPHIC, OLEOBJECT, NOTE, AREALINK,
+DRAWING, LAST = DRAWING
+};
 
 const sal_uLong SC_CONTENT_NOCHILD  = ~0UL;
 
 class ScContentTree : public SvTreeListBox
 {
 VclPtr  pParentWindow;
-ImageList   aEntryImages;
-SvTreeListEntry*pRootNodes[SC_CONTENT_COUNT];
-sal_uInt16  nRootType;  // set as Root
-OUStringaManualDoc; // Switched in Navigator (Title)
-boolbHiddenDoc; // Hidden active?
-OUStringaHiddenName;// URL to load
-OUStringaHiddenTitle;   // for display
-ScDocument* pHiddenDocument;// temporary
-boolbisInNavigatoeDlg;
-OUStringsKeyString;
-
-sal_uInt16  pPosList[SC_CONTENT_COUNT]; // for the sequence
+ImageList   aEntryImages;
+o3tl::enumarray pRootNodes;
+ScContentId nRootType;  // set as Root
+OUStringaManualDoc; // Switched in Navigator 
(Title)
+boolbHiddenDoc; // Hidden active?
+OUStringaHiddenName;// URL to load
+OUStringaHiddenTitle;   // for display
+ScDocument* pHiddenDocument;// temporary
+boolbisInNavigatoeDlg;
+OUStringsKeyString;
+
+o3tl::enumarray pPosList; // for the sequence
 
 static bool bIsInDrag;  // static, if the Navigator is deleted in 
ExecuteDrag
 
 

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

2015-09-22 Thread Noel Grandin
 editeng/source/editeng/editeng.cxx  |5 -
 editeng/source/editeng/impedit.hxx  |6 --
 editeng/source/editeng/impedit3.cxx |   11 ---
 editeng/source/outliner/outlin2.cxx |5 -
 include/editeng/editeng.hxx |1 -
 include/editeng/outliner.hxx|3 ---
 sd/source/ui/view/outlview.cxx  |1 -
 svx/source/svdraw/svdedxv.cxx   |2 --
 8 files changed, 34 deletions(-)

New commits:
commit c439d55042c5815b57987238b0e074869004196d
Author: Noel Grandin 
Date:   Tue Sep 22 11:16:30 2015 +0200

remove unused Link<> field

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

diff --git a/editeng/source/editeng/editeng.cxx 
b/editeng/source/editeng/editeng.cxx
index 39bf7c6..64c5738 100644
--- a/editeng/source/editeng/editeng.cxx
+++ b/editeng/source/editeng/editeng.cxx
@@ -1529,11 +1529,6 @@ void EditEngine::SetImportHdl( const 
Link& rLink )
 pImpEditEngine->aImportHdl = rLink;
 }
 
-void EditEngine::SetChainingEventHdl( const Link<>& rLink )
-{
-pImpEditEngine->SetChainingEventHdl( rLink );
-}
-
 Link EditEngine::GetImportHdl() const
 {
 return pImpEditEngine->aImportHdl;
diff --git a/editeng/source/editeng/impedit.hxx 
b/editeng/source/editeng/impedit.hxx
index 3931f61..4e6d038 100644
--- a/editeng/source/editeng/impedit.hxx
+++ b/editeng/source/editeng/impedit.hxx
@@ -495,8 +495,6 @@ private:
 Link   maBeginDropHdl;
 Link   maEndDropHdl;
 
-Link<>  aChainingHdlLink;
-
 rtl::Reference xForbiddenCharsTable;
 
 boolbKernAsianPunctuation:1;
@@ -837,8 +835,6 @@ public:
 voidSetModifyHdl( const Link& rLink ) { 
aModifyHdl = rLink; }
 Link GetModifyHdl() const { return aModifyHdl; }
 
-voidSetChainingEventHdl( const Link<>& rLink )  { 
aChainingHdlLink = rLink; }
-
 boolIsInSelectionMode() { return bInSelection; }
 
 voidIndentBlock( EditView* pView, bool bRight );
@@ -871,8 +867,6 @@ public:
 inline ESelection CreateESel( const EditSelection& rSel );
 inline EditSelection  CreateSel( const ESelection& rSel );
 
-voidCallChainingEventHdl();
-
 voidSetStyleSheetPool( SfxStyleSheetPool* pSPool );
 SfxStyleSheetPool*  GetStyleSheetPool() const { return pStylePool; }
 
diff --git a/editeng/source/editeng/impedit3.cxx 
b/editeng/source/editeng/impedit3.cxx
index 0427a23..540b8e7 100644
--- a/editeng/source/editeng/impedit3.cxx
+++ b/editeng/source/editeng/impedit3.cxx
@@ -4066,17 +4066,6 @@ void ImpEditEngine::CallStatusHdl()
 }
 }
 
-void ImpEditEngine::CallChainingEventHdl()
-{
-// XXX: We don't use this method any more at the moment.
-// only if it's the right ImpEditEngine (with right info on changes in 
text)
-if ( aChainingHdlLink.IsSet() /* && aStatus.GetStatusWord() */)
-{
-aChainingHdlLink.Call(  );
-
-}
-}
-
 ContentNode* ImpEditEngine::GetPrevVisNode( ContentNode* pCurNode )
 {
 const ParaPortion* pPortion = FindParaPortion( pCurNode );
diff --git a/editeng/source/outliner/outlin2.cxx 
b/editeng/source/outliner/outlin2.cxx
index 087c0c3..2d16ba5 100644
--- a/editeng/source/outliner/outlin2.cxx
+++ b/editeng/source/outliner/outlin2.cxx
@@ -128,11 +128,6 @@ void Outliner::SetNotifyHdl( const Link& 
rLink )
 pEditEngine->SetNotifyHdl( Link() );
 }
 
-void Outliner::SetChainingEventHdl( const Link<>& rLink )
-{
-pEditEngine->SetChainingEventHdl( rLink );
-}
-
 void Outliner::SetStatusEventHdl( const Link& rLink )
 {
 pEditEngine->SetStatusEventHdl( rLink );
diff --git a/include/editeng/editeng.hxx b/include/editeng/editeng.hxx
index eadf0f5..d9aee4b 100644
--- a/include/editeng/editeng.hxx
+++ b/include/editeng/editeng.hxx
@@ -372,7 +372,6 @@ public:
 voidSetStatusEventHdl( const Link& rLink );
 Link GetStatusEventHdl() const;
 
-voidSetChainingEventHdl( const Link<>& rLink );
 voidSetNotifyHdl( const Link& rLink );
 Link  GetNotifyHdl() const;
 
diff --git a/include/editeng/outliner.hxx b/include/editeng/outliner.hxx
index d273020..16ab77c 100644
--- a/include/editeng/outliner.hxx
+++ b/include/editeng/outliner.hxx
@@ -802,9 +802,6 @@ public:
 voidSetStatusEventHdl( const Link& rLink );
 Link GetStatusEventHdl() const;
 
-voidSetChainingEventHdl( const Link<>& rLink );
-
-
 voidDraw( OutputDevice* pOutDev, const Rectangle& rOutRect );
 void 

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

2015-09-22 Thread Noel Grandin
 include/svtools/svparser.hxx  |4 ++--
 svtools/source/svrtf/svparser.cxx |4 +---
 2 files changed, 3 insertions(+), 5 deletions(-)

New commits:
commit f378e1748f0645481a8b2deebd7bb2b34797aff7
Author: Noel Grandin 
Date:   Tue Sep 22 15:27:33 2015 +0200

convert Link<> to typed

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

diff --git a/include/svtools/svparser.hxx b/include/svtools/svparser.hxx
index f4c04f5..7c595fb 100644
--- a/include/svtools/svparser.hxx
+++ b/include/svtools/svparser.hxx
@@ -44,7 +44,7 @@ enum SvParserState
 
 class SVT_DLLPUBLIC SvParser : public SvRefBase
 {
-DECL_LINK( NewDataRead, void* );
+DECL_LINK_TYPED( NewDataRead, LinkParamNone*, void );
 
 protected:
 SvStream&   rInput;
@@ -134,7 +134,7 @@ public:
 
 inline bool IsParserWorking() const { return SVPAR_WORKING == eState; }
 
-Link<> GetAsynchCallLink() const
+Link GetAsynchCallLink() const
 { return LINK( const_cast(this), SvParser, NewDataRead ); }
 
 // for asynchronous reading from the SvStream
diff --git a/svtools/source/svrtf/svparser.cxx 
b/svtools/source/svrtf/svparser.cxx
index 2a76863..241688d 100644
--- a/svtools/source/svrtf/svparser.cxx
+++ b/svtools/source/svrtf/svparser.cxx
@@ -606,7 +606,7 @@ void SvParser::BuildWhichTable( std::vector 
,
 }
 
 
-IMPL_LINK_NOARG( SvParser, NewDataRead )
+IMPL_LINK_NOARG_TYPED( SvParser, NewDataRead, LinkParamNone*, void )
 {
 switch( eState )
 {
@@ -640,8 +640,6 @@ IMPL_LINK_NOARG( SvParser, NewDataRead )
 ReleaseRef();// ready otherwise!
 break;
 }
-
-return 0;
 }
 
 /*
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2015-09-22 Thread Noel Grandin
 sc/inc/document.hxx |7 ++--
 sc/inc/sheetevents.hxx  |   22 ++-
 sc/source/core/data/documen3.cxx|4 +-
 sc/source/core/data/documen7.cxx|2 -
 sc/source/core/data/sheetevents.cxx |   52 +++-
 sc/source/ui/docshell/docsh4.cxx|2 -
 sc/source/ui/unoobj/docuno.cxx  |   12 
 sc/source/ui/unoobj/eventuno.cxx|   28 +--
 sc/source/ui/unoobj/viewuno.cxx |   20 ++---
 9 files changed, 63 insertions(+), 86 deletions(-)

New commits:
commit 015eb39d963acf534bd5beaf9331a6d37af2acd6
Author: Noel Grandin 
Date:   Mon Sep 21 16:57:00 2015 +0200

convert SC_SHEETEVENT to scoped enum

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

diff --git a/sc/inc/document.hxx b/sc/inc/document.hxx
index 92fbdfc..97384ae 100644
--- a/sc/inc/document.hxx
+++ b/sc/inc/document.hxx
@@ -188,6 +188,7 @@ struct ScQueryParam;
 class ScHint;
 class SvtBroadcaster;
 enum class ScDBDataPortion;
+enum class ScSheetEventId;
 
 namespace com { namespace sun { namespace star {
 namespace lang {
@@ -815,8 +816,8 @@ public:
 
 const ScSheetEvents* GetSheetEvents( SCTAB nTab ) const;
 voidSetSheetEvents( SCTAB nTab, const ScSheetEvents* pNew );
-boolHasSheetEventScript( SCTAB nTab, sal_Int32 nEvent, bool 
bWithVbaEvents = false ) const;
-boolHasAnySheetEventScript( sal_Int32 nEvent, bool 
bWithVbaEvents = false ) const;  // on any sheet
+boolHasSheetEventScript( SCTAB nTab, ScSheetEventId nEvent, 
bool bWithVbaEvents = false ) const;
+boolHasAnySheetEventScript( ScSheetEventId nEvent, bool 
bWithVbaEvents = false ) const;  // on any sheet
 
 boolHasAnyCalcNotification() const;
 boolHasCalcNotification( SCTAB nTab ) const;
@@ -837,7 +838,7 @@ public:
 SC_DLLPUBLIC void EnsureTable( SCTAB nTab );
 
 //  return TRUE = number format is set
-SC_DLLPUBLIC bool   SetString(
+SC_DLLPUBLIC bool SetString(
 SCCOL nCol, SCROW nRow, SCTAB nTab, const OUString& rString,
 ScSetStringParam* pParam = NULL );
 SC_DLLPUBLIC bool SetString( const ScAddress& rPos, const OUString& 
rString, ScSetStringParam* pParam = NULL );
diff --git a/sc/inc/sheetevents.hxx b/sc/inc/sheetevents.hxx
index 46549b8..c943360 100644
--- a/sc/inc/sheetevents.hxx
+++ b/sc/inc/sheetevents.hxx
@@ -22,14 +22,10 @@
 
 #include 
 
-#define SC_SHEETEVENT_FOCUS 0
-#define SC_SHEETEVENT_UNFOCUS   1
-#define SC_SHEETEVENT_SELECT2
-#define SC_SHEETEVENT_DOUBLECLICK   3
-#define SC_SHEETEVENT_RIGHTCLICK4
-#define SC_SHEETEVENT_CHANGE5
-#define SC_SHEETEVENT_CALCULATE 6
-#define SC_SHEETEVENT_COUNT 7
+enum class ScSheetEventId {
+FOCUS, UNFOCUS, SELECT, DOUBLECLICK, RIGHTCLICK, CHANGE, CALCULATE, COUNT,
+NOTFOUND = -1 // used as a an error return value
+};
 
 class ScSheetEvents
 {
@@ -44,12 +40,12 @@ public:
 
 const ScSheetEvents&operator= (const ScSheetEvents& rOther);
 
-const OUString*GetScript(sal_Int32 nEvent) const;
-voidSetScript(sal_Int32 nEvent, const OUString* pNew);
+const OUString* GetScript(ScSheetEventId nEvent) const;
+voidSetScript(ScSheetEventId nEvent, const OUString* 
pNew);
 
-static OUStringGetEventName(sal_Int32 nEvent);
-static sal_Int32GetVbaSheetEventId(sal_Int32 nEvent);
-static sal_Int32GetVbaDocumentEventId(sal_Int32 nEvent);
+static OUString GetEventName(ScSheetEventId nEvent);
+static sal_Int32GetVbaSheetEventId(ScSheetEventId nEvent);
+static sal_Int32GetVbaDocumentEventId(ScSheetEventId nEvent);
 };
 
 #endif
diff --git a/sc/source/core/data/documen3.cxx b/sc/source/core/data/documen3.cxx
index df944a3..e9b2f55 100644
--- a/sc/source/core/data/documen3.cxx
+++ b/sc/source/core/data/documen3.cxx
@@ -630,7 +630,7 @@ void ScDocument::SetSheetEvents( SCTAB nTab, const 
ScSheetEvents* pNew )
 maTabs[nTab]->SetSheetEvents( pNew );
 }
 
-bool ScDocument::HasSheetEventScript( SCTAB nTab, sal_Int32 nEvent, bool 
bWithVbaEvents ) const
+bool ScDocument::HasSheetEventScript( SCTAB nTab, ScSheetEventId nEvent, bool 
bWithVbaEvents ) const
 {
 if (nTab < static_cast(maTabs.size()) && maTabs[nTab])
 {
@@ -654,7 +654,7 @@ bool ScDocument::HasSheetEventScript( SCTAB nTab, sal_Int32 
nEvent, bool bWithVb
 return false;
 }
 
-bool ScDocument::HasAnySheetEventScript( sal_Int32 nEvent, bool bWithVbaEvents 
) const
+bool ScDocument::HasAnySheetEventScript( ScSheetEventId nEvent, bool 
bWithVbaEvents ) const
 {
 SCTAB nSize = static_cast(maTabs.size());
 for 

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

2015-09-22 Thread Noel Grandin
 sc/inc/chgtrack.hxx|4 ++--
 sc/source/core/tool/chgtrack.cxx   |2 +-
 sc/source/ui/inc/acredlin.hxx  |2 +-
 sc/source/ui/miscdlgs/acredlin.cxx |   12 +---
 sc/source/ui/view/tabvwsh4.cxx |2 +-
 5 files changed, 10 insertions(+), 12 deletions(-)

New commits:
commit 3d9dd244ce272e2bedc751c5dd250d15b06459e7
Author: Noel Grandin 
Date:   Tue Sep 22 17:24:46 2015 +0200

convert Link<> to typed

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

diff --git a/sc/inc/chgtrack.hxx b/sc/inc/chgtrack.hxx
index 3f7bb8c..cda2d93 100644
--- a/sc/inc/chgtrack.hxx
+++ b/sc/inc/chgtrack.hxx
@@ -892,7 +892,7 @@ class ScChangeTrack : public utl::ConfigurationListener
 ScChangeTrackMsgStack   aMsgStackFinal;
 std::set maUserCollection;
 OUString maUser;
-Link<>  aModifiedLink;
+Link aModifiedLink;
 ScRange aInDeleteRange;
 DateTimeaFixDateTime;
 ScChangeAction* pFirst;
@@ -1178,7 +1178,7 @@ public:
 
 // If ModifiedLink is set, changes go to
 // ScChangeTrackMsgQueue
-voidSetModifiedLink( const Link<>& r )
+voidSetModifiedLink( const Link& r )
 { aModifiedLink = r; ClearMsgQueue(); }
 ScChangeTrackMsgQueue& GetMsgQueue();
 
diff --git a/sc/source/core/tool/chgtrack.cxx b/sc/source/core/tool/chgtrack.cxx
index c5a4b08..5a705cc 100644
--- a/sc/source/core/tool/chgtrack.cxx
+++ b/sc/source/core/tool/chgtrack.cxx
@@ -2328,7 +2328,7 @@ void ScChangeTrack::EndBlockModify( sal_uLong nEndAction )
 bNew = true;
 }
 if ( bNew )
-aModifiedLink.Call( this );
+aModifiedLink.Call( *this );
 }
 }
 }
diff --git a/sc/source/ui/inc/acredlin.hxx b/sc/source/ui/inc/acredlin.hxx
index 7397a20..9ee1f8c 100644
--- a/sc/source/ui/inc/acredlin.hxx
+++ b/sc/source/ui/inc/acredlin.hxx
@@ -108,7 +108,7 @@ private:
 DECL_LINK( RefInfoHandle, OUString*);
 
 DECL_LINK_TYPED( UpdateSelectionHdl, Idle*, void );
-DECL_LINK( ChgTrackModHdl, ScChangeTrack*);
+DECL_LINK_TYPED( ChgTrackModHdl, ScChangeTrack&, void);
 DECL_LINK_TYPED( CommandHdl, SvSimpleTable*, void);
 DECL_LINK_TYPED( ReOpenTimerHdl, Idle*, void );
 DECL_LINK_TYPED( ColCompareHdl, const SvSortData*, sal_Int32);
diff --git a/sc/source/ui/miscdlgs/acredlin.cxx 
b/sc/source/ui/miscdlgs/acredlin.cxx
index 42e636a..676bad7 100644
--- a/sc/source/ui/miscdlgs/acredlin.cxx
+++ b/sc/source/ui/miscdlgs/acredlin.cxx
@@ -163,7 +163,7 @@ void ScAcceptChgDlg::dispose()
 
 if(pChanges!=NULL)
 {
-Link<> aLink;
+Link aLink;
 pChanges->SetModifiedLink(aLink);
 }
 
@@ -1586,10 +1586,10 @@ void ScAcceptChgDlg::UpdateEntrys(ScChangeTrack* 
pChgTrack, sal_uLong nStartActi
 
 }
 
-IMPL_LINK( ScAcceptChgDlg, ChgTrackModHdl, ScChangeTrack*, pChgTrack)
+IMPL_LINK_TYPED( ScAcceptChgDlg, ChgTrackModHdl, ScChangeTrack&, rChgTrack, 
void)
 {
 ScChangeTrackMsgQueue::iterator iter;
-ScChangeTrackMsgQueue& aMsgQueue= pChgTrack->GetMsgQueue();
+ScChangeTrackMsgQueue& aMsgQueue= rChgTrack.GetMsgQueue();
 
 sal_uLong   nStartAction;
 sal_uLong   nEndAction;
@@ -1605,13 +1605,13 @@ IMPL_LINK( ScAcceptChgDlg, ChgTrackModHdl, 
ScChangeTrack*, pChgTrack)
 
 switch((*iter)->eMsgType)
 {
-case SC_CTM_APPEND: 
AppendChanges(pChgTrack,nStartAction,nEndAction);
+case SC_CTM_APPEND: 
AppendChanges(,nStartAction,nEndAction);
 break;
 case SC_CTM_REMOVE: RemoveEntrys(nStartAction,nEndAction);
 break;
 case SC_CTM_PARENT:
 case SC_CTM_CHANGE: //bNeedsUpdate=true;
-
UpdateEntrys(pChgTrack,nStartAction,nEndAction);
+
UpdateEntrys(,nStartAction,nEndAction);
 break;
 default:
 {
@@ -1623,8 +1623,6 @@ IMPL_LINK( ScAcceptChgDlg, ChgTrackModHdl, 
ScChangeTrack*, pChgTrack)
 }
 
 aMsgQueue.clear();
-
-return 0;
 }
 IMPL_LINK_NOARG_TYPED(ScAcceptChgDlg, ReOpenTimerHdl, Idle *, void)
 {
diff --git a/sc/source/ui/view/tabvwsh4.cxx b/sc/source/ui/view/tabvwsh4.cxx
index 33a556a..e8857c7 100644
--- a/sc/source/ui/view/tabvwsh4.cxx
+++ b/sc/source/ui/view/tabvwsh4.cxx
@@ -233,7 +233,7 @@ void ScTabViewShell::Deactivate(bool bMDI)
 
 if(pChanges!=NULL)
 {
-Link<> aLink;
+Link aLink;
 pChanges->SetModifiedLink(aLink);
 }
 

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

2015-09-22 Thread Noel Grandin
 sc/inc/appoptio.hxx  |   14 +++---
 sc/inc/docoptio.hxx  |4 ++--
 sc/inc/optutil.hxx   |4 ++--
 sc/inc/viewopti.hxx  |6 +++---
 sc/source/core/tool/appoptio.cxx |   27 +++
 sc/source/core/tool/docoptio.cxx |8 ++--
 sc/source/core/tool/optutil.cxx  |4 ++--
 sc/source/core/tool/viewopti.cxx |   12 +++-
 8 files changed, 28 insertions(+), 51 deletions(-)

New commits:
commit 8d16834a9820fb8c983753c3e2a05922885060b9
Author: Noel Grandin 
Date:   Tue Sep 22 20:42:43 2015 +0200

convert Link<> to typed

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

diff --git a/sc/inc/appoptio.hxx b/sc/inc/appoptio.hxx
index c73af70..4620f3c 100644
--- a/sc/inc/appoptio.hxx
+++ b/sc/inc/appoptio.hxx
@@ -116,13 +116,13 @@ class ScAppCfg : public ScAppOptions
 ScLinkConfigItemaMiscItem;
 ScLinkConfigItemaCompatItem;
 
-DECL_LINK( LayoutCommitHdl, void* );
-DECL_LINK( InputCommitHdl, void* );
-DECL_LINK( RevisionCommitHdl, void* );
-DECL_LINK( ContentCommitHdl, void* );
-DECL_LINK( SortListCommitHdl, void* );
-DECL_LINK( MiscCommitHdl, void* );
-DECL_LINK( CompatCommitHdl, void* );
+DECL_LINK_TYPED( LayoutCommitHdl, ScLinkConfigItem&, void );
+DECL_LINK_TYPED( InputCommitHdl, ScLinkConfigItem&, void );
+DECL_LINK_TYPED( RevisionCommitHdl, ScLinkConfigItem&, void );
+DECL_LINK_TYPED( ContentCommitHdl, ScLinkConfigItem&, void );
+DECL_LINK_TYPED( SortListCommitHdl, ScLinkConfigItem&, void );
+DECL_LINK_TYPED( MiscCommitHdl, ScLinkConfigItem&, void );
+DECL_LINK_TYPED( CompatCommitHdl, ScLinkConfigItem&, void );
 
 static com::sun::star::uno::Sequence GetLayoutPropertyNames();
 static com::sun::star::uno::Sequence GetInputPropertyNames();
diff --git a/sc/inc/docoptio.hxx b/sc/inc/docoptio.hxx
index 6c0136f..904f641 100644
--- a/sc/inc/docoptio.hxx
+++ b/sc/inc/docoptio.hxx
@@ -167,8 +167,8 @@ class ScDocCfg : public ScDocOptions
 ScLinkConfigItemaCalcItem;
 ScLinkConfigItemaLayoutItem;
 
-DECL_LINK( CalcCommitHdl, void* );
-DECL_LINK( LayoutCommitHdl, void* );
+DECL_LINK_TYPED( CalcCommitHdl, ScLinkConfigItem&, void );
+DECL_LINK_TYPED( LayoutCommitHdl, ScLinkConfigItem&, void );
 
 static com::sun::star::uno::Sequence GetCalcPropertyNames();
 static com::sun::star::uno::Sequence GetLayoutPropertyNames();
diff --git a/sc/inc/optutil.hxx b/sc/inc/optutil.hxx
index b75fc9f..5e21a77 100644
--- a/sc/inc/optutil.hxx
+++ b/sc/inc/optutil.hxx
@@ -37,12 +37,12 @@ public:
 
 class SC_DLLPUBLIC ScLinkConfigItem : public utl::ConfigItem
 {
-Link<>  aCommitLink;
+Link  aCommitLink;
 
 public:
 ScLinkConfigItem( const OUString& rSubTree );
 ScLinkConfigItem( const OUString& rSubTree, ConfigItemMode nMode );
-voidSetCommitLink( const Link<>& rLink );
+voidSetCommitLink( const Link& rLink );
 
 virtual voidNotify( const com::sun::star::uno::Sequence& 
aPropertyNames ) SAL_OVERRIDE;
 virtual voidImplCommit() SAL_OVERRIDE;
diff --git a/sc/inc/viewopti.hxx b/sc/inc/viewopti.hxx
index 82756e5..cab92c0 100644
--- a/sc/inc/viewopti.hxx
+++ b/sc/inc/viewopti.hxx
@@ -137,9 +137,9 @@ class ScViewCfg : public ScViewOptions
 ScLinkConfigItemaDisplayItem;
 ScLinkConfigItemaGridItem;
 
-DECL_LINK( LayoutCommitHdl, void* );
-DECL_LINK( DisplayCommitHdl, void* );
-DECL_LINK( GridCommitHdl, void* );
+DECL_LINK_TYPED( LayoutCommitHdl, ScLinkConfigItem&, void );
+DECL_LINK_TYPED( DisplayCommitHdl, ScLinkConfigItem&, void );
+DECL_LINK_TYPED( GridCommitHdl, ScLinkConfigItem&, void );
 
 static com::sun::star::uno::Sequence GetLayoutPropertyNames();
 static com::sun::star::uno::Sequence GetDisplayPropertyNames();
diff --git a/sc/source/core/tool/appoptio.cxx b/sc/source/core/tool/appoptio.cxx
index 8b8a6f1..4421898 100644
--- a/sc/source/core/tool/appoptio.cxx
+++ b/sc/source/core/tool/appoptio.cxx
@@ -575,7 +575,7 @@ ScAppCfg::ScAppCfg() :
 }
 aCompatItem.SetCommitLink( LINK(this, ScAppCfg, CompatCommitHdl) );
 }
- IMPL_LINK_NOARG(ScAppCfg, LayoutCommitHdl)
+ IMPL_LINK_NOARG_TYPED(ScAppCfg, LayoutCommitHdl, ScLinkConfigItem&, void)
 {
 Sequence aNames = GetLayoutPropertyNames();
 Sequence aValues(aNames.getLength());
@@ -603,11 +603,9 @@ ScAppCfg::ScAppCfg() :
 }
 }
 aLayoutItem.PutProperties(aNames, aValues);
-
-return 0;
 }
 
-IMPL_LINK_NOARG(ScAppCfg, InputCommitHdl)
+IMPL_LINK_NOARG_TYPED(ScAppCfg, InputCommitHdl, ScLinkConfigItem&, void)
 {
 Sequence aNames = GetInputPropertyNames();
 Sequence aValues(aNames.getLength());
@@ -629,11 

[Libreoffice-bugs] [Bug 94450] Web Wizard: Not enough space for date in step 6

2015-09-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94450

Julien Nabet  changed:

   What|Removed |Added

 Status|UNCONFIRMED |ASSIGNED
   Assignee|libreoffice-b...@lists.free |serval2...@yahoo.fr
   |desktop.org |
 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 94450] New: Web Wizard: Not enough space for date in step 6

2015-09-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94450

Bug ID: 94450
   Summary: Web Wizard: Not enough space for date in step 6
   Product: LibreOffice
   Version: 5.0.1.2 release
  Hardware: Other
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: serval2...@yahoo.fr

Created attachment 118945
  --> https://bugs.documentfoundation.org/attachment.cgi?id=118945=edit
screenshot

On pc Debian x86-64 with master sources updated today, I noticed in Web Page
wizard, that there weren't enough space for dates in step 6.

1) Launch LO
2) Launch Web Page wizard, select by default options (and a file step 2) until
step 6
3) Click on dropdown box at the line "Created:" and select a date

=> notice there's not enough room for date (+ year with 2 numbers only).

(notice: I put 5.0.1.2 because it's the LO Debian package I use but I think the
bug is in older versions).

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


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

2015-09-22 Thread Noel Grandin
 sc/source/ui/dbgui/csvcontrol.cxx  |2 +-
 sc/source/ui/dbgui/csvtablebox.cxx |   12 
 sc/source/ui/inc/csvcontrol.hxx|4 ++--
 sc/source/ui/inc/csvtablebox.hxx   |2 +-
 4 files changed, 8 insertions(+), 12 deletions(-)

New commits:
commit 3563fd5b12d5d16d8625cd911ed8562e34a73b1a
Author: Noel Grandin 
Date:   Tue Sep 22 16:58:19 2015 +0200

convert Link<> to typed

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

diff --git a/sc/source/ui/dbgui/csvcontrol.cxx 
b/sc/source/ui/dbgui/csvcontrol.cxx
index 583b510..e604504 100644
--- a/sc/source/ui/dbgui/csvcontrol.cxx
+++ b/sc/source/ui/dbgui/csvcontrol.cxx
@@ -167,7 +167,7 @@ void ScCsvControl::EnableRepaint( bool bInvalidate )
 void ScCsvControl::Execute( ScCsvCmdType eType, sal_Int32 nParam1, sal_Int32 
nParam2 )
 {
 maCmd.Set( eType, nParam1, nParam2 );
-maCmdHdl.Call( this );
+maCmdHdl.Call( *this );
 }
 
 // layout helpers -
diff --git a/sc/source/ui/dbgui/csvtablebox.cxx 
b/sc/source/ui/dbgui/csvtablebox.cxx
index 27d027d..3270504 100644
--- a/sc/source/ui/dbgui/csvtablebox.cxx
+++ b/sc/source/ui/dbgui/csvtablebox.cxx
@@ -39,7 +39,7 @@ ScCsvTableBox::ScCsvTableBox( vcl::Window* pParent, WinBits 
nBits ) :
 maHScroll->SetLineSize( 1 );
 maVScroll->SetLineSize( 1 );
 
-Link<> aLink = LINK( this, ScCsvTableBox, CsvCmdHdl );
+Link aLink = LINK( this, ScCsvTableBox, CsvCmdHdl );
 SetCmdHdl( aLink );
 maRuler->SetCmdHdl( aLink );
 maGrid->SetCmdHdl( aLink );
@@ -251,11 +251,9 @@ void ScCsvTableBox::DataChanged( const DataChangedEvent& 
rDCEvt )
 ScCsvControl::DataChanged( rDCEvt );
 }
 
-IMPL_LINK( ScCsvTableBox, CsvCmdHdl, ScCsvControl*, pCtrl )
+IMPL_LINK_TYPED( ScCsvTableBox, CsvCmdHdl, ScCsvControl&, rCtrl, void )
 {
-OSL_ENSURE( pCtrl, "ScCsvTableBox::CsvCmdHdl - missing sender" );
-
-const ScCsvCmd& rCmd = pCtrl->GetCmd();
+const ScCsvCmd& rCmd = rCtrl.GetCmd();
 ScCsvCmdType eType = rCmd.GetType();
 sal_Int32 nParam1 = rCmd.GetParam1();
 sal_Int32 nParam2 = rCmd.GetParam2();
@@ -334,7 +332,7 @@ IMPL_LINK( ScCsvTableBox, CsvCmdHdl, ScCsvControl*, pCtrl )
 bFound = false;
 }
 if( bFound )
-return 0;
+return;
 
 const ScCsvLayoutData aOldData( maData );
 switch( eType )
@@ -388,8 +386,6 @@ IMPL_LINK( ScCsvTableBox, CsvCmdHdl, ScCsvControl*, pCtrl )
 maGrid->ApplyLayout( aOldData );
 EnableRepaint();
 }
-
-return 0;
 }
 
 IMPL_LINK_TYPED( ScCsvTableBox, ScrollHdl, ScrollBar*, pScrollBar, void )
diff --git a/sc/source/ui/inc/csvcontrol.hxx b/sc/source/ui/inc/csvcontrol.hxx
index 82cad60..46866da 100644
--- a/sc/source/ui/inc/csvcontrol.hxx
+++ b/sc/source/ui/inc/csvcontrol.hxx
@@ -229,7 +229,7 @@ protected:
 ::css::accessibility::XAccessible > XAccessibleRef;
 
 private:
-Link<>  maCmdHdl;   /// External command 
handler.
+LinkmaCmdHdl;   /// External command 
handler.
 ScCsvCmdmaCmd;  /// Data of last command.
 const ScCsvLayoutData&  mrData; /// Shared layout data.
 
@@ -285,7 +285,7 @@ public:
 // command handling ---
 
 /** Sets a new command handler. */
-inline void SetCmdHdl( const Link<>& rHdl ) { maCmdHdl = 
rHdl; }
+inline void SetCmdHdl( const Link& 
rHdl ) { maCmdHdl = rHdl; }
 /** Returns data of the last command. */
 inline const ScCsvCmd&  GetCmd() const { return maCmd; }
 
diff --git a/sc/source/ui/inc/csvtablebox.hxx b/sc/source/ui/inc/csvtablebox.hxx
index ff30afe..23f20ab 100644
--- a/sc/source/ui/inc/csvtablebox.hxx
+++ b/sc/source/ui/inc/csvtablebox.hxx
@@ -123,7 +123,7 @@ protected:
 virtual SizeGetOptimalSize() const SAL_OVERRIDE;
 
 private:
-DECL_DLLPRIVATE_LINK( CsvCmdHdl, ScCsvControl* );
+DECL_DLLPRIVATE_LINK_TYPED( CsvCmdHdl, ScCsvControl&, void );
 DECL_DLLPRIVATE_LINK_TYPED( ScrollHdl, ScrollBar*, void );
 DECL_DLLPRIVATE_LINK_TYPED( ScrollEndHdl, ScrollBar*, void );
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2015-09-22 Thread Noel Grandin
 sd/source/ui/accessibility/AccessibleSlideSorterView.cxx|5 ++---
 sd/source/ui/inc/SlideSorterViewShell.hxx   |4 ++--
 sd/source/ui/slidesorter/controller/SlsSelectionManager.cxx |   10 
--
 sd/source/ui/slidesorter/inc/controller/SlsSelectionManager.hxx |6 +++---
 sd/source/ui/slidesorter/shell/SlideSorterViewShell.cxx |4 ++--
 sd/source/ui/tools/EventMultiplexer.cxx |7 +++
 6 files changed, 16 insertions(+), 20 deletions(-)

New commits:
commit 6f4a024b88ef99a44b78ab9d387dcf950c4d5677
Author: Noel Grandin 
Date:   Tue Sep 22 16:40:35 2015 +0200

convert Link<> to typed

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

diff --git a/sd/source/ui/accessibility/AccessibleSlideSorterView.cxx 
b/sd/source/ui/accessibility/AccessibleSlideSorterView.cxx
index b8bf84f..155d83c 100644
--- a/sd/source/ui/accessibility/AccessibleSlideSorterView.cxx
+++ b/sd/source/ui/accessibility/AccessibleSlideSorterView.cxx
@@ -81,7 +81,7 @@ public:
 void ReleaseListeners();
 void Notify (SfxBroadcaster& rBroadcaster, const SfxHint& rHint) 
SAL_OVERRIDE;
 DECL_LINK_TYPED(WindowEventListener, VclWindowEvent&, void);
-DECL_LINK(SelectionChangeListener, void*);
+DECL_LINK_TYPED(SelectionChangeListener, LinkParamNone*, void);
 DECL_LINK_TYPED(BroadcastSelectionChange, void*, void);
 DECL_LINK_TYPED(FocusChangeListener, LinkParamNone*, void);
 DECL_LINK_TYPED(VisibilityChangeListener, LinkParamNone*, void);
@@ -919,12 +919,11 @@ 
IMPL_LINK_TYPED(AccessibleSlideSorterView::Implementation, WindowEventListener,
 }
 }
 
-IMPL_LINK_NOARG(AccessibleSlideSorterView::Implementation, 
SelectionChangeListener)
+IMPL_LINK_NOARG_TYPED(AccessibleSlideSorterView::Implementation, 
SelectionChangeListener, LinkParamNone*, void)
 {
 if (mnSelectionChangeUserEventId == 0)
 mnSelectionChangeUserEventId = Application::PostUserEvent(
 LINK(this, AccessibleSlideSorterView::Implementation, 
BroadcastSelectionChange));
-return 1;
 }
 
 IMPL_LINK_NOARG_TYPED(AccessibleSlideSorterView::Implementation, 
BroadcastSelectionChange, void*, void)
diff --git a/sd/source/ui/inc/SlideSorterViewShell.hxx 
b/sd/source/ui/inc/SlideSorterViewShell.hxx
index cd590d8..1b38842 100644
--- a/sd/source/ui/inc/SlideSorterViewShell.hxx
+++ b/sd/source/ui/inc/SlideSorterViewShell.hxx
@@ -162,7 +162,7 @@ public:
 the second and all following calls are ignored.  Each listener
 is added only once.
 */
-void AddSelectionChangeListener (const Link<>& rListener);
+void AddSelectionChangeListener (const Link& 
rListener);
 
 /** Remove a listener that was called when the selection of the slide
 sorter changes.
@@ -170,7 +170,7 @@ public:
 It is save to pass a listener that was not added are has been
 removed previously.  Such calls are ignored.
 */
-void RemoveSelectionChangeListener (const Link<>& rListener);
+void RemoveSelectionChangeListener (const Link& 
rListener);
 
 virtual css::uno::Reference 
CreateSubController() SAL_OVERRIDE;
 
diff --git a/sd/source/ui/slidesorter/controller/SlsSelectionManager.cxx 
b/sd/source/ui/slidesorter/controller/SlsSelectionManager.cxx
index 0768a1e..4d7e7d7 100644
--- a/sd/source/ui/slidesorter/controller/SlsSelectionManager.cxx
+++ b/sd/source/ui/slidesorter/controller/SlsSelectionManager.cxx
@@ -236,11 +236,9 @@ void SelectionManager::SelectionHasChanged (const bool 
bMakeSelectionVisible)
 pViewShell->UpdatePreview(pDescriptor->GetPage());
 
 // Tell the selection change listeners that the selection has changed.
-::std::vector>::iterator iListener 
(maSelectionChangeListeners.begin());
-::std::vector>::iterator iEnd 
(maSelectionChangeListeners.end());
-for (; iListener!=iEnd; ++iListener)
+for (auto& rLink : maSelectionChangeListeners)
 {
-iListener->Call(NULL);
+rLink.Call(NULL);
 }
 
 // Reset the insertion position: until set again it is calculated from
@@ -249,7 +247,7 @@ void SelectionManager::SelectionHasChanged (const bool 
bMakeSelectionVisible)
 }
 }
 
-void SelectionManager::AddSelectionChangeListener (const Link<>& rListener)
+void SelectionManager::AddSelectionChangeListener (const 
Link& rListener)
 {
 if (::std::find (
 maSelectionChangeListeners.begin(),
@@ -260,7 +258,7 @@ void SelectionManager::AddSelectionChangeListener (const 
Link<>& rListener)
 }
 }
 
-void SelectionManager::RemoveSelectionChangeListener(const Link<>)
+void SelectionManager::RemoveSelectionChangeListener(const 

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

2015-09-22 Thread Noel Grandin
 sd/source/ui/inc/taskpane/TaskPaneTreeNode.hxx |2 --
 1 file changed, 2 deletions(-)

New commits:
commit 3e6bd83cb5266efcda785d350fd4052d6251a52d
Author: Noel Grandin 
Date:   Tue Sep 22 16:20:45 2015 +0200

remove unused Link<> field

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

diff --git a/sd/source/ui/inc/taskpane/TaskPaneTreeNode.hxx 
b/sd/source/ui/inc/taskpane/TaskPaneTreeNode.hxx
index bcfe450..2a1bde9 100644
--- a/sd/source/ui/inc/taskpane/TaskPaneTreeNode.hxx
+++ b/sd/source/ui/inc/taskpane/TaskPaneTreeNode.hxx
@@ -172,8 +172,6 @@ protected:
 
 private:
 TreeNode* mpParent;
-typedef ::std::vector> StateChangeListenerContainer;
-StateChangeListenerContainer maStateChangeListeners;
 };
 
 /** Objects of this class are sent to listeners to notify them about state
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] Using ranges to find a maximum number

2015-09-22 Thread Thomas Damratowski

Trying to find maximum number of wins for multiple people.


TEST.ods
Description: application/vnd.oasis.opendocument.spreadsheet
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 94453] New: Printing begins outside printing margin

2015-09-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94453

Bug ID: 94453
   Summary: Printing begins outside printing margin
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: minor
  Priority: medium
 Component: Printing and PDF export
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: jdhane...@gmail.com

When printing a writer document, printer (HP Officejet Pro 6830) attempts to
print first two lines of text at the very top of the page, which is outside its
printing margins. I do not know if this is specific to my printer, but I do
know that this does not happen when other programs print.

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


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

2015-09-22 Thread Noel Grandin
 include/editeng/outliner.hxx  |4 ++--
 include/svx/svdedxv.hxx   |2 +-
 svx/source/svdraw/svdedxv.cxx |5 ++---
 3 files changed, 5 insertions(+), 6 deletions(-)

New commits:
commit 32cbfd1addeb37f302ed309e7a383e2cadc84520
Author: Noel Grandin 
Date:   Tue Sep 22 15:11:03 2015 +0200

convert Link<> to typed

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

diff --git a/include/editeng/outliner.hxx b/include/editeng/outliner.hxx
index c7cc676..77ae2e0 100644
--- a/include/editeng/outliner.hxx
+++ b/include/editeng/outliner.hxx
@@ -215,7 +215,7 @@ private:
 EDITENG_DLLPRIVATE void ImpPasted( sal_Int32 nStart, sal_Int32 
nPrevParaCount, sal_Int32 nSize);
 EDITENG_DLLPRIVATE sal_Int32ImpCalcSelectedPages( bool 
bIncludeFirstSelected );
 
-Link<> aEndCutPasteLink;
+Link aEndCutPasteLink;
 
 public:
 OutlinerView( Outliner* pOut, vcl::Window* pWindow );
@@ -376,7 +376,7 @@ public:
 OUStringGetSurroundingText() const;
 Selection   GetSurroundingTextSelection() const;
 
-voidSetEndCutPasteLinkHdl(const Link<> ) { aEndCutPasteLink 
= rLink; }
+voidSetEndCutPasteLinkHdl(const Link ) 
{ aEndCutPasteLink = rLink; }
 };
 
 
diff --git a/include/svx/svdedxv.hxx b/include/svx/svdedxv.hxx
index bec7338..0bb7fb6 100644
--- a/include/svx/svdedxv.hxx
+++ b/include/svx/svdedxv.hxx
@@ -116,7 +116,7 @@ protected:
 
 // Chaining
 void ImpChainingEventHdl();
-DECL_LINK(ImpAfterCutOrPasteChainingEventHdl,void*);
+DECL_LINK_TYPED(ImpAfterCutOrPasteChainingEventHdl, LinkParamNone*, void);
 
 
 // Check if the whole text is selected.
diff --git a/svx/source/svdraw/svdedxv.cxx b/svx/source/svdraw/svdedxv.cxx
index b922d39..9c88120 100644
--- a/svx/source/svdraw/svdedxv.cxx
+++ b/svx/source/svdraw/svdedxv.cxx
@@ -549,15 +549,14 @@ void SdrObjEditView::ImpChainingEventHdl()
 
 }
 
-IMPL_LINK_NOARG(SdrObjEditView,ImpAfterCutOrPasteChainingEventHdl)
+IMPL_LINK_NOARG_TYPED(SdrObjEditView,ImpAfterCutOrPasteChainingEventHdl, 
LinkParamNone*, void)
 {
 SdrTextObj* pTextObj = dynamic_cast< SdrTextObj * >( GetTextEditObject());
 if (!pTextObj)
-return 0;
+return;
 ImpChainingEventHdl();
 TextChainCursorManager *pCursorManager = new TextChainCursorManager(this, 
pTextObj);
 ImpMoveCursorAfterChainingEvent(pCursorManager);
-return 0;
 }
 
 void SdrObjEditView::ImpMoveCursorAfterChainingEvent(TextChainCursorManager 
*pCursorManager)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2015-09-22 Thread Noel Grandin
 cui/source/dialogs/hangulhanjadlg.cxx |4 ++--
 cui/source/factory/dlgfact.cxx|2 +-
 cui/source/factory/dlgfact.hxx|2 +-
 cui/source/inc/hangulhanjadlg.hxx |6 +++---
 editeng/source/misc/hangulhanja.cxx   |5 ++---
 include/editeng/edtdlg.hxx|3 ++-
 6 files changed, 11 insertions(+), 11 deletions(-)

New commits:
commit a829ba593c921a2b6b5fce7f216f48ee9d6c3812
Author: Noel Grandin 
Date:   Tue Sep 22 15:04:21 2015 +0200

convert Link<> to typed

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

diff --git a/cui/source/dialogs/hangulhanjadlg.cxx 
b/cui/source/dialogs/hangulhanjadlg.cxx
index 3bdc837..36570b9 100644
--- a/cui/source/dialogs/hangulhanjadlg.cxx
+++ b/cui/source/dialogs/hangulhanjadlg.cxx
@@ -706,7 +706,7 @@ namespace svx
 }
 
 
-void HangulHanjaConversionDialog::SetClickByCharacterHdl( const Link<>& 
_rHdl )
+void HangulHanjaConversionDialog::SetClickByCharacterHdl( const 
Link& _rHdl )
 {
 m_aClickByCharacterLink = _rHdl;
 }
@@ -733,7 +733,7 @@ namespace svx
 
 IMPL_LINK_TYPED( HangulHanjaConversionDialog, ClickByCharacterHdl, 
Button*, pBox, void )
 {
-m_aClickByCharacterLink.Call( pBox );
+m_aClickByCharacterLink.Call( static_cast(pBox) );
 
 bool bByCharacter = static_cast(pBox)->IsChecked();
 m_pSuggestions->DisplayListBox( !bByCharacter );
diff --git a/cui/source/factory/dlgfact.cxx b/cui/source/factory/dlgfact.cxx
index e31ce96..f18a3ec 100644
--- a/cui/source/factory/dlgfact.cxx
+++ b/cui/source/factory/dlgfact.cxx
@@ -286,7 +286,7 @@ void 
AbstractHangulHanjaConversionDialog_Impl::SetChangeAllHdl( const LinkSetChangeAllHdl(_rHdl );
 }
 
-void AbstractHangulHanjaConversionDialog_Impl::SetClickByCharacterHdl( const 
Link<>& _rHdl )
+void AbstractHangulHanjaConversionDialog_Impl::SetClickByCharacterHdl( const 
Link& _rHdl )
 {
  pDlg->SetClickByCharacterHdl(_rHdl );
 }
diff --git a/cui/source/factory/dlgfact.hxx b/cui/source/factory/dlgfact.hxx
index 5117163..7b803b4 100644
--- a/cui/source/factory/dlgfact.hxx
+++ b/cui/source/factory/dlgfact.hxx
@@ -144,7 +144,7 @@ class AbstractHangulHanjaConversionDialog_Impl: public 
AbstractHangulHanjaConver
 virtual void  SetIgnoreAllHdl( const Link& _rHdl ) 
SAL_OVERRIDE ;
 virtual void  SetChangeHdl( const Link& _rHdl ) 
SAL_OVERRIDE ;
 virtual void  SetChangeAllHdl( const Link& _rHdl ) 
SAL_OVERRIDE ;
-virtual void  SetClickByCharacterHdl( const Link<>& _rHdl ) 
SAL_OVERRIDE ;
+virtual void  SetClickByCharacterHdl( const Link& 
_rHdl ) SAL_OVERRIDE ;
 virtual void  SetConversionFormatChangedHdl( const Link& 
_rHdl ) SAL_OVERRIDE ;
 virtual void  SetFindHdl( const Link& _rHdl ) 
SAL_OVERRIDE;
 virtual bool  GetUseBothDirections( ) const SAL_OVERRIDE;
diff --git a/cui/source/inc/hangulhanjadlg.hxx 
b/cui/source/inc/hangulhanjadlg.hxx
index fca9f50..42a85b2a 100644
--- a/cui/source/inc/hangulhanjadlg.hxx
+++ b/cui/source/inc/hangulhanjadlg.hxx
@@ -129,10 +129,10 @@ namespace svx
 the user uses the "find" functionality, we switch to working
 with what the user entered, which then does not have any relation 
to
 the document anymore. Some functionality must be disabled then */
-boolm_bDocumentMode;
+bool   m_bDocumentMode;
 
 Link  m_aOptionsChangedLink;
-Link<>  m_aClickByCharacterLink;
+Link   m_aClickByCharacterLink;
 
 public:
 HangulHanjaConversionDialog(
@@ -148,7 +148,7 @@ namespace svx
 voidSetChangeHdl( const Link& _rHdl );
 voidSetChangeAllHdl( const Link& _rHdl );
 
-voidSetClickByCharacterHdl( const Link<>& _rHdl );
+voidSetClickByCharacterHdl( const Link& _rHdl );
 voidSetConversionFormatChangedHdl( const Link& _rHdl 
);
 voidSetFindHdl( const Link& _rHdl );
 
diff --git a/editeng/source/misc/hangulhanja.cxx 
b/editeng/source/misc/hangulhanja.cxx
index 286aadd..885525c 100644
--- a/editeng/source/misc/hangulhanja.cxx
+++ b/editeng/source/misc/hangulhanja.cxx
@@ -157,7 +157,7 @@ namespace editeng
 DECL_LINK_TYPED( OnIgnoreAll, Button*, void );
 DECL_LINK_TYPED( OnChange, Button*, void );
 DECL_LINK_TYPED( OnChangeAll, Button*, void );
-DECL_LINK( OnByCharClicked, CheckBox* );
+DECL_LINK_TYPED( OnByCharClicked, CheckBox*, void );
 DECL_LINK_TYPED( 

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

2015-09-22 Thread Noel Grandin
 cui/source/dialogs/hangulhanjadlg.cxx |4 ++--
 cui/source/factory/dlgfact.cxx|2 +-
 cui/source/factory/dlgfact.hxx|2 +-
 cui/source/inc/hangulhanjadlg.hxx |6 +++---
 editeng/source/misc/hangulhanja.cxx   |6 ++
 include/editeng/edtdlg.hxx|2 +-
 6 files changed, 10 insertions(+), 12 deletions(-)

New commits:
commit 5645960113b3b7ded309bdb2ed5bd4a51877b96c
Author: Noel Grandin 
Date:   Tue Sep 22 12:34:17 2015 +0200

convert Link<> to typed

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

diff --git a/cui/source/dialogs/hangulhanjadlg.cxx 
b/cui/source/dialogs/hangulhanjadlg.cxx
index 6bc9107..3bdc837 100644
--- a/cui/source/dialogs/hangulhanjadlg.cxx
+++ b/cui/source/dialogs/hangulhanjadlg.cxx
@@ -658,7 +658,7 @@ namespace svx
 }
 
 
-void HangulHanjaConversionDialog::SetOptionsChangedHdl( const Link<>& 
_rHdl )
+void HangulHanjaConversionDialog::SetOptionsChangedHdl( const 
Link& _rHdl )
 {
 m_aOptionsChangedLink = _rHdl;
 }
@@ -760,7 +760,7 @@ namespace svx
 {
 ScopedVclPtrInstance< HangulHanjaOptionsDialog > aOptDlg(this);
 aOptDlg->Execute();
-m_aOptionsChangedLink.Call( this );
+m_aOptionsChangedLink.Call( nullptr );
 }
 
 
diff --git a/cui/source/factory/dlgfact.cxx b/cui/source/factory/dlgfact.cxx
index d754caa..e31ce96 100644
--- a/cui/source/factory/dlgfact.cxx
+++ b/cui/source/factory/dlgfact.cxx
@@ -261,7 +261,7 @@ void 
AbstractHangulHanjaConversionDialog_Impl::SetConversionFormat( editeng::Han
  pDlg->SetConversionFormat(_eType);
 }
 
-void AbstractHangulHanjaConversionDialog_Impl::SetOptionsChangedHdl( const 
Link<>& _rHdl )
+void AbstractHangulHanjaConversionDialog_Impl::SetOptionsChangedHdl( const 
Link& _rHdl )
 {
  pDlg->SetOptionsChangedHdl(_rHdl );
 }
diff --git a/cui/source/factory/dlgfact.hxx b/cui/source/factory/dlgfact.hxx
index 7e36ffe..5117163 100644
--- a/cui/source/factory/dlgfact.hxx
+++ b/cui/source/factory/dlgfact.hxx
@@ -139,7 +139,7 @@ class AbstractHangulHanjaConversionDialog_Impl: public 
AbstractHangulHanjaConver
 virtual void  SetByCharacter( bool _bByCharacter ) SAL_OVERRIDE ;
 virtual void  SetConversionDirectionState( bool _bTryBothDirections, 
editeng::HangulHanjaConversion::ConversionDirection 
_ePrimaryConversionDirection ) SAL_OVERRIDE;
 virtual void  SetConversionFormat( 
editeng::HangulHanjaConversion::ConversionFormat _eType ) SAL_OVERRIDE;
-virtual void  SetOptionsChangedHdl( const Link<>& _rHdl ) SAL_OVERRIDE;
+virtual void  SetOptionsChangedHdl( const Link& 
_rHdl ) SAL_OVERRIDE;
 virtual void  SetIgnoreHdl( const Link& _rHdl ) 
SAL_OVERRIDE;
 virtual void  SetIgnoreAllHdl( const Link& _rHdl ) 
SAL_OVERRIDE ;
 virtual void  SetChangeHdl( const Link& _rHdl ) 
SAL_OVERRIDE ;
diff --git a/cui/source/inc/hangulhanjadlg.hxx 
b/cui/source/inc/hangulhanjadlg.hxx
index 8210431..fca9f50 100644
--- a/cui/source/inc/hangulhanjadlg.hxx
+++ b/cui/source/inc/hangulhanjadlg.hxx
@@ -124,14 +124,14 @@ namespace svx
 VclPtr   m_pHanjaOnly;
 VclPtr   m_pReplaceByChar;
 
-VclPtr   m_pIgnoreNonPrimary;
+VclPtr   m_pIgnoreNonPrimary;
 /** are we working for a document? This is normally true, but in case
 the user uses the "find" functionality, we switch to working
 with what the user entered, which then does not have any relation 
to
 the document anymore. Some functionality must be disabled then */
 boolm_bDocumentMode;
 
-Link<>  m_aOptionsChangedLink;
+Link  m_aOptionsChangedLink;
 Link<>  m_aClickByCharacterLink;
 
 public:
@@ -142,7 +142,7 @@ namespace svx
 virtual void dispose() SAL_OVERRIDE;
 
 public:
-voidSetOptionsChangedHdl( const Link<>& _rHdl );
+voidSetOptionsChangedHdl( const Link& _rHdl );
 voidSetIgnoreHdl( const Link& _rHdl );
 voidSetIgnoreAllHdl( const Link& _rHdl );
 voidSetChangeHdl( const Link& _rHdl );
diff --git a/editeng/source/misc/hangulhanja.cxx 
b/editeng/source/misc/hangulhanja.cxx
index 660d14d..286aadd 100644
--- a/editeng/source/misc/hangulhanja.cxx
+++ b/editeng/source/misc/hangulhanja.cxx
@@ -152,7 +152,7 @@ namespace editeng
 bool ContinueConversion( bool _bRepeatCurrentUnit );
 
 private:
-DECL_LINK( OnOptionsChanged, void* );
+DECL_LINK_TYPED( OnOptionsChanged, LinkParamNone*, void );
 

[Libreoffice-commits] core.git: editeng/source include/editeng sc/source sd/source sw/inc sw/source

2015-09-22 Thread Noel Grandin
 editeng/source/editeng/editview.cxx   |   10 +-
 editeng/source/outliner/outlvw.cxx|2 +-
 include/editeng/editview.hxx  |2 +-
 include/editeng/outliner.hxx  |2 +-
 sc/source/ui/inc/gridwin.hxx  |2 +-
 sc/source/ui/view/gridwin.cxx |7 +++
 sd/source/ui/annotations/annotationwindow.hxx |2 +-
 sd/source/ui/docshell/docshell.cxx|5 ++---
 sd/source/ui/inc/DrawDocShell.hxx |4 ++--
 sd/source/ui/view/drviews4.cxx|2 +-
 sd/source/ui/view/outlnvsh.cxx|2 +-
 sw/inc/view.hxx   |2 +-
 sw/source/uibase/docvw/SidebarTxtControl.cxx  |7 +++
 sw/source/uibase/docvw/SidebarTxtControl.hxx  |2 +-
 sw/source/uibase/uiview/viewdraw.cxx  |7 +++
 15 files changed, 27 insertions(+), 31 deletions(-)

New commits:
commit a19f981ea1c31a9a3af4a9368dc50f045701a047
Author: Noel Grandin 
Date:   Tue Sep 22 12:26:29 2015 +0200

convert Link<> to typed

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

diff --git a/editeng/source/editeng/editview.cxx 
b/editeng/source/editeng/editview.cxx
index c9f1e42..57ec994 100644
--- a/editeng/source/editeng/editview.cxx
+++ b/editeng/source/editeng/editview.cxx
@@ -760,7 +760,7 @@ bool EditView::IsWrongSpelledWordAtPos( const Point& 
rPosPixel, bool bMarkIfWron
 return pImpEditView->IsWrongSpelledWord( aPaM , bMarkIfWrong );
 }
 
-void EditView::ExecuteSpellPopup( const Point& rPosPixel, Link<>* pCallBack )
+void EditView::ExecuteSpellPopup( const Point& rPosPixel, 
Link* pCallBack )
 {
 
 Point aPos ( pImpEditView->GetWindow()->PixelToLogic( rPosPixel ) );
@@ -938,7 +938,7 @@ void EditView::ExecuteSpellPopup( const Point& rPosPixel, 
Link<>* pCallBack )
 if ( pCallBack )
 {
 SpellCallbackInfo aInf( SpellCallbackCommand::IGNOREWORD, 
aWord );
-pCallBack->Call(  );
+pCallBack->Call( aInf );
 }
 SetSelection( aOldSel );
 }
@@ -967,7 +967,7 @@ void EditView::ExecuteSpellPopup( const Point& rPosPixel, 
Link<>* pCallBack )
 if ( pCallBack )
 {
 SpellCallbackInfo aInf( ( nId == MN_WORDLANGUAGE ) ? 
SpellCallbackCommand::WORDLANGUAGE : SpellCallbackCommand::PARALANGUAGE, 
nLangToUse );
-pCallBack->Call(  );
+pCallBack->Call( aInf );
 }
 SetSelection( aOldSel );
 }
@@ -986,7 +986,7 @@ void EditView::ExecuteSpellPopup( const Point& rPosPixel, 
Link<>* pCallBack )
 else
 {
 SpellCallbackInfo aInf( SpellCallbackCommand::STARTSPELLDLG, 
OUString() );
-pCallBack->Call(  );
+pCallBack->Call( aInf );
 }
 }
 else if ( nId >= MN_DICTSTART || nId == MN_INSERT_SINGLE )
@@ -1014,7 +1014,7 @@ void EditView::ExecuteSpellPopup( const Point& rPosPixel, 
Link<>* pCallBack )
 if ( pCallBack )
 {
 SpellCallbackInfo aInf( SpellCallbackCommand::ADDTODICTIONARY, 
aSelected );
-pCallBack->Call(  );
+pCallBack->Call( aInf );
 }
 SetSelection( aOldSel );
 }
diff --git a/editeng/source/outliner/outlvw.cxx 
b/editeng/source/outliner/outlvw.cxx
index edf617f..966efed 100644
--- a/editeng/source/outliner/outlvw.cxx
+++ b/editeng/source/outliner/outlvw.cxx
@@ -1385,7 +1385,7 @@ bool OutlinerView::IsWrongSpelledWordAtPos( const Point& 
rPosPixel, bool bMarkIf
 return pEditView->IsWrongSpelledWordAtPos( rPosPixel, bMarkIfWrong );
 }
 
-void OutlinerView::ExecuteSpellPopup( const Point& rPosPixel, Link<>* 
pStartDlg )
+void OutlinerView::ExecuteSpellPopup( const Point& rPosPixel, 
Link* pStartDlg )
 {
 pEditView->ExecuteSpellPopup( rPosPixel, pStartDlg );
 }
diff --git a/include/editeng/editview.hxx b/include/editeng/editview.hxx
index 0467638..210e816 100644
--- a/include/editeng/editview.hxx
+++ b/include/editeng/editview.hxx
@@ -217,7 +217,7 @@ public:
 
 boolIsCursorAtWrongSpelledWord( bool bMarkIfWrong = false );
 boolIsWrongSpelledWordAtPos( const Point& rPosPixel, bool 
bMarkIfWrong = false );
-voidExecuteSpellPopup( const Point& rPosPixel, Link<>* 
pCallBack = 0 );
+voidExecuteSpellPopup( const Point& rPosPixel, 
Link* pCallBack = 0 );
 
 voidInsertField( const SvxFieldItem& rFld );
 const SvxFieldItem* GetFieldUnderMousePointer() const;
diff --git a/include/editeng/outliner.hxx b/include/editeng/outliner.hxx

[Libreoffice-bugs] [Bug 94451] Agenda: Not enough space for date in step 5 (French UI)

2015-09-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94451

Julien Nabet  changed:

   What|Removed |Added

 Status|UNCONFIRMED |ASSIGNED
   Assignee|libreoffice-b...@lists.free |serval2...@yahoo.fr
   |desktop.org |
 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 94451] New: Agenda: Not enough space for date in step 5 (French UI)

2015-09-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94451

Bug ID: 94451
   Summary: Agenda: Not enough space for date in step 5 (French
UI)
   Product: LibreOffice
   Version: 5.0.1.2 release
  Hardware: Other
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: serval2...@yahoo.fr

Created attachment 118946
  --> https://bugs.documentfoundation.org/attachment.cgi?id=118946=edit
screenshot

On pc Debian x86-64 with master sources updated today, I noticed there wasn't
enough room for some text in buttons of step 5 (French UI).

1) Launch LO
2) Launch Agenda wizard
3) Click "Next" button ("Suivant" in French) until Step 5
=> Notice "Move Up" and "Move Down"/"Déplacer vers le haut" "Déplacer vers le
bas"
In french UI, the whole text can't be displayed, it's cut.

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


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

2015-09-22 Thread Noel Grandin
 cui/source/dialogs/cuigaldlg.cxx  |   13 -
 cui/source/inc/cuigaldlg.hxx  |2 +-
 include/svx/galtheme.hxx  |2 +-
 svx/source/gallery2/galtheme.cxx  |4 ++--
 svx/source/unogallery/unogaltheme.cxx |2 +-
 5 files changed, 9 insertions(+), 14 deletions(-)

New commits:
commit 0554e83ca9968e2301934bb2f420c9b9faee5681
Author: Noel Grandin 
Date:   Tue Sep 22 15:31:53 2015 +0200

convert Link<> to typed

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

diff --git a/cui/source/dialogs/cuigaldlg.cxx b/cui/source/dialogs/cuigaldlg.cxx
index 1a5d0fd..bb703c2 100644
--- a/cui/source/dialogs/cuigaldlg.cxx
+++ b/cui/source/dialogs/cuigaldlg.cxx
@@ -511,7 +511,7 @@ IMPL_LINK_TYPED( ActualizeProgress, TimeoutHdl, Idle*, 
_pTimer, void)
 
 
 
-IMPL_LINK( ActualizeProgress, ActualizeHdl, INetURLObject*, pURL )
+IMPL_LINK_TYPED( ActualizeProgress, ActualizeHdl, const INetURLObject&, rURL, 
void )
 {
 for( long i = 0; i < 128; i++ )
 Application::Reschedule();
@@ -519,14 +519,9 @@ IMPL_LINK( ActualizeProgress, ActualizeHdl, 
INetURLObject*, pURL )
 Flush();
 Sync();
 
-if( pURL )
-{
-m_pFtActualizeFile->SetText( GetReducedString( *pURL, 30 ) );
-m_pFtActualizeFile->Flush();
-m_pFtActualizeFile->Sync();
-}
-
-return 0;
+m_pFtActualizeFile->SetText( GetReducedString( rURL, 30 ) );
+m_pFtActualizeFile->Flush();
+m_pFtActualizeFile->Sync();
 }
 
 TitleDialog::TitleDialog(vcl::Window* pParent, const OUString& rOldTitle)
diff --git a/cui/source/inc/cuigaldlg.hxx b/cui/source/inc/cuigaldlg.hxx
index 43f0737..2ab6b08 100644
--- a/cui/source/inc/cuigaldlg.hxx
+++ b/cui/source/inc/cuigaldlg.hxx
@@ -160,7 +160,7 @@ private:
 
 DECL_LINK_TYPED( ClickCancelBtn, Button*, void );
 DECL_LINK_TYPED( TimeoutHdl, Idle*, void );
-DECL_LINK( ActualizeHdl, INetURLObject* );
+DECL_LINK_TYPED( ActualizeHdl, const INetURLObject&, 
void );
 
 public:
 ActualizeProgress( vcl::Window* pWindow, GalleryTheme* 
pThm );
diff --git a/include/svx/galtheme.hxx b/include/svx/galtheme.hxx
index d3e9cbf..c293806 100644
--- a/include/svx/galtheme.hxx
+++ b/include/svx/galtheme.hxx
@@ -178,7 +178,7 @@ public:
 boolIsDefault() const;
 SAL_DLLPRIVATE bool IsModified() const;
 
-voidActualize( const Link<>& rActualizeLink, 
GalleryProgress* pProgress = NULL );
+voidActualize( const Link& rActualizeLink, GalleryProgress* pProgress = NULL );
 SAL_DLLPRIVATE void AbortActualize() { bAbortActualize = true; }
 
 SAL_DLLPRIVATE Gallery* GetParent() const { return pParent; }
diff --git a/svx/source/gallery2/galtheme.cxx b/svx/source/gallery2/galtheme.cxx
index 315449f..4e97329 100644
--- a/svx/source/gallery2/galtheme.cxx
+++ b/svx/source/gallery2/galtheme.cxx
@@ -509,7 +509,7 @@ bool GalleryTheme::ChangeObjectPos( size_t nOldPos, size_t 
nNewPos )
 return true;
 }
 
-void GalleryTheme::Actualize( const Link<>& rActualizeLink, GalleryProgress* 
pProgress )
+void GalleryTheme::Actualize( const Link& 
rActualizeLink, GalleryProgress* pProgress )
 {
 if( !IsReadOnly() )
 {
@@ -534,7 +534,7 @@ void GalleryTheme::Actualize( const Link<>& rActualizeLink, 
GalleryProgress* pPr
 
 const INetURLObject aURL( pEntry->aURL );
 
-rActualizeLink.Call( const_cast() );
+rActualizeLink.Call( aURL );
 
 // SvDraw objects will be updated later
 if( pEntry->eObjKind != SGA_OBJ_SVDRAW )
diff --git a/svx/source/unogallery/unogaltheme.cxx 
b/svx/source/unogallery/unogaltheme.cxx
index edbd37f..c15c8cb 100644
--- a/svx/source/unogallery/unogaltheme.cxx
+++ b/svx/source/unogallery/unogaltheme.cxx
@@ -206,7 +206,7 @@ void SAL_CALL GalleryTheme::update(  )
 
 if( mpTheme )
 {
-const Link<> aDummyLink;
+const Link aDummyLink;
 mpTheme->Actualize( aDummyLink );
 }
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2015-09-22 Thread Noel Grandin
 cui/source/dialogs/cuifmsearch.cxx  |6 +++---
 cui/source/factory/dlgfact.cxx  |2 +-
 cui/source/factory/dlgfact.hxx  |2 +-
 cui/source/inc/cuifmsearch.hxx  |4 ++--
 dbaccess/source/ui/browser/brwctrlr.cxx |   14 +++---
 dbaccess/source/ui/inc/brwctrlr.hxx |2 +-
 include/svx/svxdlg.hxx  |3 ++-
 svx/source/form/fmshimp.cxx |   32 
 svx/source/inc/fmshimp.hxx  |2 +-
 9 files changed, 34 insertions(+), 33 deletions(-)

New commits:
commit efeb9281535f9e32a1d23332a19da69767dd1387
Author: Noel Grandin 
Date:   Tue Sep 22 16:18:58 2015 +0200

convert Link<> to typed

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

diff --git a/cui/source/dialogs/cuifmsearch.cxx 
b/cui/source/dialogs/cuifmsearch.cxx
index 26b18e1..8b38031 100644
--- a/cui/source/dialogs/cuifmsearch.cxx
+++ b/cui/source/dialogs/cuifmsearch.cxx
@@ -74,7 +74,7 @@ void FmSearchDialog::initCommon( const Reference< XResultSet 
>& _rxCursor )
 }
 
 FmSearchDialog::FmSearchDialog(vcl::Window* pParent, const OUString& 
sInitialText, const ::std::vector< OUString >& _rContexts, sal_Int16 
nInitialContext,
-const Link<>& lnkContextSupplier)
+const Link& lnkContextSupplier)
 :ModalDialog(pParent, "RecordSearchDialog", "cui/ui/fmsearchdialog.ui")
 ,m_sCancel( Button::GetStandardText( StandardButtonType::Cancel ) )
 ,m_pPreSearchFocus( NULL )
@@ -115,7 +115,7 @@ FmSearchDialog::FmSearchDialog(vcl::Window* pParent, const 
OUString& sInitialTex
 
 FmSearchContext fmscInitial;
 fmscInitial.nContext = nInitialContext;
-m_lnkContextSupplier.Call();
+m_lnkContextSupplier.Call(fmscInitial);
 DBG_ASSERT(fmscInitial.xCursor.is(), "FmSearchDialog::FmSearchDialog : 
invalid data supplied by ContextSupplier !");
 DBG_ASSERT(comphelper::string::getTokenCount(fmscInitial.strUsedFields, 
';') == (sal_Int32)fmscInitial.arrFields.size(),
 "FmSearchDialog::FmSearchDialog : invalid data supplied by 
ContextSupplied !");
@@ -520,7 +520,7 @@ void FmSearchDialog::InitContext(sal_Int16 nContext)
 FmSearchContext fmscContext;
 fmscContext.nContext = nContext;
 
-sal_uInt32 nResult = m_lnkContextSupplier.Call();
+sal_uInt32 nResult = m_lnkContextSupplier.Call(fmscContext);
 DBG_ASSERT(nResult > 0, "FmSearchDialog::InitContext : ContextSupplier 
didn't give me any controls !");
 
 // put the field names into the respective listbox
diff --git a/cui/source/factory/dlgfact.cxx b/cui/source/factory/dlgfact.cxx
index f18a3ec..9f39f38 100644
--- a/cui/source/factory/dlgfact.cxx
+++ b/cui/source/factory/dlgfact.cxx
@@ -1266,7 +1266,7 @@ AbstractFmSearchDialog*  
AbstractDialogFactory_Impl::CreateFmSearchDialog(vcl::W
 const OUString& 
strInitialText,
 const ::std::vector< 
OUString >& _rContexts,
 sal_Int16 
nInitialContext,
-const Link<>& 
lnkContextSupplier)
+const 
Link& lnkContextSupplier)
 {
 VclPtrInstance pDlg( pParent, strInitialText, _rContexts,
  nInitialContext, lnkContextSupplier );
diff --git a/cui/source/factory/dlgfact.hxx b/cui/source/factory/dlgfact.hxx
index 7b803b4..4c8b228 100644
--- a/cui/source/factory/dlgfact.hxx
+++ b/cui/source/factory/dlgfact.hxx
@@ -606,7 +606,7 @@ public:
 const OUString& 
strInitialText,
 const ::std::vector< 
OUString >& _rContexts,
 sal_Int16 
nInitialContext,
-const Link<>& 
lnkContextSupplier) SAL_OVERRIDE;
+const 
Link& lnkContextSupplier) SAL_OVERRIDE;
 virtual AbstractGraphicFilterDialog *   
CreateGraphicFilterEmboss(vcl::Window* pParent,
 const Graphic& rGraphic, 
RECT_POINT eLightSource) SAL_OVERRIDE;
 virtual AbstractGraphicFilterDialog *   
CreateGraphicFilterPoster(vcl::Window* pParent,
diff --git a/cui/source/inc/cuifmsearch.hxx b/cui/source/inc/cuifmsearch.hxx
index fb1d9b2..42a9fab 100644
--- a/cui/source/inc/cuifmsearch.hxx
+++ b/cui/source/inc/cuifmsearch.hxx
@@ -81,7 +81,7 @@ class FmSearchDialog : public ModalDialog
 Link<>  m_lnkFoundHandler;  ///< Handler for "found"

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

2015-09-22 Thread Noel Grandin
 sc/inc/column.hxx   |6 +--
 sc/inc/document.hxx |6 +--
 sc/inc/global.hxx   |9 +
 sc/inc/scabstdlg.hxx|2 -
 sc/inc/table.hxx|4 +-
 sc/qa/unit/ucalc.cxx|4 +-
 sc/source/core/data/column3.cxx |   55 +++-
 sc/source/core/data/document.cxx|   10 +++---
 sc/source/core/data/table2.cxx  |4 +-
 sc/source/ui/attrdlg/scdlgfact.cxx  |2 -
 sc/source/ui/attrdlg/scdlgfact.hxx  |2 -
 sc/source/ui/inc/inscodlg.hxx   |6 +--
 sc/source/ui/inc/undoblk.hxx|8 ++---
 sc/source/ui/inc/viewfunc.hxx   |   12 +++
 sc/source/ui/miscdlgs/inscodlg.cxx  |   32 ++--
 sc/source/ui/undo/undoblk3.cxx  |2 -
 sc/source/ui/vba/excelvbahelper.cxx |2 -
 sc/source/ui/vba/excelvbahelper.hxx |2 -
 sc/source/ui/vba/vbarange.cxx   |   18 +--
 sc/source/ui/view/cellsh1.cxx   |8 ++---
 sc/source/ui/view/cliputil.cxx  |2 -
 sc/source/ui/view/viewfun2.cxx  |4 +-
 sc/source/ui/view/viewfun3.cxx  |   26 -
 sc/source/ui/view/viewfun5.cxx  |4 +-
 24 files changed, 116 insertions(+), 114 deletions(-)

New commits:
commit ad1386300562779606d958ea8289916cb9cbb8f8
Author: Noel Grandin 
Date:   Sun Sep 20 17:15:15 2015 +0200

convert SC_PASTE constants to scoped enum

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

diff --git a/sc/inc/column.hxx b/sc/inc/column.hxx
index 978b3713..6d41bab 100644
--- a/sc/inc/column.hxx
+++ b/sc/inc/column.hxx
@@ -280,10 +280,10 @@ public:
 
 //  Selection (?) of this document
 void MixMarked(
-sc::MixDocContext& rCxt, const ScMarkData& rMark, sal_uInt16 nFunction,
+sc::MixDocContext& rCxt, const ScMarkData& rMark, ScPasteFunc 
nFunction,
 bool bSkipEmpty, const ScColumn& rSrcCol );
 void MixData(
-sc::MixDocContext& rCxt, SCROW nRow1, SCROW nRow2, sal_uInt16 
nFunction, bool bSkipEmpty,
+sc::MixDocContext& rCxt, SCROW nRow1, SCROW nRow2, ScPasteFunc 
nFunction, bool bSkipEmpty,
 const ScColumn& rSrcCol );
 
 ScAttrIterator* CreateAttrIterator( SCROW nStartRow, SCROW nEndRow ) const;
@@ -301,7 +301,7 @@ public:
 
 voidCopyScenarioFrom( const ScColumn& rSrcCol );
 voidCopyScenarioTo( ScColumn& rDestCol ) const;
-boolTestCopyScenarioTo( const ScColumn& rDestCol ) const;
+bool   TestCopyScenarioTo( const ScColumn& rDestCol ) const;
 voidMarkScenarioIn( ScMarkData& rDestMark ) const;
 
 voidCopyUpdated( const ScColumn& rPosCol, ScColumn& rDestCol ) 
const;
diff --git a/sc/inc/document.hxx b/sc/inc/document.hxx
index 2f275a8..92fbdfc 100644
--- a/sc/inc/document.hxx
+++ b/sc/inc/document.hxx
@@ -1345,14 +1345,14 @@ public:
 ScClipParam&GetClipParam();
 voidSetClipParam(const ScClipParam& rParam);
 
-voidMixDocument( const ScRange& rRange, sal_uInt16 nFunction, 
bool bSkipEmpty,
+voidMixDocument( const ScRange& rRange, ScPasteFunc nFunction, 
bool bSkipEmpty,
 ScDocument* pSrcDoc );
 
 voidFillTab( const ScRange& rSrcArea, const ScMarkData& rMark,
-InsertDeleteFlags nFlags, sal_uInt16 nFunction,
+InsertDeleteFlags nFlags, ScPasteFunc 
nFunction,
 bool bSkipEmpty, bool bAsLink );
 voidFillTabMarked( SCTAB nSrcTab, const ScMarkData& rMark,
-InsertDeleteFlags nFlags, sal_uInt16 nFunction,
+InsertDeleteFlags nFlags, ScPasteFunc 
nFunction,
 bool bSkipEmpty, bool bAsLink );
 
 voidTransliterateText( const ScMarkData& rMultiMark, sal_Int32 
nType );
diff --git a/sc/inc/global.hxx b/sc/inc/global.hxx
index 2af2c8d6..d738b60 100644
--- a/sc/inc/global.hxx
+++ b/sc/inc/global.hxx
@@ -201,12 +201,9 @@ inline InsertDeleteFlags operator~ (const 
InsertDeleteFlags& rhs)
 /// Copy flags for auto/series fill functions: do not touch notes and drawing 
objects.
 const InsertDeleteFlags IDF_AUTOFILL   = IDF_ALL & ~(IDF_NOTE | IDF_OBJECTS);
 
-#define PASTE_NOFUNC0
-#define PASTE_ADD   1
-#define PASTE_SUB   2
-#define PASTE_MUL   3
-#define PASTE_DIV   4
-
+enum class ScPasteFunc {
+NONE, ADD, SUB, MUL, DIV
+};
 // bits for HasAttr
 #define HASATTR_LINES   1
 #define HASATTR_MERGED  2
diff --git a/sc/inc/scabstdlg.hxx b/sc/inc/scabstdlg.hxx
index aab5be0..1fd7e12 100644
--- 

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

2015-09-22 Thread Noel Grandin
 sc/inc/cellsuno.hxx   |6 +++---
 sc/inc/chart2uno.hxx  |2 +-
 sc/source/ui/unoobj/cellsuno.cxx  |9 -
 sc/source/ui/unoobj/chart2uno.cxx |7 +++
 4 files changed, 11 insertions(+), 13 deletions(-)

New commits:
commit fc30b2a6b8ff02a83fd0472179c5b26ae7e5df09
Author: Noel Grandin 
Date:   Tue Sep 22 17:19:01 2015 +0200

convert Link<> to typed

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

diff --git a/sc/inc/cellsuno.hxx b/sc/inc/cellsuno.hxx
index f36c3cf..24f699d 100644
--- a/sc/inc/cellsuno.hxx
+++ b/sc/inc/cellsuno.hxx
@@ -109,9 +109,9 @@ namespace editeng { class SvxBorderLine; }
 
 class ScLinkListener : public SvtListener
 {
-Link<>  aLink;
+Link  aLink;
 public:
-ScLinkListener(const Link<>& rL) : aLink(rL) {}
+ScLinkListener(const Link& rL) : 
aLink(rL) {}
 virtual ~ScLinkListener();
 virtual void Notify( const SfxHint& rHint ) SAL_OVERRIDE;
 };
@@ -190,7 +190,7 @@ private:
 boolbGotDataChangedHint;
 XModifyListenerArr_Impl aValueListeners;
 
-DECL_LINK( ValueListenerHdl, SfxHint* );
+DECL_LINK_TYPED( ValueListenerHdl, const SfxHint&, void );
 
 private:
 voidPaintRanges_Impl( sal_uInt16 nPart );
diff --git a/sc/inc/chart2uno.hxx b/sc/inc/chart2uno.hxx
index 54cfd98..5911765 100644
--- a/sc/inc/chart2uno.hxx
+++ b/sc/inc/chart2uno.hxx
@@ -370,7 +370,7 @@ private:
 
 // Implementation
 voidRefChanged();
-DECL_LINK( ValueListenerHdl, SfxHint* );
+DECL_LINK_TYPED( ValueListenerHdl, const SfxHint&, void );
 
 private:
 ScChart2DataSequence(const ScChart2DataSequence& r) SAL_DELETED_FUNCTION;
diff --git a/sc/source/ui/unoobj/cellsuno.cxx b/sc/source/ui/unoobj/cellsuno.cxx
index c1ed4da..855d659 100644
--- a/sc/source/ui/unoobj/cellsuno.cxx
+++ b/sc/source/ui/unoobj/cellsuno.cxx
@@ -887,7 +887,7 @@ ScLinkListener::~ScLinkListener()
 
 void ScLinkListener::Notify( const SfxHint& rHint )
 {
-aLink.Call( const_cast() );
+aLink.Call( rHint );
 }
 
 static void lcl_CopyProperties( beans::XPropertySet& rDest, 
beans::XPropertySet& rSource )
@@ -2795,10 +2795,10 @@ void SAL_CALL 
ScCellRangesBase::firePropertiesChangeEvent( const uno::Sequence<
 OSL_FAIL("not implemented");
 }
 
-IMPL_LINK( ScCellRangesBase, ValueListenerHdl, SfxHint*, pHint )
+IMPL_LINK_TYPED( ScCellRangesBase, ValueListenerHdl, const SfxHint&, rHint, 
void )
 {
-if ( pDocShell && pHint && dynamic_cast(pHint) &&
-(static_cast(pHint)->GetId() & 
SC_HINT_DATACHANGED))
+if ( pDocShell && dynamic_cast() &&
+(static_cast(rHint).GetId() & 
SC_HINT_DATACHANGED))
 {
 //  This may be called several times for a single change, if several 
formulas
 //  in the range are notified. So only a flag is set that is checked 
when
@@ -2806,7 +2806,6 @@ IMPL_LINK( ScCellRangesBase, ValueListenerHdl, SfxHint*, 
pHint )
 
 bGotDataChangedHint = true;
 }
-return 0;
 }
 
 // XTolerantMultiPropertySet
diff --git a/sc/source/ui/unoobj/chart2uno.cxx 
b/sc/source/ui/unoobj/chart2uno.cxx
index 6335ce6..35e8d31 100644
--- a/sc/source/ui/unoobj/chart2uno.cxx
+++ b/sc/source/ui/unoobj/chart2uno.cxx
@@ -2953,10 +2953,10 @@ void ScChart2DataSequence::Notify( SfxBroadcaster& 
/*rBC*/, const SfxHint& rHint
 }
 }
 
-IMPL_LINK( ScChart2DataSequence, ValueListenerHdl, SfxHint*, pHint )
+IMPL_LINK_TYPED( ScChart2DataSequence, ValueListenerHdl, const SfxHint&, 
rHint, void )
 {
-if ( m_pDocument && pHint && dynamic_cast(pHint) &&
-static_cast(pHint)->GetId() & 
SC_HINT_DATACHANGED)
+if ( m_pDocument && dynamic_cast() &&
+static_cast(rHint).GetId() & 
SC_HINT_DATACHANGED)
 {
 //  This may be called several times for a single change, if several 
formulas
 //  in the range are notified. So only a flag is set that is checked 
when
@@ -2964,7 +2964,6 @@ IMPL_LINK( ScChart2DataSequence, ValueListenerHdl, 
SfxHint*, pHint )
 
 setDataChangedHint(true);
 }
-return 0;
 }
 
 ScChart2DataSequence::ExternalRefListener::ExternalRefListener(
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2015-09-22 Thread Noel Grandin
 sc/source/ui/dbgui/csvtablebox.cxx  |4 ++--
 sc/source/ui/dbgui/scuiasciiopt.cxx |   12 +++-
 sc/source/ui/inc/csvtablebox.hxx|8 
 sc/source/ui/inc/scuiasciiopt.hxx   |4 ++--
 4 files changed, 11 insertions(+), 17 deletions(-)

New commits:
commit f6f4a57b1efb9cfcaa9fbec14744f897cba932e1
Author: Noel Grandin 
Date:   Tue Sep 22 17:11:06 2015 +0200

convert Link<> to typed

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

diff --git a/sc/source/ui/dbgui/csvtablebox.cxx 
b/sc/source/ui/dbgui/csvtablebox.cxx
index 3270504..52dd3eb 100644
--- a/sc/source/ui/dbgui/csvtablebox.cxx
+++ b/sc/source/ui/dbgui/csvtablebox.cxx
@@ -290,13 +290,13 @@ IMPL_LINK_TYPED( ScCsvTableBox, CsvCmdHdl, ScCsvControl&, 
rCtrl, void )
 }
 break;
 case CSVCMD_UPDATECELLTEXTS:
-maUpdateTextHdl.Call( this );
+maUpdateTextHdl.Call( *this );
 break;
 case CSVCMD_SETCOLUMNTYPE:
 maGrid->SetSelColumnType( nParam1 );
 break;
 case CSVCMD_EXPORTCOLUMNTYPE:
-maColTypeHdl.Call( this );
+maColTypeHdl.Call( *this );
 break;
 case CSVCMD_SETFIRSTIMPORTLINE:
 maGrid->SetFirstImportedLine( nParam1 );
diff --git a/sc/source/ui/dbgui/scuiasciiopt.cxx 
b/sc/source/ui/dbgui/scuiasciiopt.cxx
index b45b5d4..0dffe03 100644
--- a/sc/source/ui/dbgui/scuiasciiopt.cxx
+++ b/sc/source/ui/dbgui/scuiasciiopt.cxx
@@ -739,7 +739,7 @@ IMPL_LINK( ScImportAsciiDlg, LbColTypeHdl, ListBox*, 
pListBox )
 return 0;
 }
 
-IMPL_LINK_NOARG(ScImportAsciiDlg, UpdateTextHdl)
+IMPL_LINK_NOARG_TYPED(ScImportAsciiDlg, UpdateTextHdl, ScCsvTableBox&, void)
 {
 sal_Int32 nBaseLine = mpTableBox->GetFirstVisLine();
 sal_Int32 nRead = mpTableBox->GetVisLineCount();
@@ -762,15 +762,11 @@ IMPL_LINK_NOARG(ScImportAsciiDlg, UpdateTextHdl)
 mpTableBox->Execute( CSVCMD_SETLINECOUNT, mnRowPosCount);
 bool bMergeSep = pCkbAsOnce->IsChecked();
 mpTableBox->SetUniStrings( maPreviewLine, maFieldSeparators, mcTextSep, 
bMergeSep);
-
-return 0;
 }
 
-IMPL_LINK( ScImportAsciiDlg, ColTypeHdl, ScCsvTableBox*, pTableBox )
+IMPL_LINK_TYPED( ScImportAsciiDlg, ColTypeHdl, ScCsvTableBox&, rTableBox, void 
)
 {
-OSL_ENSURE( pTableBox, "ScImportAsciiDlg::ColTypeHdl - missing sender" );
-
-sal_Int32 nType = pTableBox->GetSelColumnType();
+sal_Int32 nType = rTableBox.GetSelColumnType();
 sal_Int32 nTypeCount = pLbType->GetEntryCount();
 bool bEmpty = (nType == CSV_TYPE_MULTI);
 bool bEnable = ((0 <= nType) && (nType < nTypeCount)) || bEmpty;
@@ -785,8 +781,6 @@ IMPL_LINK( ScImportAsciiDlg, ColTypeHdl, ScCsvTableBox*, 
pTableBox )
 else if( bEnable )
 pLbType->SelectEntryPos( static_cast< sal_uInt16 >( nType ) );
 pLbType->SetSelectHdl( aSelHdl );
-
-return 0;
 }
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sc/source/ui/inc/csvtablebox.hxx b/sc/source/ui/inc/csvtablebox.hxx
index 23f20ab..2703ebf 100644
--- a/sc/source/ui/inc/csvtablebox.hxx
+++ b/sc/source/ui/inc/csvtablebox.hxx
@@ -51,8 +51,8 @@ private:
 VclPtr   maVScroll;  /// Vertical scroll bar.
 VclPtrmaScrollBox;/// For the bottom right 
edge.
 
-Link<>  maUpdateTextHdl;/// Updates all cell texts.
-Link<>  maColTypeHdl;   /// Handler for exporting 
the column type.
+Link   maUpdateTextHdl;/// Updates all cell texts.
+Link   maColTypeHdl;   /// Handler for exporting 
the column type.
 
 ScCsvColStateVecmaFixColStates; /// Column states in fixed 
width mode.
 ScCsvColStateVecmaSepColStates; /// Column states in 
separators mode.
@@ -113,9 +113,9 @@ public:
 // event handling -
 public:
 /** Sets a new handler for "update cell texts" requests. */
-inline void SetUpdateTextHdl( const Link<>& rHdl ) { 
maUpdateTextHdl = rHdl; }
+inline void SetUpdateTextHdl( const 
Link& rHdl ) { maUpdateTextHdl = rHdl; }
 /** Sets a new handler for "column selection changed" events. */
-inline void SetColTypeHdl( const Link<>& rHdl ) { 
maColTypeHdl = rHdl; }
+inline void SetColTypeHdl( const 
Link& rHdl ) { maColTypeHdl = rHdl; }
 
 protected:
 virtual voidResize() SAL_OVERRIDE;
diff --git a/sc/source/ui/inc/scuiasciiopt.hxx 
b/sc/source/ui/inc/scuiasciiopt.hxx
index e86785f..e43a1fb 100644
--- a/sc/source/ui/inc/scuiasciiopt.hxx
+++ b/sc/source/ui/inc/scuiasciiopt.hxx
@@ -106,8 +106,8 @@ private:
   

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

2015-09-22 Thread Noel Grandin
 sd/source/ui/dlg/RemoteDialogClientBox.hxx |1 -
 1 file changed, 1 deletion(-)

New commits:
commit 43f7445e485eec4151503dbb405ecc2be9749920
Author: Noel Grandin 
Date:   Tue Sep 22 16:51:08 2015 +0200

remove undefined and unused method

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

diff --git a/sd/source/ui/dlg/RemoteDialogClientBox.hxx 
b/sd/source/ui/dlg/RemoteDialogClientBox.hxx
index a00e36e..d3d9b1b 100644
--- a/sd/source/ui/dlg/RemoteDialogClientBox.hxx
+++ b/sd/source/ui/dlg/RemoteDialogClientBox.hxx
@@ -153,7 +153,6 @@ public:
 Rectangle GetEntryRect( const long nPos ) const;
 bool HasActive() { return m_bHasActive; }
 long PointToPos( const Point& rPos );
-void SetScrollHdl( const Link<>& rLink );
 void DoScroll( long nDelta );
 void RecalcAll();
 void RemoveUnlocked();
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 94452] REGRESSIONMessage, showing that file is read-only has gtk text highlighting (not yellow)

2015-09-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94452

Yan Pashkovsky  changed:

   What|Removed |Added

 CC||yanp...@gmail.com

--- Comment #1 from Yan Pashkovsky  ---
Created attachment 118947
  --> https://bugs.documentfoundation.org/attachment.cgi?id=118947=edit
screenshot

-- 
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 94452] New: REGRESSIONMessage, showing that file is read-only has gtk text highlighting (not yellow)

2015-09-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94452

Bug ID: 94452
   Summary: REGRESSIONMessage, showing that file is read-only has
gtk text highlighting (not yellow)
   Product: LibreOffice
   Version: unspecified
  Hardware: Other
OS: Linux (All)
Status: UNCONFIRMED
  Severity: trivial
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: yanp...@gmail.com

User-Agent:   Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML,
like Gecko) Chrome/45.0.2454.93 Safari/537.36
Build Identifier: LibreOffice 5.0.1.2

Message, showing that file is read-only has gtk text highlighting (not yellow).
See the screenshot. On 4.4 there were no such bug

Reproducible: Always

Steps to Reproduce:
1. Open any Read only file (with password) on Linux
2. The bug! Text highlighting and button are greyed (depending on your gtk
theme)



[Information automatically included from LibreOffice]
Locale: ru
Module: SpreadsheetDocument
[Information guessed from browser]
OS: Linux (All)
OS is 64bit: yes


Reset User Profile?No

-- 
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 94452] REGRESSION: Message, showing that file is read-only has gtk text highlighting (not yellow)

2015-09-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94452

Yan Pashkovsky  changed:

   What|Removed |Added

Summary|REGRESSIONMessage, showing  |REGRESSION: Message,
   |that file is read-only has  |showing that file is
   |gtk text highlighting (not  |read-only has gtk text
   |yellow) |highlighting (not yellow)

-- 
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 94425] UI: Triggers to Automatically Open Sidebar

2015-09-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94425

Yousuf (Jay) Philips  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org
 Ever confirmed|0   |1

--- Comment #2 from Yousuf (Jay) Philips  ---
Hi Luke,

As use of the sidebar is a choice for a user, we shouldnt open it unless the
user requests for it to be opened. If the user chooses to use the sidebar, then
it will be open when they go in chart edit mode and they will see the features
it offers. The sidebar wont have all the features available in the dialog, so
users will still be opening the dialog to access such features.

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


[Libreoffice-ux-advise] [Bug 94425] UI: Triggers to Automatically Open Sidebar

2015-09-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94425

Yousuf (Jay) Philips  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org
 Ever confirmed|0   |1

--- Comment #2 from Yousuf (Jay) Philips  ---
Hi Luke,

As use of the sidebar is a choice for a user, we shouldnt open it unless the
user requests for it to be opened. If the user chooses to use the sidebar, then
it will be open when they go in chart edit mode and they will see the features
it offers. The sidebar wont have all the features available in the dialog, so
users will still be opening the dialog to access such features.

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


[Libreoffice-bugs] [Bug 94403] The fixed line spacing and min line spacing settings saved by Microsoft Office 2007 in doc and docx formats can't display on Libreoffice Writer.

2015-09-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94403

Eudien  changed:

   What|Removed |Added

 CC||eud...@hotmail.com

--- Comment #2 from Eudien  ---
Created attachment 118920
  --> https://bugs.documentfoundation.org/attachment.cgi?id=118920=edit
min line spacing are not displayed.

Sorry to forget adding an attachment.

-- 
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 69556] Download site blocked because "SPAM URL's" by my company's Microsoft Forefront TMG

2015-09-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=69556

Adolfo Jayme  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |NOTOURBUG
   Severity|blocker |normal

-- 
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 94427] (Sidebar) Show an indicator for the styles used in the document

2015-09-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94427

Cor Nouws  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||c...@nouenoff.nl
 Ever confirmed|0   |1

--- Comment #1 from Cor Nouws  ---
Hi Bastián,

thanks for your idea.
Since you're pretty much active, maybe you can have a look at issues listed in
bug 90646, and see if your idea already is listed there, and if not, add it?

Regards - Cor

-- 
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 94167] Modifying section and embed fields turn them into '** Expression is faulty **'

2015-09-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94167

--- Comment #7 from Yousuf (Jay) Philips  ---
The patch did solve 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 94415] Please update the el_GR hunspell dictionary

2015-09-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94415

Adolfo Jayme  changed:

   What|Removed |Added

 Whiteboard||target:5.1.0 target:5.0.3

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


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

2015-09-22 Thread Miklos Vajna
 sw/qa/extras/ooxmlimport/data/tdf92454.docx  |binary
 sw/qa/extras/ooxmlimport/ooxmlimport.cxx |9 +
 writerfilter/source/dmapper/DomainMapper.cxx |7 +++
 3 files changed, 16 insertions(+)

New commits:
commit f4badd9a485f32f787d78431ed673e2932973887
Author: Miklos Vajna 
Date:   Tue Sep 22 08:47:03 2015 +0200

tdf#92454 DOCX import: allow overriding para prop from num style in para 
style

Word has a feature like this: a paragraph style can refer to a numbering
style, and both can specify paragraph margins. If that's the case, then
the ones from the paragraph style has priority.

In Writer, the numbering style has priority, so the only chance for
correct import result is to set the margin directly on the paragraph in
this case.

Change-Id: Iff3b03bcc56e0db3a48452c293acf41c91b8f159

diff --git a/sw/qa/extras/ooxmlimport/data/tdf92454.docx 
b/sw/qa/extras/ooxmlimport/data/tdf92454.docx
new file mode 100644
index 000..7042668
Binary files /dev/null and b/sw/qa/extras/ooxmlimport/data/tdf92454.docx differ
diff --git a/sw/qa/extras/ooxmlimport/ooxmlimport.cxx 
b/sw/qa/extras/ooxmlimport/ooxmlimport.cxx
index 0f43ba9..2345c5c 100644
--- a/sw/qa/extras/ooxmlimport/ooxmlimport.cxx
+++ b/sw/qa/extras/ooxmlimport/ooxmlimport.cxx
@@ -2818,6 +2818,15 @@ DECLARE_OOXMLIMPORT_TEST(testIndents, "indents.docx")
 } while (xParaEnum->hasMoreElements());
 }
 
+DECLARE_OOXMLIMPORT_TEST(testTdf92454, "tdf92454.docx")
+{
+// The first paragraph had a large indentation / left margin as inheritance
+// in Word and Writer works differently, and no direct value was set to be
+// explicit.
+uno::Reference xParagraph(getParagraph(1), 
uno::UNO_QUERY);
+// This was beans::PropertyState_DEFAULT_VALUE.
+CPPUNIT_ASSERT_EQUAL(beans::PropertyState_DIRECT_VALUE, 
xParagraph->getPropertyState("ParaFirstLineIndent"));
+}
 
 CPPUNIT_PLUGIN_IMPLEMENT();
 
diff --git a/writerfilter/source/dmapper/DomainMapper.cxx 
b/writerfilter/source/dmapper/DomainMapper.cxx
index 9af39a7..eecbb43 100644
--- a/writerfilter/source/dmapper/DomainMapper.cxx
+++ b/writerfilter/source/dmapper/DomainMapper.cxx
@@ -2042,6 +2042,13 @@ void DomainMapper::sprmWithProps( Sprm& rSprm, 
PropertyMapPtr rContext )
 
 rContext->Insert(PROP_PARA_RIGHT_MARGIN, 
uno::makeAny(nParaRightMargin));
 }
+
+// Indent properties from the paragraph style have priority
+// over the ones from the numbering styles in Word, not in
+// Writer.
+boost::optional oProperty;
+if (pStyleSheetProperties && (oProperty = 
pStyleSheetProperties->getProperty(PROP_PARA_FIRST_LINE_INDENT)))
+rContext->Insert(PROP_PARA_FIRST_LINE_INDENT, 
oProperty->second);
 }
 
 if( pStyleSheetProperties && pStyleSheetProperties->GetListLevel() 
>= 0 )
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 94224] "Textmarke" wird unter Querverweis als "Lesezeichen" bezeichnet (Writer)

2015-09-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94224

Florian Reisinger  changed:

   What|Removed |Added

 Status|NEEDINFO|ASSIGNED
   Assignee|libreoffice-b...@lists.free |reisi...@gmail.com
   |desktop.org |

--- Comment #3 from Florian Reisinger  ---
Hi,

This is a l10n issue

Insert -> Bookmark ==> Einfügen -> Textmarke
This means "Lesezeichen" should be used instead of "Textmarke"

Changed in Pootle Master project, someone might need to confirm

-- 
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 94403] The fixed line spacing and min line spacing settings saved by Microsoft Office 2007 in doc and docx formats can't display on Libreoffice Writer.

2015-09-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94403

--- Comment #3 from Eudien  ---
Created attachment 118921
  --> https://bugs.documentfoundation.org/attachment.cgi?id=118921=edit
the .doc format

-- 
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 90646] Improving the "Style & Formatting" sidebar tab

2015-09-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90646

Bastián Díaz  changed:

   What|Removed |Added

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

--- Comment #21 from Bastián Díaz  ---
Hello, I want an idea in his analysis for Styles and Formatting sidebar. 
See Bug 94427

Intensively using the Styles and Formatting, it becomes confusing to identify
which style (paragraph/character) is used by the current selection, because
that is indicated by the same method of highlighted selection.
In some cases I have to select another style and return to select a paragraph
to ensure that you use the right style, resulting in lost time.

An easy solution is to add an indicator showing which is the style used for the
current selection. https://bugs.documentfoundation.org/attachment.cgi?id=118917

I hope this fits the planned design.

Cheers

-- 
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 94426] EDITING: Severe performance degradation while editing Impress presentations

2015-09-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94426

Alex Thurgood  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #1 from Alex Thurgood  ---
@Thomas : without a series of steps and a test document to enable us to
reproduce this, it is unlikely that we will be able to confirm this bug report.
Please provide detailed steps plus document that results in reproducible
behaviour.

-- 
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 94426] EDITING: Severe performance degradation while editing Impress presentations

2015-09-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94426

Alex Thurgood  changed:

   What|Removed |Added

Summary|EDITING: Severe performance |EDITING: Severe performance
   |degradiation while editing  |degradation while editing
   |Impress presentations   |Impress presentations

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


QA Meeting Minutes - 2015-09-16

2015-09-22 Thread Robinson Tryon
Hi all,

We had a great QA Meeting this past Wednesday and got some good input
about which types of bugs QA should investigate at the Hackfest. I'm
still interested in hearing your suggestions about particular
categories of bugs that deserve our attention, so please send those in
to me or list them here:
https://wiki.documentfoundation.org/Hackfest/Aarhus2015/QA

Minutes:
https://wiki.documentfoundation.org/QA/Meetings/2015/September_16

Our next meeting will be the Wednesday after the conference. I'm sure
we'll have a bunch to talk about!
https://wiki.documentfoundation.org/QA/Meetings/2015/September_30

Thanks,
--R

-- 
Robinson Tryon
QA Engineer - The Document Foundation
LibreOffice Community Outreach Herald
qu...@libreoffice.org
802-379-9482 | IRC: colonelqubit on Freenode
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-qa] QA Meeting Minutes - 2015-09-16

2015-09-22 Thread Robinson Tryon
Hi all,

We had a great QA Meeting this past Wednesday and got some good input
about which types of bugs QA should investigate at the Hackfest. I'm
still interested in hearing your suggestions about particular
categories of bugs that deserve our attention, so please send those in
to me or list them here:
https://wiki.documentfoundation.org/Hackfest/Aarhus2015/QA

Minutes:
https://wiki.documentfoundation.org/QA/Meetings/2015/September_16

Our next meeting will be the Wednesday after the conference. I'm sure
we'll have a bunch to talk about!
https://wiki.documentfoundation.org/QA/Meetings/2015/September_30

Thanks,
--R

-- 
Robinson Tryon
QA Engineer - The Document Foundation
LibreOffice Community Outreach Herald
qu...@libreoffice.org
802-379-9482 | IRC: colonelqubit on Freenode
___
List Name: Libreoffice-qa mailing list
Mail address: Libreoffice-qa@lists.freedesktop.org
Change settings: http://lists.freedesktop.org/mailman/listinfo/libreoffice-qa
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://lists.freedesktop.org/archives/libreoffice-qa/

[Libreoffice-bugs] [Bug 89543] SIDEBAR: Reducing the height of the Line section

2015-09-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89543

--- Comment #9 from Commit Notification 
 ---
Yousuf Philips committed a patch related to this issue.
It has been pushed to "master":

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

tdf#89543 Unhide arrow style drop downs

It will be available in 5.1.0.

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

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


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

2015-09-22 Thread Yousuf Philips
 include/svx/sidebar/LinePropertyPanelBase.hxx |2 
 svx/source/sidebar/line/LinePropertyPanelBase.cxx |   16 ---
 svx/uiconfig/ui/sidebarline.ui|  109 +++---
 3 files changed, 59 insertions(+), 68 deletions(-)

New commits:
commit 050447a30012717643f1d056e0ba614f36e1303f
Author: Yousuf Philips 
Date:   Tue Sep 1 10:34:17 2015 +0400

tdf#89543 Unhide arrow style drop downs

Change-Id: I44c2b93389b88c0c1821ac727b46275bce8b076d
Reviewed-on: https://gerrit.libreoffice.org/18290
Tested-by: Jenkins 
Reviewed-by: Yousuf Philips 

diff --git a/include/svx/sidebar/LinePropertyPanelBase.hxx 
b/include/svx/sidebar/LinePropertyPanelBase.hxx
index 8db5b44..dadb601 100644
--- a/include/svx/sidebar/LinePropertyPanelBase.hxx
+++ b/include/svx/sidebar/LinePropertyPanelBase.hxx
@@ -126,11 +126,9 @@ private:
 //ui controls
 VclPtr   mpFTWidth;
 VclPtr mpTBWidth;
-VclPtr   mpFTStyle;
 VclPtr mpLBStyle;
 VclPtr   mpFTTransparency;
 VclPtr mpMFTransparent;
-VclPtr   mpFTArrow;
 VclPtr mpLBStart;
 VclPtr mpLBEnd;
 VclPtr   mpFTEdgeStyle;
diff --git a/svx/source/sidebar/line/LinePropertyPanelBase.cxx 
b/svx/source/sidebar/line/LinePropertyPanelBase.cxx
index 9f4d20a..f4ee9ca 100644
--- a/svx/source/sidebar/line/LinePropertyPanelBase.cxx
+++ b/svx/source/sidebar/line/LinePropertyPanelBase.cxx
@@ -166,11 +166,9 @@ LinePropertyPanelBase::LinePropertyPanelBase(
 get(mpFTWidth, "widthlabel");
 get(mpTBWidth, "width");
 get(mpTBColor, "color");
-get(mpFTStyle, "stylelabel");
 get(mpLBStyle, "linestyle");
 get(mpFTTransparency, "translabel");
 get(mpMFTransparent, "linetransparency");
-get(mpFTArrow, "arrowlabel");
 get(mpLBStart, "beginarrowstyle");
 get(mpLBEnd, "endarrowstyle");
 get(mpFTEdgeStyle, "cornerlabel");
@@ -193,11 +191,9 @@ void LinePropertyPanelBase::dispose()
 mpFTWidth.clear();
 mpTBWidth.clear();
 mpTBColor.clear();
-mpFTStyle.clear();
 mpLBStyle.clear();
 mpFTTransparency.clear();
 mpMFTransparent.clear();
-mpFTArrow.clear();
 mpLBStart.clear();
 mpLBEnd.clear();
 mpFTEdgeStyle.clear();
@@ -253,9 +249,7 @@ void LinePropertyPanelBase::Initialize()
 mpMFTransparent->SetAccessibleName(OUString("Transparency"));  //wj acc
 
 mpTBWidth->SetAccessibleRelationLabeledBy(mpFTWidth);
-mpLBStyle->SetAccessibleRelationLabeledBy(mpFTStyle);
 mpMFTransparent->SetAccessibleRelationLabeledBy(mpFTTransparency);
-mpLBStart->SetAccessibleRelationLabeledBy(mpFTArrow);
 mpLBEnd->SetAccessibleRelationLabeledBy(mpLBEnd);
 
 aLink = LINK( this, LinePropertyPanelBase, ChangeEdgeStyleHdl );
@@ -275,12 +269,10 @@ void LinePropertyPanelBase::updateLineStyle(bool 
bDisabled, bool bSetOrDefault,
 {
 if(bDisabled)
 {
-mpFTStyle->Disable();
 mpLBStyle->Disable();
 }
 else
 {
-mpFTStyle->Enable();
 mpLBStyle->Enable();
 }
 
@@ -303,12 +295,10 @@ void LinePropertyPanelBase::updateLineDash(bool 
bDisabled, bool bSetOrDefault, c
 {
 if(bDisabled)
 {
-mpFTStyle->Disable();
 mpLBStyle->Disable();
 }
 else
 {
-mpFTStyle->Enable();
 mpLBStyle->Enable();
 }
 
@@ -389,12 +379,10 @@ void LinePropertyPanelBase::updateLineStart(bool 
bDisabled, bool bSetOrDefault,
 {
 if(bDisabled)
 {
-mpFTArrow->Disable();
 mpLBStart->Disable();
 }
 else
 {
-mpFTArrow->Enable();
 mpLBStart->Enable();
 }
 
@@ -417,12 +405,10 @@ void LinePropertyPanelBase::updateLineEnd(bool bDisabled, 
bool bSetOrDefault,
 {
 if(bDisabled)
 {
-mpFTArrow->Disable();
 mpLBEnd->Disable();
 }
 else
 {
-mpFTArrow->Enable();
 mpLBEnd->Enable();
 }
 
@@ -925,6 +911,8 @@ void LinePropertyPanelBase::ActivateControls()
 
 mpGridLineProps->Enable( bLineStyle );
 mpBoxArrowProps->Enable( bLineStyle );
+mpLBStart->Enable( bLineStyle );
+mpLBEnd->Enable( bLineStyle );
 }
 
 void LinePropertyPanelBase::setMapUnit(SfxMapUnit eMapUnit)
diff --git a/svx/uiconfig/ui/sidebarline.ui b/svx/uiconfig/ui/sidebarline.ui
index 52ab635..c706aeb 100644
--- a/svx/uiconfig/ui/sidebarline.ui
+++ b/svx/uiconfig/ui/sidebarline.ui
@@ -1,11 +1,11 @@
 
-
+
 
   
-  
+  
   
 100
-5
+10
 20
   
   
@@ -29,21 +29,27 @@
   
 True
 False
+center
+3
 
-  
+  
+65
+True
 False
-0
-_Style:
-True
+True
+Select 
the style of the beginning arrowhead.
+Select 
the style of the beginning 

[Libreoffice-bugs] [Bug 89543] SIDEBAR: Reducing the height of the Line section

2015-09-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89543

Commit Notification  changed:

   What|Removed |Added

 Whiteboard|| target:5.1.0

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


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

2015-09-22 Thread Miklos Vajna
 sw/inc/swmodule.hxx  |   70 +-
 sw/source/uibase/app/apphdl.cxx  |  120 +++
 sw/source/uibase/app/appopt.cxx  |4 -
 sw/source/uibase/app/swmodul1.cxx|  134 +--
 sw/source/uibase/app/swmodule.cxx|   68 -
 sw/source/uibase/dochdl/swdtflvr.cxx |   32 
 sw/source/uibase/docvw/edtdd.cxx |8 +-
 7 files changed, 218 insertions(+), 218 deletions(-)

New commits:
commit d214f1cb437ad1733cbebc95586d58f0ec19c16e
Author: Miklos Vajna 
Date:   Tue Sep 22 08:46:08 2015 +0200

sw: prefix members of SwModule

Change-Id: I5647e60dfbe5af460a077e1c2adf036fc2bb8037

diff --git a/sw/inc/swmodule.hxx b/sw/inc/swmodule.hxx
index 35d58c6..b2d01cd 100644
--- a/sw/inc/swmodule.hxx
+++ b/sw/inc/swmodule.hxx
@@ -65,47 +65,47 @@ namespace com{ namespace sun{ namespace star{ namespace 
scanner{
 
 class SW_DLLPUBLIC SwModule: public SfxModule, public SfxListener, public 
utl::ConfigurationListener
 {
-OUStringsActAuthor;
+OUStringm_sActAuthor;
 
 // ConfigItems
-SwModuleOptions*pModuleConfig;
-SwMasterUsrPref*pUsrPref;
-SwMasterUsrPref*pWebUsrPref;
-SwPrintOptions* pPrtOpt;
-SwPrintOptions* pWebPrtOpt;
-SwChapterNumRules*  pChapterNumRules;
-SwStdFontConfig*pStdFontConfig;
-SwNavigationConfig* pNavigationConfig;
-SwToolbarConfigItem*pToolbarConfig; //For stacked toolbars. Which one 
was visible?
-SwToolbarConfigItem*pWebToolbarConfig;
-SwDBConfig* pDBConfig;
-svtools::ColorConfig*   pColorConfig;
-SvtAccessibilityOptions* pAccessibilityOptions;
-SvtCTLOptions*  pCTLOptions;
-SvtUserOptions* pUserOptions;
-
-SfxErrorHandler*pErrorHdl;
-
-SwAttrPool  *pAttrPool;
+SwModuleOptions*m_pModuleConfig;
+SwMasterUsrPref*m_pUsrPref;
+SwMasterUsrPref*m_pWebUsrPref;
+SwPrintOptions* m_pPrintOptions;
+SwPrintOptions* m_pWebPrintOptions;
+SwChapterNumRules*  m_pChapterNumRules;
+SwStdFontConfig*m_pStdFontConfig;
+SwNavigationConfig* m_pNavigationConfig;
+SwToolbarConfigItem*m_pToolbarConfig; //For stacked toolbars. Which 
one was visible?
+SwToolbarConfigItem*m_pWebToolbarConfig;
+SwDBConfig* m_pDBConfig;
+svtools::ColorConfig*   m_pColorConfig;
+SvtAccessibilityOptions* m_pAccessibilityOptions;
+SvtCTLOptions*  m_pCTLOptions;
+SvtUserOptions* m_pUserOptions;
+
+SfxErrorHandler*m_pErrorHandler;
+
+SwAttrPool  *m_pAttrPool;
 
 // Current view is held here in order to avoid one's being forced
 // to work via GetActiveView.
 // View is valid until destroyed in Activate or exchanged.
-SwView* pView;
+SwView* m_pView;
 
 // List of all Redline-authors.
-std::vector* pAuthorNames;
+std::vector* m_pAuthorNames;
 
 // DictionaryList listener to trigger spellchecking or hyphenation
 ::com::sun::star::uno::Reference<
-::com::sun::star::linguistic2::XLinguServiceEventListener > 
xLngSvcEvtListener;
+::com::sun::star::linguistic2::XLinguServiceEventListener > 
m_xLinguServiceEventListener;
 ::com::sun::star::uno::Reference<
 ::com::sun::star::scanner::XScannerManager2 >m_xScannerManager;
 ::com::sun::star::uno::Reference<
 ::com::sun::star::linguistic2::XLanguageGuessing >  m_xLanguageGuesser;
 
-boolbAuthorInitialised : 1;
-boolbEmbeddedLoadSave : 1;
+boolm_bAuthorInitialised : 1;
+boolm_bEmbeddedLoadSave : 1;
 
 // Catch hint for DocInfo.
 virtual voidNotify( SfxBroadcaster& rBC, const SfxHint& rHint ) 
SAL_OVERRIDE;
@@ -119,7 +119,7 @@ protected:
 
 public:
 // public Data - used for internal Clipboard / Drag & Drop / XSelection
-SwTransferable  *pDragDrop, *pXSelection;
+SwTransferable  *m_pDragDrop, *m_pXSelection;
 
 TYPEINFO_OVERRIDE();
 SFX_DECL_INTERFACE(SW_INTERFACE_MODULE)
@@ -137,8 +137,8 @@ public:
 virtual ~SwModule();
 
 // Set view for internal use only. It is public only for technical reasons.
-inline  voidSetView(SwView* pVw) { pView = pVw; }
-inline  SwView* GetView() { return pView; }
+inline  voidSetView(SwView* pVw) { m_pView = pVw; }
+inline  SwView* GetView() { return m_pView; }
 
 // Handler for slots.
 voidStateOther(SfxItemSet &);
@@ -161,13 +161,13 @@ public:
 void ApplyUserCharUnit(bool bApplyChar, bool bWeb);  // apply_char_unit
 
 // Create ConfigItems.
-SwModuleOptions*GetModuleConfig()   { return pModuleConfig;}
+SwModuleOptions*GetModuleConfig()   { return m_pModuleConfig;}
 SwPrintOptions* GetPrtOptions(bool bWeb);
 SwChapterNumRules*  

[Libreoffice-bugs] [Bug 94403] The fixed line spacing and min line spacing settings saved by Microsoft Office 2007 in doc and docx formats can't display on Libreoffice Writer.

2015-09-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94403

Eudien  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

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


[Libreoffice-bugs] [Bug 94427] (Sidebar) Show an indicator for the styles used in the document

2015-09-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94427

Bastián Díaz  changed:

   What|Removed |Added

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

-- 
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 94317] letters with different diacritics appears double

2015-09-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94317

--- Comment #2 from Xistik  ---
Created attachment 118940
  --> https://bugs.documentfoundation.org/attachment.cgi?id=118940=edit
файл с ошибкой

-- 
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 94449] New: Changing the paragraph style removes index entries.

2015-09-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94449

Bug ID: 94449
   Summary: Changing the paragraph style removes index entries.
   Product: LibreOffice
   Version: 5.0.1.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: jon.bra...@gmail.com

Bug found in 5.0.1 in Windows, found not to exist in 4.3.3 in Linux

To reproduce:

-Open new document
-Insert > Indexes and Tables > Indexes and Tables
-Change "Type" to "Alphabetical Index"
-OK. A index listing is inserted.

-Some lines below, type a word.
-Select the word, Insert > Indexes and Tables > Entry ...
-click "Insert"
-click "Close"
-Right click on the previously made index listing > "update Index / table"
All is as it should be. The word shows up in the index listing with the page
number.

The problem:
-Click on the word in the text body
-Change the paragraph style in the toolbar.
-Right click on the previously made index listing > "update Index / table"

The index entry has been removed.

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


[Libreoffice-commits] core.git: Branch 'feature/unitver' - sc/uiconfig

2015-09-22 Thread Andrzej Hunt
 sc/uiconfig/scalc/ui/unitsconversiondialog.ui |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit 0f80cdaaa72f7657f7212af2d99c20d22d54769e
Author: Andrzej Hunt 
Date:   Tue Sep 22 19:10:38 2015 +0200

Set default focus on output unit entry box

This allows the user to immediately enter their desired unit -
the input area selection is likely to be used only rarely.

Change-Id: I08de7718ed183db21513d1f46f346da27c3ebbf7

diff --git a/sc/uiconfig/scalc/ui/unitsconversiondialog.ui 
b/sc/uiconfig/scalc/ui/unitsconversiondialog.ui
index 3549282..f7ed3fe 100644
--- a/sc/uiconfig/scalc/ui/unitsconversiondialog.ui
+++ b/sc/uiconfig/scalc/ui/unitsconversiondialog.ui
@@ -243,7 +243,8 @@
 True
 
   
-False
+True
+True
   
 
   
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 94448] New: UI Context Menu Text

2015-09-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94448

Bug ID: 94448
   Summary: UI Context Menu Text
   Product: LibreOffice
   Version: 5.0.1.2 release
  Hardware: Other
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Draw
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: andreas_b...@bluewin.ch

I know, the context menu was simplified, because the options are now available
in the sidebar.

No Problem in general, but in Draw I'm missing the "Text" option (on shapes),
it's not available in the Sidebar, its only available in the "Format" menu.

I cannot simple adjust the text anchor any more.

-- 
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 90020] UI: Bottom of Context Menu sometimes hidden behind taskbar

2015-09-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90020

Andreas B.  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||andreas_b...@bluewin.ch
 Ever confirmed|0   |1

--- Comment #3 from Andreas B.  ---
Confirmed.

I was working today with LibreOffice 5 on Windows 7 and had exactly the same
Issue.
My window was not maximized.

I may have an idea what's the problem:
I have two different screens, and the LibreOffice window was on the smaller
screen.
As shown on the first Screenshot of Gordo, he also has two screens, and he also
has open the LibreOffice Window on the smaller screen.

LibreOffice may use the the height of the whole Desktop instead of using the
height of the current monitor where the menu is displayed?

-- 
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 94317] letters with different diacritics appears double

2015-09-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94317

--- Comment #4 from Xistik  ---
Created attachment 118942
  --> https://bugs.documentfoundation.org/attachment.cgi?id=118942=edit
exported 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 94317] letters with different diacritics appears double

2015-09-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94317

--- Comment #3 from Xistik  ---
Created attachment 118941
  --> https://bugs.documentfoundation.org/attachment.cgi?id=118941=edit
shot of text on a screen

-- 
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 94437] Editing: entries from a deleted alphabetic index reappear when a new index is inserted

2015-09-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94437

--- Comment #2 from Bernard Moreton  ---
Created attachment 118943
  --> https://bugs.documentfoundation.org/attachment.cgi?id=118943=edit
chapter (ODT) awaiting fresh indexing

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


[Libreoffice-commits] core.git: Branch 'feature/unitver' - 2152 commits - accessibility/inc accessibility/source android/Bootstrap android/source avmedia/inc avmedia/source basctl/inc basctl/source ba

2015-09-22 Thread Andrzej Hunt
Rebased ref, commits from common ancestor:
commit c322176e067d97e47138949d3df3e0c1e721a658
Author: Andrzej Hunt 
Date:   Tue Sep 22 14:02:33 2015 +0200

unit-verification: convert Link<> to typed

(fix build after rebasing on master)

Change-Id: Iecbdbf5a854de0b552f6c9074e72da3fa47d91a4

diff --git a/sc/source/ui/inc/unitsconversiondlg.hxx 
b/sc/source/ui/inc/unitsconversiondlg.hxx
index 01116d2..cda8f83 100644
--- a/sc/source/ui/inc/unitsconversiondlg.hxx
+++ b/sc/source/ui/inc/unitsconversiondlg.hxx
@@ -84,7 +84,7 @@ private:
 bool CheckUnitsAreConvertible();
 void PerformConversion();
 
-DECL_LINK( OkClicked,   PushButton* );
+DECL_LINK_TYPED( OkClicked, Button*, void );
 DECL_LINK( GetFocusHandler, Control* );
 DECL_LINK( LoseFocusHandler,void* );
 DECL_LINK( OutputUnitsModified, void* );
diff --git a/sc/source/ui/inc/viewfunc.hxx b/sc/source/ui/inc/viewfunc.hxx
index 3377965..8bcbd27 100644
--- a/sc/source/ui/inc/viewfunc.hxx
+++ b/sc/source/ui/inc/viewfunc.hxx
@@ -371,14 +371,14 @@ private:
 voidNotifyUnitErrorInFormula( const ScAddress& rAddress,
   ScDocument* pDoc,
   const sc::units::FormulaStatus& 
rStatus);
-DECL_LINK( EditUnitErrorFormulaHandler, PushButton* );
+DECL_LINK_TYPED( EditUnitErrorFormulaHandler, Button*, void);
 
 voidNotifyUnitConversionRecommended( const ScAddress& 
rCellAddress,
  ScDocument* pDoc,
  const OUString& 
sHeaderUnit,
  const ScAddress& 
rHeaderAddress,
  const OUString& sCellUnit 
);
-DECL_LINK( UnitConversionRecommendedHandler, UnitConversionPushButton* );
+DECL_LINK_TYPED( UnitConversionRecommendedHandler, Button*, void);
 };
 
 #endif
diff --git a/sc/source/ui/miscdlgs/unitsconversiondlg.cxx 
b/sc/source/ui/miscdlgs/unitsconversiondlg.cxx
index a3a6744..cea5405 100644
--- a/sc/source/ui/miscdlgs/unitsconversiondlg.cxx
+++ b/sc/source/ui/miscdlgs/unitsconversiondlg.cxx
@@ -192,26 +192,25 @@ bool ScUnitsConversionDialog::CheckUnitsAreConvertible()
 return bCompatibleInputFound;
 }
 
-IMPL_LINK( ScUnitsConversionDialog, OkClicked, PushButton*, /*pButton*/ )
+IMPL_LINK_TYPED( ScUnitsConversionDialog, OkClicked, Button*, /*pButton*/, 
void )
 {
 if (!CheckUnitsAreConvertible())
 {
 // As we have now clicked on this button, the output units entry
 // box has lost focus, so the "no conversion possible" warning
 // will already be shown by the OutputUnitsComplete handler.
-return 0;
+return;
 }
 
 PerformConversion();
 Close();
-return 0;
 }
 
 IMPL_LINK( ScUnitsConversionDialog, GetFocusHandler, Control*, pCtrl )
 {
 Edit* pEdit = NULL;
 
-if( (pCtrl == (Control*) mpInputRangeEdit) || (pCtrl == (Control*) 
mpInputRangeButton) ) {
+if( (pCtrl == mpInputRangeEdit.get()) || (pCtrl == 
mpInputRangeButton.get()) ) {
 pEdit = mpInputRangeEdit;
 }
 
diff --git a/sc/source/ui/view/viewfunc.cxx b/sc/source/ui/view/viewfunc.cxx
index d1ce472..d3db634 100644
--- a/sc/source/ui/view/viewfunc.cxx
+++ b/sc/source/ui/view/viewfunc.cxx
@@ -2897,9 +2897,8 @@ void ScViewFunc::NotifyUnitErrorInFormula( const 
ScAddress& rAddress, ScDocument
 pInfoBar->addButton( pButtonGotoCell);
 }
 
-IMPL_LINK( ScViewFunc, EditUnitErrorFormulaHandler, PushButton*, pButton )
+IMPL_LINK_TYPED( ScViewFunc, EditUnitErrorFormulaHandler, Button*, pButton, 
void )
 {
-
 OUString sAddress;
 {
 // keep pInfoBar within this scope only as we'll be deleting it just 
below (using RemoveInfoBar)
@@ -2920,8 +2919,6 @@ IMPL_LINK( ScViewFunc, EditUnitErrorFormulaHandler, 
PushButton*, pButton )
 // UI making it a bit easier to see where the data is coming from).
 ScModule* pScMod = SC_MOD();
 pScMod->SetInputMode( SC_INPUT_TABLE );
-
-return 0;
 }
 
 /*
@@ -2995,14 +2992,20 @@ void ScViewFunc::NotifyUnitConversionRecommended( const 
ScAddress& rCellAddress,
 pInfoBar->addButton( pButtonConvertCell );
 }
 
-IMPL_LINK( ScViewFunc, UnitConversionRecommendedHandler, 
UnitConversionPushButton*, pButton )
+IMPL_LINK_TYPED( ScViewFunc, UnitConversionRecommendedHandler, Button*, 
pButton, void )
 {
 // Do conversion first, and only then remove the infobar as we need data 
from the infobar
 // (specifically from the pushbutton) to do the conversion.
 #ifdef ENABLE_CALC_UNITVERIFICATION
+
+// We can't pass in a UnitConversionPushButton* as this would require 
template-parameter downcasting
+// (which is illegal) when setting pButtonConvertCell->SetClickHdl (which 
expects a
+// Link). Instead we can 

[Libreoffice-bugs] [Bug 94437] Editing: entries from a deleted alphabetic index reappear when a new index is inserted

2015-09-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94437

--- Comment #3 from Bernard Moreton  ---
Created attachment 118944
  --> https://bugs.documentfoundation.org/attachment.cgi?id=118944=edit
Concrdance file for test alphabetic indexing

-- 
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 94349] Add italics to Quotations paragraph style

2015-09-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94349

--- Comment #3 from Heiko Tietze  ---
Some years ago I had to write in APA style. It changed over the years but at
least it has a very detailed description. Here is a link to long quotations (in
contrast to what they call "short quotations")
https://owl.english.purdue.edu/owl/resource/560/02/

Place direct quotations that are 40 words, or longer, in a free-standing block
of typewritten lines, and omit quotation marks. Start the quotation on a new
line, indented 1/2 inch from the left margin, i.e., in the same place you would
begin a new paragraph. Type the entire quotation on the new margin, and indent
the first line of any subsequent paragraph within the quotation 1/2 inch from
the new margin. Maintain double-spacing throughout. The parenthetical citation
should come after the closing punctuation mark.

Most likly there are other styles that demand italic formatting for quotations.

-- 
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 94411] Editing alphabetic index allows page references Np, Npp - not UK english usage

2015-09-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94411

--- Comment #3 from Bernard Moreton  ---
On going to Insert Index/Table, Type 'Alphabetical Index', tghere is an option
to "Combine identical entries with p or pp".

This results, for example in
INDEX_ENTRY, 3p,17pp

In UK English, the first is a monetary value, and the second is an abbreviation
for "17 pages".  The usage should be (in this instance) 3f,17ff.

UK English practice also allows for (eg) p3 or pp17ff/pp17-19

I cannot find any US examples to support the trailing 'p'/'pp'.  Canadian
pracice seems to be the same as in the UK.

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


Re: OS checks with configuration time DLOPEN_NEEDS_LIBDL

2015-09-22 Thread Norbert Thiebaud
On Tue, Sep 22, 2015 at 6:31 AM, Richard PALO  wrote:
> Since GUIBASE was replaced with the equivalent OS checks, there seems
> to be a bit of abandon in keeping multiple OSes up to snuff.
>
> in https://gerrit.libreoffice.org/#/c/18591/  I took our base in pkgsrc and
> given the biggest difference in unix systems is the need for -ldl or not for 
> dlopen,
>
> I added a configuration check for DLOPEN_NEEDS_LIBDL and updated a number of 
> the existing
> OS checks to check simultaneously for, among others, %BSD and SOLARIS in 
> addition to LINUX.
>
> It would be nice to get some review on this approach.

Jenkins got us a first review. the patch break on windows because it seems that
AC_SEARCH_LIBS([dlopen],
trigger a search of gcc...

is there any chance that is relevant for windows ? if not the 'if
test' that out of configure ofr cygwin case (and prolly for macosx
case as at bes it will work , but it can pick up accidentally some
crap if the mac has some extra stuff installed)

that being said couldn't this be done without putting all that logic
in the 'client' makefile.

and just have $(if $(DLOPEN_NEEDS_LIBDL), -ldl) logic in gbuild and
define a gb_LIBDL defined to -ldl or empty (most likely in
RepositoryExternal.mk or in platform/* not sure on top of my head
which is the cleanest.

and then have for example

$(eval $(call gb_Executable_add_libs,gengal,\
$(gb_LIBDL) \
-lpthread \

(and yes that could be extended to the few place that do the same kind
of exercise with lpthread... and there is maybe an even better way but
one step at the time...)


also you may want to split the part of the patch that touch
Repositoty.mk as that seems somewhat orthogonal with the -ldl stuff

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


[Libreoffice-ux-advise] [Bug 94349] Add italics to Quotations paragraph style

2015-09-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94349

--- Comment #3 from Heiko Tietze  ---
Some years ago I had to write in APA style. It changed over the years but at
least it has a very detailed description. Here is a link to long quotations (in
contrast to what they call "short quotations")
https://owl.english.purdue.edu/owl/resource/560/02/

Place direct quotations that are 40 words, or longer, in a free-standing block
of typewritten lines, and omit quotation marks. Start the quotation on a new
line, indented 1/2 inch from the left margin, i.e., in the same place you would
begin a new paragraph. Type the entire quotation on the new margin, and indent
the first line of any subsequent paragraph within the quotation 1/2 inch from
the new margin. Maintain double-spacing throughout. The parenthetical citation
should come after the closing punctuation mark.

Most likly there are other styles that demand italic formatting for quotations.

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


[Libreoffice-bugs] [Bug 94443] Optellen/Aftrekken in Calc

2015-09-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94443

--- Comment #2 from MM  ---
Shouldn't that be =Als(C2;A2+C2) or =IF(C2,A2+C2) ???

-- 
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 91663] Brackets for the plural are not used consistently in the german version

2015-09-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91663

Andreas B.  changed:

   What|Removed |Added

   Priority|medium  |low
 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #1 from Andreas B.  ---
That's right:

On right click on a column its "Zeile(n)" (Row(s)), in the menu "Einfügen"
(Insert) its "Zeilen" (Rows).

With "Spalten" (Columns) it seems always to be "Spalten".

I think the brackets should be removed, and it should be called "Zeilen"
everywhere.

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


[Libreoffice-commits] core.git: 5 commits - desktop/inc desktop/source framework/inc framework/source include/svtools include/test include/vcl sd/source svtools/source test/source vcl/source

2015-09-22 Thread Noel Grandin
 desktop/inc/app.hxx   |2 -
 desktop/source/app/app.cxx|4 +-
 framework/inc/dispatch/closedispatcher.hxx|2 -
 framework/source/dispatch/closedispatcher.cxx |8 ++---
 framework/source/services/autorecovery.cxx|   15 +--
 include/svtools/acceleratorexecute.hxx|2 -
 include/test/bootstrapfixture.hxx |2 -
 include/vcl/animate.hxx   |3 --
 include/vcl/bitmap.hxx|   31 ---
 include/vcl/bitmapex.hxx  |6 
 include/vcl/cvtgrf.hxx|8 ++---
 include/vcl/evntpost.hxx  |   14 ++
 include/vcl/gdimtf.hxx|3 --
 include/vcl/svapp.hxx |3 +-
 sd/source/ui/dlg/vectdlg.cxx  |7 ++---
 sd/source/ui/inc/vectdlg.hxx  |2 -
 svtools/source/misc/acceleratorexecute.cxx|   13 +++--
 test/source/bootstrapfixture.cxx  |6 ++--
 vcl/source/app/svapp.cxx  |2 -
 vcl/source/gdi/animate.cxx|6 ++--
 vcl/source/gdi/bitmap3.cxx|6 ++--
 vcl/source/gdi/bitmap4.cxx|   35 --
 vcl/source/gdi/bitmapex.cxx   |4 +-
 vcl/source/gdi/cvtgrf.cxx |8 ++---
 vcl/source/gdi/gdimtf.cxx |   11 +---
 vcl/source/gdi/impvect.cxx|   16 ++-
 vcl/source/gdi/impvect.hxx|4 +-
 vcl/source/helper/evntpost.cxx|   11 +++-
 28 files changed, 95 insertions(+), 139 deletions(-)

New commits:
commit 4d1d60719802ae34a9fc381c8f202ca80b7388ad
Author: Noel Grandin 
Date:   Mon Sep 21 11:18:05 2015 +0200

remove unused Link<> field

Change-Id: Ia07a1db94bacad8c1d9c108ee6e2ac2f82b6581f

diff --git a/include/vcl/gdimtf.hxx b/include/vcl/gdimtf.hxx
index 4750933..9809ca6 100644
--- a/include/vcl/gdimtf.hxx
+++ b/include/vcl/gdimtf.hxx
@@ -22,7 +22,6 @@
 
 #include 
 #include 
-#include 
 #include 
 #include 
 #include 
@@ -69,7 +68,6 @@ private:
 
 MapMode aPrefMapMode;
 SizeaPrefSize;
-Link<>  aHookHdlLink;
 GDIMetaFile*pPrev;
 GDIMetaFile*pNext;
 VclPtr pOutDev;
@@ -111,7 +109,6 @@ private:
 protected:
 
 voidLinker( OutputDevice* pOut, bool bLink 
);
-longHook();
 
 public:
 GDIMetaFile();
diff --git a/vcl/source/gdi/gdimtf.cxx b/vcl/source/gdi/gdimtf.cxx
index 3201a72..4cd5334 100644
--- a/vcl/source/gdi/gdimtf.cxx
+++ b/vcl/source/gdi/gdimtf.cxx
@@ -126,7 +126,6 @@ GDIMetaFile::GDIMetaFile( const GDIMetaFile& rMtf ) :
 nCurrentActionElement( rMtf.nCurrentActionElement ),
 aPrefMapMode( rMtf.aPrefMapMode ),
 aPrefSize   ( rMtf.aPrefSize ),
-aHookHdlLink( rMtf.aHookHdlLink ),
 pPrev   ( rMtf.pPrev ),
 pNext   ( rMtf.pNext ),
 pOutDev ( NULL ),
@@ -206,7 +205,6 @@ GDIMetaFile& GDIMetaFile::operator=( const GDIMetaFile& 
rMtf )
 
 aPrefMapMode = rMtf.aPrefMapMode;
 aPrefSize = rMtf.aPrefSize;
-aHookHdlLink = rMtf.aHookHdlLink;
 pPrev = rMtf.pPrev;
 pNext = rMtf.pNext;
 pOutDev = NULL;
@@ -295,11 +293,6 @@ void GDIMetaFile::Linker( OutputDevice* pOut, bool bLink )
 }
 }
 
-long GDIMetaFile::Hook()
-{
-return aHookHdlLink.Call( this );
-}
-
 void GDIMetaFile::Record( OutputDevice* pOut )
 {
 if( bRecord )
@@ -325,7 +318,7 @@ void GDIMetaFile::Play( GDIMetaFile& rMtf, size_t nPos )
 
 for( size_t nCurPos = nCurrentActionElement; nCurPos < nPos; nCurPos++ 
)
 {
-if( !Hook() && pAction )
+if( pAction )
 {
 pAction->Duplicate();
 rMtf.AddAction( pAction );
@@ -361,7 +354,7 @@ void GDIMetaFile::Play( OutputDevice* pOut, size_t nPos )
 size_t  i  = 0;
 for( size_t nCurPos = nCurrentActionElement; nCurPos < nPos; 
nCurPos++ )
 {
-if( !Hook() && pAction )
+if( pAction )
 {
 if( pAction->GetType() == MetaActionType::COMMENT &&
 static_cast(pAction)->GetComment() 
== "DELEGATE_PLUGGABLE_RENDERER" )
commit 1c061348aa573967132349736675f81bcf5e46af
Author: Noel Grandin 
Date:   Mon Sep 21 10:43:11 2015 +0200

convert Link<> to typed

and drop an unused parameter

Change-Id: I2f3bc15e4168103a6cb2d19807d291d8da24387e

diff --git a/include/vcl/bitmap.hxx b/include/vcl/bitmap.hxx
index b11fb64..64ff2dc 100644
--- a/include/vcl/bitmap.hxx
+++ b/include/vcl/bitmap.hxx
@@ -624,15 +624,11 @@ public:
 Whether the 

[Libreoffice-bugs] [Bug 93044] Calc crashes after print preview (PRINTING)

2015-09-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93044

vmichard  changed:

   What|Removed |Added

 CC||vmich...@club-internet.fr

--- Comment #5 from vmichard  ---
Created attachment 118948
  --> https://bugs.documentfoundation.org/attachment.cgi?id=118948=edit
debugging report

-- 
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 93044] Calc crashes after print preview (PRINTING)

2015-09-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93044

vmichard  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #6 from vmichard  ---
I also experienced repeated crashes of Calc. You may try to reproduce it,
following these few steps :

- create a chart;
- type any text in any cell, then select the text you just typed or only a part
of it, and copy it (don't copy the entire cell);
- paste in any other cell;
- do a print preview.

On my machine, Calc systematically crashes. (There's no problem after I copied
and pasted entire cells; only after I copied the text or formula within a cell
to another cell !)

Renaming the user profile folder didn't solve the problem. Unistalling
LibreOffice, deleting any left LibreOffice folder, and then doing a fresh
install of LibreOffice didn't solve it neither.

I first noticed the problem with LibreOffice 5.0.1 official release, either on
Windows XP SP3 (running on an x86 computer) and Windows 7 Pro on a 64-bit
machine. The problem still remains with Version: 5.0.2.2
Build ID: 37b43f919e4de5eeaca9b9755ed688758a8251fe
Locale : fr-FR (fr_FR)

I attached WinDBG exception analysis.

-- 
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 94403] The fixed line spacing and min line spacing settings saved by Microsoft Office 2007 in doc and docx formats can't display on Libreoffice Writer.

2015-09-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94403

--- Comment #7 from Eudien  ---
Created attachment 118955
  --> https://bugs.documentfoundation.org/attachment.cgi?id=118955=edit
the .docx format

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


[Libreoffice-commits] dev-tools.git: helpauthoring/filter

2015-09-22 Thread Regina Henschel
 helpauthoring/filter/xmlhelp2soffice.xsl |6 ++
 1 file changed, 2 insertions(+), 4 deletions(-)

New commits:
commit 406a2a01987cd2425b67a0da98ba404c0631cf99
Author: Regina Henschel 
Date:   Tue Sep 22 17:02:06 2015 +0200

tdf#94167 Modifying fields turm them into Expression is faulty

The root cause of the error is, that xmlhelp2soffice.xsl has produced a 
wrong
nesting of office:text and text:variable-decls. That has caused, that the
field edit dialog does not know the format of the field and therefore does
not accept text format. The patch corrects the nesting.

Change-Id: I90a1cfee41a503a4a75e7b71d7e4688ae58847d5
Reviewed-on: https://gerrit.libreoffice.org/18766
Reviewed-by: Adolfo Jayme Barrientos 
Tested-by: Adolfo Jayme Barrientos 

diff --git a/helpauthoring/filter/xmlhelp2soffice.xsl 
b/helpauthoring/filter/xmlhelp2soffice.xsl
index 67a6357..3083b4d 100644
--- a/helpauthoring/filter/xmlhelp2soffice.xsl
+++ b/helpauthoring/filter/xmlhelp2soffice.xsl
@@ -195,11 +195,11 @@ FILTER FOR OPENOFFICE.ORG 2+
 
 
 
-
+
 
 
 
-
+
 
 
 
@@ -273,9 +273,7 @@ BODY, SEE HEADER
 ##
 -->
 
-
 
-
 
 
 

[Libreoffice-bugs] [Bug 94445] Scroll horizontally when mouse focus in on horizontal scroll bar

2015-09-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94445

Adolfo Jayme  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #1 from Adolfo Jayme  ---
Agreed, thanks for filing. This has been requested before…

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

-- 
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 35582] scrolling with mouse in horizontal scroll bar

2015-09-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=35582

Adolfo Jayme  changed:

   What|Removed |Added

 CC||p...@pfortin.com

--- Comment #6 from Adolfo Jayme  ---
*** Bug 94445 has been marked as a duplicate of this bug. ***

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


[Libreoffice-ux-advise] [Bug 94349] Add italics to Quotations paragraph style

2015-09-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94349

--- Comment #5 from Yousuf (Jay) Philips  ---
(In reply to Adolfo Jayme from comment #4)
> (In reply to Yousuf (Jay) Philips from comment #2)
> > If we removed italics from the Quotation character style, what would make it
> > different from regular text by default?
> 
> The indentation, for example. Or the font size. That’s what the English
> Wikipedia does.

I'm not following. What indentation is there for inline quotation character
style, when character styles dont have paragraph properties. Do you have an
example wikipedia page link where i can see this.

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


[Libreoffice-bugs] [Bug 94349] Add italics to Quotations paragraph style

2015-09-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94349

--- Comment #5 from Yousuf (Jay) Philips  ---
(In reply to Adolfo Jayme from comment #4)
> (In reply to Yousuf (Jay) Philips from comment #2)
> > If we removed italics from the Quotation character style, what would make it
> > different from regular text by default?
> 
> The indentation, for example. Or the font size. That’s what the English
> Wikipedia does.

I'm not following. What indentation is there for inline quotation character
style, when character styles dont have paragraph properties. Do you have an
example wikipedia page link where i can see 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 94403] The fixed line spacing and min line spacing settings saved by Microsoft Office 2007 in doc and docx formats can't display on Libreoffice Writer.

2015-09-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94403

--- Comment #8 from Yousuf (Jay) Philips  ---
Created attachment 118956
  --> https://bugs.documentfoundation.org/attachment.cgi?id=118956=edit
LO vs Word Viewer

Hi Eudien,

Thank you for your assistance. I can confirm that attachment 118954 and
attachment 118955 show in the paragraph dialog atleast 30pt in the first
paragraph and fixed 46pt in the second paragraph, but they dont visually show
this on the page.

-- 
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 94403] Fixed and atleast minimum line spacing not rendered on page

2015-09-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94403

Yousuf (Jay) Philips  changed:

   What|Removed |Added

   Hardware|x86 (IA32)  |All
Version|4.4.5.2 release |Inherited From OOo
Summary|The fixed line spacing and  |Fixed and atleast minimum
   |min line spacing settings   |line spacing not rendered
   |saved by Microsoft Office   |on page
   |2007 in doc and docx|
   |formats can't display on|
   |Libreoffice Writer. |
 OS|Windows (All)   |All

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


[Libreoffice-bugs] [Bug 94167] Modifying section and embed fields turn them into '** Expression is faulty **'

2015-09-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94167

Adolfo Jayme  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED
   Assignee|libreoffice-b...@lists.free |rb.hensc...@t-online.de
   |desktop.org |

--- Comment #8 from Adolfo Jayme  ---
Regina’s patch was pushed:
https://gerrit.libreoffice.org/gitweb?p=dev-tools.git;a=commitdiff;h=406a2a01987cd2425b67a0da98ba404c0631cf99

-- 
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 93580] META: HELPAUTHORING Issues

2015-09-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93580
Bug 93580 depends on bug 94167, which changed state.

Bug 94167 Summary: Modifying section and embed fields turn them into '** 
Expression is faulty **'
https://bugs.documentfoundation.org/show_bug.cgi?id=94167

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 94448] UI: Draw’s context menu lacks Text option

2015-09-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94448

Adolfo Jayme  changed:

   What|Removed |Added

   Keywords||regression
 Status|UNCONFIRMED |NEW
 CC||philip...@hotmail.com
Summary|UI Context Menu Text|UI: Draw’s context menu
   ||lacks Text option
 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 94403] The fixed line spacing and min line spacing settings saved by Microsoft Office 2007 in doc and docx formats can't display on Libreoffice Writer.

2015-09-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94403

--- Comment #6 from Eudien  ---
Created attachment 118954
  --> https://bugs.documentfoundation.org/attachment.cgi?id=118954=edit
fixed line spacing

Sorry about the trouble. Add attachment with fixed line spacing, and forget to
mention that it appears only in Windows Version that the settings are not
displayed.

-- 
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 94349] Add italics to Quotations paragraph style

2015-09-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94349

V Stuart Foote  changed:

   What|Removed |Added

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

--- Comment #6 from V Stuart Foote  ---
(In reply to Adolfo Jayme from comment #4)
> (In reply to Heiko Tietze from comment #3)
> > Some years ago I had to write in APA style. It changed over the years but at
> > least it has a very detailed description. Here is a link to long quotations
> > (in contrast to what they call "short quotations")
> > https://owl.english.purdue.edu/owl/resource/560/02/
> 
> Thanks a lot for that. The APA style is used in many countries; so while we
> don’t have a template for each style, maybe we can forget what I said in
> comment 1 and keep italics in Quotations by default.

Well we could get really ambitious and integrate *ALL* the formatting styles
from Zotero

https://www.zotero.org/styles

But suspect the full scope, and licensing (AGPLv3), of that means it is best
left as an extension.  Still ideas for what users might find useful.  I write
mostly in Chicago/Turabian ;-)

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


[Libreoffice-ux-advise] [Bug 94349] Add italics to Quotations paragraph style

2015-09-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94349

V Stuart Foote  changed:

   What|Removed |Added

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

--- Comment #6 from V Stuart Foote  ---
(In reply to Adolfo Jayme from comment #4)
> (In reply to Heiko Tietze from comment #3)
> > Some years ago I had to write in APA style. It changed over the years but at
> > least it has a very detailed description. Here is a link to long quotations
> > (in contrast to what they call "short quotations")
> > https://owl.english.purdue.edu/owl/resource/560/02/
> 
> Thanks a lot for that. The APA style is used in many countries; so while we
> don’t have a template for each style, maybe we can forget what I said in
> comment 1 and keep italics in Quotations by default.

Well we could get really ambitious and integrate *ALL* the formatting styles
from Zotero

https://www.zotero.org/styles

But suspect the full scope, and licensing (AGPLv3), of that means it is best
left as an extension.  Still ideas for what users might find useful.  I write
mostly in Chicago/Turabian ;-)

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


[Libreoffice-bugs] [Bug 94426] EDITING: Severe performance degradation while editing Impress presentations

2015-09-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94426

--- Comment #2 from Thorsten Wagner  ---
It's difficult to determine a nonambiguous sequence, but I'll try to do so and
come back to you. Generally the issue can be observed after working for a
while, e.g. after 10 - 20 minutes.

(In reply to Alex Thurgood from comment #1)
> @Thomas : without a series of steps and a test document to enable us to
> reproduce this, it is unlikely that we will be able to confirm this bug
> report. Please provide detailed steps plus document that results in
> reproducible behaviour.

-- 
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 93044] Calc crashes after print preview (PRINTING)

2015-09-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93044

vmichard  changed:

   What|Removed |Added

   Hardware|Other   |All

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


[Libreoffice-bugs] [Bug 94456] New: FILEOPEN: RTF - Heading position incorrect

2015-09-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94456

Bug ID: 94456
   Summary: FILEOPEN: RTF - Heading position incorrect
   Product: LibreOffice
   Version: 4.4.5.2 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: n...@bollow.ch

Created attachment 118950
  --> https://bugs.documentfoundation.org/attachment.cgi?id=118950=edit
simple test document

Steps:
1) Open the attached simple test document
2) Notice that the start of the heading and the text are aligned
3) Save it as an RTF
4) Quit Libreoffice, start it again
5) Reopen RTF
6) Notice that the heading has significantly moved to the right

This is a regression and a fileopen issue, as the RTF file opens correctly
in LibreOffice 4.2.8.2.

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


[Libreoffice-bugs] [Bug 75252] UI: Allow to select a new default for Edit->Paste in Edit->Paste Special

2015-09-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=75252

Cor Nouws  changed:

   What|Removed |Added

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

--- Comment #3 from Cor Nouws  ---
This is related in the sense that it is about images and pasting. But the other
issue is about the choice to embed in stead of to link. And this issue is to
choose to remember the latest choice in Paste special.
Enough difference to allow for a separate issue, IMO.

-- 
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 94455] New: Problem with color scale conditional formatting, include all different intervals as a only one interval

2015-09-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94455

Bug ID: 94455
   Summary: Problem with color scale conditional formatting,
include all different intervals as a only one interval
   Product: LibreOffice
   Version: 5.0.1.2 release
  Hardware: Other
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: jcasano...@gmail.com

Created attachment 118949
  --> https://bugs.documentfoundation.org/attachment.cgi?id=118949=edit
Compare Color Scale

When I select different intervals for color scale, it is calculate as maximum
and minimum value from all intervals includes. Later, I saved the changes and
close calc, then color scale is OK.

-- 
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 93044] Calc crashes after print preview (PRINTING)

2015-09-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93044

m.a.riosv  changed:

   What|Removed |Added

   Keywords||regression
   Priority|medium  |high
 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #7 from m.a.riosv  ---
Thanks for details about how to reproduce the issue.

I can reproduce now.
Win10x64
Version: 5.0.2.2 (x64) Build ID: 37b43f919e4de5eeaca9b9755ed688758a8251fe
Version: 5.1.0.0.alpha1+ (x64) Build ID:
4abd8fe7cc30e305169cef8027209a7cb66e29f1
   TinderBox: Win-x86_64@62-TDF, Branch:MASTER, Time: 2015-09-19_00:13:40


Last without the issue for me.
Version: 4.4.6.0.0+ Build ID: 7785e87aa9fc706b1474e6a480affca067542f5d
TinderBox: Win-x86@51-TDF, Branch:libreoffice-4-4, Time: 2015-09-02_22:14:25

-- 
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 73833] [l10n] No translation in quicklist on Ubuntu for Unity entries

2015-09-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=73833

--- Comment #6 from Yan Pashkovsky  ---
@Jean

libreoffice.desktop is tranlsatable,  this file is just absent i pootle.
Here is how it is translated with clementine.desktop
...
[Next Shortcut Group]
Name=Next
Exec=clementine --next
TargetEnvironment=Unity
Name[af]=Volgende
Name[be]=Далей
Name[bg]=Следваща
...
[Previous Shortcut Group]
Name=Previous
Exec=clementine --previous
TargetEnvironment=Unity
Name[af]=Vorige
Name[be]=Папярэдні
Name[bg]=Предишна


So there are two ways to fix it, translate it manually in git (I didn't find
this file in sources) via google translate or adapt it to libtext and
consequently to LO-pootle

-- 
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 94446] Report exception when parameter dialog is cancelled

2015-09-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94446

Julien Nabet  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||serval2...@yahoo.fr
 Ever confirmed|0   |1

--- Comment #3 from Julien Nabet  ---
On pc Debian x86-64 with master sources updated today, I could reproduce this.

I also noticed this on console:
warn:legacy.osl:28607:1:xmloff/source/style/xmlimppr.cxx:678: Exception caught;
style may not be imported correctly.
warn:legacy.osl:28607:1:xmloff/source/core/xmlerror.cxx:181: An error or a
warning has occurred during XML import/export!
Error-Id: 0x20040001
Flags: 2 ERROR
Class: 4 API
Number: 1
Parameters:
0: FooterBackGraphicURL
Exception-Message: The given value cannot be converted to the required property
type.
(property name "FooterBackGraphicURL", found value type "void", required
property type "string")
Position:
Public Identifier: 
System Identifier: 
Row, Column: 2,2346


warn:legacy.osl:28607:1:dbaccess/source/ui/uno/dbinteraction.cxx:66:
BasicInteractionHandler::BasicInteractionHandler: enabling legacy behavior,
there should be no clients of this anymore!

-- 
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 94454] New: No Help for Template Manager Available

2015-09-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94454

Bug ID: 94454
   Summary: No Help for Template Manager Available
   Product: LibreOffice
   Version: 5.0.1.2 release
  Hardware: Other
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: harald.koes...@mail.de

I did not find any Help for the Template Manager. I would expect the following
possibilities to open a help about the Template Manager:
(a) Open LibreOffice Help > Contents > Common Help topics > Template Manager
(b) Open LibreOffice Help > LibreOffice Writer, Calc, Impress or Draw > Index >
Template Manager
(c) With F1 when the Template Manager dialogue is displayed.
(d) With a Help button inside the Template Manager itself.

-- 
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 94453] Printing begins outside printing margin

2015-09-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94453

jdhane...@gmail.com changed:

   What|Removed |Added

Version|unspecified |4.2.8.2 release

-- 
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 94427] (Sidebar) Show an indicator for the styles used in the document

2015-09-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94427

--- Comment #4 from Cor Nouws  ---
(In reply to Bastián Díaz from comment #3)
> 
> I do not understand at all.

Sorry for my bad explanation.
Bug 90646 already mentions a lot of issues. Before adding yours, you can check
if it already exists.

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


[Libreoffice-bugs] [Bug 94433] Add arbitrary glue points to gallery objects

2015-09-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94433

Regina Henschel  changed:

   What|Removed |Added

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

--- Comment #2 from Regina Henschel  ---
What kind of objects do you use? I have no problems to add glue points to a
shape and drag the shape to the gallery. When I later on use the shape from the
gallery in another document, the glue points are still there. The issue is a
"worksforme".

I use Version: 5.1.0.0.alpha1+ 
Build ID: ac226443522c55ab75cab8eed354b999052135a7
TinderBox: Win-x86@62-merge-TDF, Branch:MASTER, Time: 2015-09-18_23:26:58
Locale: de-DE (de_DE)

-- 
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 88849] FILEOPEN: hang when try to open a specific XLSX

2015-09-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=88849

--- Comment #7 from Terrence Enger  ---
Created attachment 118957
  --> https://bugs.documentfoundation.org/attachment.cgi?id=118957=edit
backtrace during the loop

The backtrace is from master commit f78216d, fetched 2015-09-21 02:45
UTC, configured ...

CC=ccache /home/terry/lo_hacking/associated/gcc/bin/gcc
CXX=ccache /home/terry/lo_hacking/associated/gcc/bin/g++
--enable-option-checking=fatal --enable-dbgutil --enable-crashdump
--without-system-postgresql --without-myspell-dicts
--with-extra-buildid --without-doxygen
--with-external-tar=/home/terry/lo_hacking/git/src
--disable-gstreamer-1-0 --enable-gstreamer-0-10 --disable-gtk3

built on debian wheezy but with gcc 5.2.0 its libraries, and running
chroot'ed to debian sid.

The program starts its long loop before the document appears in the
Writer window.

The busy loop is in frame #17 of the backtrace,
sc/source/core/tool/interpr5.cxx lines 1149 through 1162.  The upper
bound for the loop index is 1048576.

-- 
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 88849] FILEOPEN: hang when try to open a specific XLSX

2015-09-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=88849

Terrence Enger  changed:

   What|Removed |Added

   Keywords|want-backtrace  |have-backtrace

--- Comment #8 from Terrence Enger  ---
Setting keyword have-backtrace.

-- 
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 94457] LibreOffice Draw generate a bad EMF file, incompatible with Microsoft Office Word

2015-09-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94457

Bob  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

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


[Libreoffice-commits] core.git: wizards/com

2015-09-22 Thread Julien Nabet
 wizards/com/sun/star/wizards/web/WebWizardDialog.py |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 9e99b18f20f46d656c7a52413d23193f75065d1a
Author: Julien Nabet 
Date:   Tue Sep 22 21:42:35 2015 +0200

tdf#94450: Web Wizard: Not enough space for date in step 6

Value of 60 allows to display the selected dates + let a margin if year is 
in 4 numbers one day.

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

diff --git a/wizards/com/sun/star/wizards/web/WebWizardDialog.py 
b/wizards/com/sun/star/wizards/web/WebWizardDialog.py
index 5a066fd..f1248bd 100644
--- a/wizards/com/sun/star/wizards/web/WebWizardDialog.py
+++ b/wizards/com/sun/star/wizards/web/WebWizardDialog.py
@@ -525,7 +525,7 @@ class WebWizardDialog(WizardDialog):
 PropertyNames.PROPERTY_TABINDEX,
 PropertyNames.PROPERTY_WIDTH),
 (True, 12, HelpIds.getHelpIdString(HID6_DATE_SITE_CREATED),
-"dateSiteCreated", 179, 124, 6, tabIndex + 1, 49), self)
+"dateSiteCreated", 179, 124, 6, tabIndex + 1, 60), self)
 self.insertLabel("lblSiteUpdated", WebWizardDialog.PROPNAMES_LBL,
 (8, self.resources.reslblSiteUpdated_value, "lblSiteUpdated",
 103, 144, 6, tabIndex + 1, 80))
@@ -540,7 +540,7 @@ class WebWizardDialog(WizardDialog):
 PropertyNames.PROPERTY_TABINDEX,
 PropertyNames.PROPERTY_WIDTH),
 (True, 12, HelpIds.getHelpIdString(HID6_DATE_SITE_UPDATED),
-"dateSiteUpdate", 179, 142, 6, tabIndex + 1, 49), self)
+"dateSiteUpdate", 179, 142, 6, tabIndex + 1, 60), self)
 
 def buildStep7(self, disableFTP, exclamationURL):
 tabIndex = 700
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 94452] Message, showing that file is read-only has gtk text highlighting (not yellow)

2015-09-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94452

tommy27  changed:

   What|Removed |Added

   Keywords||regression
 CC||ba...@quipo.it
Version|unspecified |5.0.1.2 release
Summary|REGRESSION: Message,|Message, showing that file
   |showing that file is|is read-only has gtk text
   |read-only has gtk text  |highlighting (not yellow)
   |highlighting (not yellow)   |

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