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

2015-09-25 Thread Noel Grandin
 cui/source/dialogs/cuifmsearch.cxx  |2 +-
 cui/source/factory/dlgfact.cxx  |2 +-
 cui/source/factory/dlgfact.hxx  |2 +-
 cui/source/inc/cuifmsearch.hxx  |4 ++--
 dbaccess/source/ui/browser/brwctrlr.cxx |6 ++
 dbaccess/source/ui/inc/brwctrlr.hxx |2 +-
 include/svx/svxdlg.hxx  |2 +-
 svx/source/form/fmshimp.cxx |   13 ++---
 svx/source/inc/fmshimp.hxx  |2 +-
 9 files changed, 16 insertions(+), 19 deletions(-)

New commits:
commit 73b158e00177b7abd3f0c43dfdc3c3de1321e212
Author: Noel Grandin 
Date:   Fri Sep 25 11:40:34 2015 +0200

convert Link<> to typed

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

diff --git a/cui/source/dialogs/cuifmsearch.cxx 
b/cui/source/dialogs/cuifmsearch.cxx
index bb410ac..a51a017 100644
--- a/cui/source/dialogs/cuifmsearch.cxx
+++ b/cui/source/dialogs/cuifmsearch.cxx
@@ -751,7 +751,7 @@ IMPL_LINK_TYPED(FmSearchDialog, OnSearchProgress, const 
FmSearchProgress*, pProg
 friInfo.nContext = m_plbForm->GetSelectEntryPos();
 // if I don't do a search in a context, this has an invalid 
value - but then it doesn't matter anyway
 friInfo.aPosition = pProgress->aBookmark;
-m_lnkCanceledNotFoundHdl.Call();
+m_lnkCanceledNotFoundHdl.Call(friInfo);
 }
 break;
 }
diff --git a/cui/source/factory/dlgfact.cxx b/cui/source/factory/dlgfact.cxx
index 5b00fd1..f81372a 100644
--- a/cui/source/factory/dlgfact.cxx
+++ b/cui/source/factory/dlgfact.cxx
@@ -698,7 +698,7 @@ void AbstractFmSearchDialog_Impl::SetFoundHandler(const 
LinkSetFoundHandler(lnk);
 }
-void AbstractFmSearchDialog_Impl::SetCanceledNotFoundHdl(const Link<>& lnk)
+void AbstractFmSearchDialog_Impl::SetCanceledNotFoundHdl(const 
Link& lnk)
 {
 pDlg->SetCanceledNotFoundHdl(lnk);
 }
diff --git a/cui/source/factory/dlgfact.hxx b/cui/source/factory/dlgfact.hxx
index 2fd4ebf..5e94fcb 100644
--- a/cui/source/factory/dlgfact.hxx
+++ b/cui/source/factory/dlgfact.hxx
@@ -394,7 +394,7 @@ class AbstractFmSearchDialog_Impl :public 
AbstractFmSearchDialog
 {
 DECL_ABSTDLG_BASE(AbstractFmSearchDialog_Impl,FmSearchDialog)
 virtual void SetFoundHandler(const Link& 
lnk) SAL_OVERRIDE ;
-virtual void SetCanceledNotFoundHdl(const Link<>& lnk) SAL_OVERRIDE;
+virtual void SetCanceledNotFoundHdl(const 
Link& lnk) SAL_OVERRIDE;
 virtual void SetActiveField(const OUString& strField) SAL_OVERRIDE;
 };
 
diff --git a/cui/source/inc/cuifmsearch.hxx b/cui/source/inc/cuifmsearch.hxx
index c52fd38..eb304a7 100644
--- a/cui/source/inc/cuifmsearch.hxx
+++ b/cui/source/inc/cuifmsearch.hxx
@@ -79,7 +79,7 @@ class FmSearchDialog : public ModalDialog
 VclPtr m_pPreSearchFocus;
 
 Link  m_lnkFoundHandler;  ///< 
Handler for "found"
-Link<>  m_lnkCanceledNotFoundHdl;   ///< Handler for Positioning the 
Cursors
+Link  m_lnkCanceledNotFoundHdl;   ///< 
Handler for Positioning the Cursors
 
 Link  m_lnkContextSupplier;   ///< for 
search in contexts
 
@@ -127,7 +127,7 @@ public:
 The pointer that is passed to the handler points to a 
FmFoundRecordInformation-structure, for which aPosition and
 possibly (in a search with contexts) nContext are valid.
 */
-void SetCanceledNotFoundHdl(const Link<>& lnk) { m_lnkCanceledNotFoundHdl 
= lnk; }
+void SetCanceledNotFoundHdl(const Link& 
lnk) { m_lnkCanceledNotFoundHdl = lnk; }
 
 inline void SetActiveField(const OUString& strField);
 
diff --git a/dbaccess/source/ui/browser/brwctrlr.cxx 
b/dbaccess/source/ui/browser/brwctrlr.cxx
index 10fbab4..b0b8d6b 100644
--- a/dbaccess/source/ui/browser/brwctrlr.cxx
+++ b/dbaccess/source/ui/browser/brwctrlr.cxx
@@ -2404,7 +2404,7 @@ IMPL_LINK_TYPED(SbaXDataBrowserController, OnFoundData, 
FmFoundRecordInformation
 xGrid->setCurrentColumnPosition(nViewPos);
 }
 
-IMPL_LINK(SbaXDataBrowserController, OnCanceledNotFound, 
FmFoundRecordInformation*, pInfo)
+IMPL_LINK_TYPED(SbaXDataBrowserController, OnCanceledNotFound, 
FmFoundRecordInformation&, rInfo, void)
 {
 Reference< css::sdbcx::XRowLocate >  xCursor(getRowSet(), UNO_QUERY);
 
@@ -2412,7 +2412,7 @@ IMPL_LINK(SbaXDataBrowserController, OnCanceledNotFound, 
FmFoundRecordInformatio
 {
 OSL_ENSURE(xCursor.is(), 
"SbaXDataBrowserController::OnCanceledNotFound : xCursor is empty");
 // move the cursor
-xCursor->moveToBookmark(pInfo->aPosition);
+

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

2015-09-25 Thread Noel Grandin
 cui/source/inc/optdict.hxx |   11 ++-
 cui/source/options/optdict.cxx |   20 
 2 files changed, 18 insertions(+), 13 deletions(-)

New commits:
commit da764e8612599eaaaed068941939adb08d23b5db
Author: Noel Grandin 
Date:   Fri Sep 25 11:45:59 2015 +0200

convert Link<> to typed

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

diff --git a/cui/source/inc/optdict.hxx b/cui/source/inc/optdict.hxx
index 1722616..fe04cab 100644
--- a/cui/source/inc/optdict.hxx
+++ b/cui/source/inc/optdict.hxx
@@ -78,8 +78,8 @@ public:
 
 class SvxDictEdit : public Edit
 {
-Link<>  aActionLink;
-boolbSpaces;
+Link  aActionLink;
+bool bSpaces;
 
 public:
 SvxDictEdit(vcl::Window* pParent, const ResId& rResId) :
@@ -87,7 +87,7 @@ class SvxDictEdit : public Edit
 SvxDictEdit(vcl::Window* pParent, WinBits aWB) :
 Edit(pParent, aWB), bSpaces(false){}
 
-voidSetActionHdl( const Link<>& rLink )
+voidSetActionHdl( const Link& rLink )
 { aActionLink = rLink;}
 
 voidSetSpaces(bool bSet)
@@ -132,9 +132,10 @@ private:
 DECL_LINK(SelectBookHdl_Impl, void *);
 DECL_LINK(SelectLangHdl_Impl, void *);
 DECL_LINK_TYPED(SelectHdl, SvTreeListBox*, void);
-DECL_LINK_TYPED(NewDelHdl, Button*, void);
-DECL_LINK(NewDelActionHdl, PushButton*);
+DECL_LINK_TYPED(NewDelButtonHdl, Button*, void);
+DECL_LINK_TYPED(NewDelActionHdl, SvxDictEdit&, bool);
 DECL_LINK(ModifyHdl, Edit*);
+bool NewDelHdl(void*);
 
 
 voidShowWords_Impl( sal_uInt16 nId );
diff --git a/cui/source/options/optdict.cxx b/cui/source/options/optdict.cxx
index dc0b99b..802763a 100644
--- a/cui/source/options/optdict.cxx
+++ b/cui/source/options/optdict.cxx
@@ -261,9 +261,9 @@ SvxEditDictionaryDialog::SvxEditDictionaryDialog(
 nWidth=pWordED->GetSizePixel().Width();
 // install handler
 pNewReplacePB->SetClickHdl(
-LINK( this, SvxEditDictionaryDialog, NewDelHdl));
+LINK( this, SvxEditDictionaryDialog, NewDelButtonHdl));
 pDeletePB->SetClickHdl(
-LINK( this, SvxEditDictionaryDialog, NewDelHdl));
+LINK( this, SvxEditDictionaryDialog, NewDelButtonHdl));
 
 pLangLB->SetSelectHdl(
 LINK( this, SvxEditDictionaryDialog, SelectLangHdl_Impl ) );
@@ -591,12 +591,16 @@ IMPL_LINK_TYPED(SvxEditDictionaryDialog, SelectHdl, 
SvTreeListBox*, pBox, void)
 
 
 
-IMPL_LINK_TYPED(SvxEditDictionaryDialog, NewDelHdl, Button*, pBtn, void)
+IMPL_LINK_TYPED(SvxEditDictionaryDialog, NewDelButtonHdl, Button*, pBtn, void)
 {
-NewDelActionHdl(static_cast(pBtn));
+NewDelHdl(static_cast(pBtn));
 }
 
-IMPL_LINK(SvxEditDictionaryDialog, NewDelActionHdl, PushButton*, pBtn)
+IMPL_LINK_TYPED(SvxEditDictionaryDialog, NewDelActionHdl, SvxDictEdit&, 
rDictEdit, bool)
+{
+return NewDelHdl();
+}
+bool SvxEditDictionaryDialog::NewDelHdl(void* pBtn)
 {
 SvTreeListEntry* pEntry = pWordsLB->FirstSelected();
 
@@ -686,10 +690,10 @@ IMPL_LINK(SvxEditDictionaryDialog, NewDelActionHdl, 
PushButton*, pBtn)
 {
 // this can only be an enter in one of the two edit fields
 // which means EndDialog() - has to be evaluated in KeyInput
-return 0;
+return false;
 }
 ModifyHdl(pWordED);
-return 1;
+return true;
 }
 
 
@@ -804,7 +808,7 @@ void SvxDictEdit::KeyInput( const KeyEvent& rKEvt )
 {
 // if there's nothing done on enter, call the
 // base class after all to close the dialog
-if(!nModifier && !aActionLink.Call(this))
+if(!nModifier && !aActionLink.Call(*this))
  Edit::KeyInput(rKEvt);
 }
 else if(bSpaces || aKeyCode.GetCode() != KEY_SPACE)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2015-09-25 Thread Noel Grandin
 cui/source/options/connpooloptions.cxx |   12 
 cui/source/options/connpooloptions.hxx |4 +++-
 2 files changed, 7 insertions(+), 9 deletions(-)

New commits:
commit c70a4cfac88ae28a4ae2408ad3557f7fc08dce94
Author: Noel Grandin 
Date:   Fri Sep 25 13:35:26 2015 +0200

convert Link<> to typed

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

diff --git a/cui/source/options/connpooloptions.cxx 
b/cui/source/options/connpooloptions.cxx
index 21e5b51..16a7ea5 100644
--- a/cui/source/options/connpooloptions.cxx
+++ b/cui/source/options/connpooloptions.cxx
@@ -43,7 +43,7 @@ namespace offapp
 OUStringm_sYes;
 OUStringm_sNo;
 
-Link<>  m_aRowChangeHandler;
+Link   m_aRowChangeHandler;
 
 public:
 explicit DriverListControl(vcl::Window* _pParent);
@@ -54,7 +54,7 @@ namespace offapp
 
 // the handler will be called with a 
DriverPoolingSettings::const_iterator as parameter,
 // or NULL if no valid current row exists
-void SetRowChangeHandler(const Link<>& _rHdl) { m_aRowChangeHandler = 
_rHdl; }
+void SetRowChangeHandler(const Link& _rHdl) 
{ m_aRowChangeHandler = _rHdl; }
 
 DriverPooling* getCurrentRow();
 voidupdateCurrentRow();
@@ -413,9 +413,9 @@ namespace offapp
 }
 
 
-IMPL_LINK( ConnectionPoolOptionsPage, OnDriverRowChanged, const void*, 
_pRowIterator )
+IMPL_LINK_TYPED( ConnectionPoolOptionsPage, OnDriverRowChanged, const 
DriverPooling*, pDriverPos, void )
 {
-bool bValidRow = (NULL != _pRowIterator);
+bool bValidRow = (NULL != pDriverPos);
 m_pDriverPoolingEnabled->Enable(bValidRow && 
m_pEnablePooling->IsChecked());
 m_pTimeoutLabel->Enable(bValidRow);
 m_pTimeout->Enable(bValidRow);
@@ -426,16 +426,12 @@ namespace offapp
 }
 else
 {
-const DriverPooling *pDriverPos = static_cast(_pRowIterator);
-
 m_pDriver->SetText(pDriverPos->sName);
 m_pDriverPoolingEnabled->Check(pDriverPos->bEnabled);
 m_pTimeout->SetText(OUString::number(pDriverPos->nTimeoutSeconds));
 
 OnEnabledDisabled(m_pDriverPoolingEnabled);
 }
-
-return 0L;
 }
 
 
diff --git a/cui/source/options/connpooloptions.hxx 
b/cui/source/options/connpooloptions.hxx
index 124a797..624b266 100644
--- a/cui/source/options/connpooloptions.hxx
+++ b/cui/source/options/connpooloptions.hxx
@@ -27,9 +27,11 @@
 #include 
 #include 
 
+
 namespace offapp
 {
 
+struct DriverPooling;
 class DriverListControl;
 class ConnectionPoolOptionsPage : public SfxTabPage
 {
@@ -60,7 +62,7 @@ namespace offapp
 
 protected:
 DECL_LINK_TYPED( OnEnabledDisabled, Button*, void );
-DECL_LINK( OnDriverRowChanged, const void* );
+DECL_LINK_TYPED( OnDriverRowChanged, const DriverPooling*, void );
 
 void implInitControls(const SfxItemSet& _rSet, bool _bFromReset);
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2015-09-25 Thread Noel Grandin
 cui/source/inc/dbregister.hxx|2 +-
 cui/source/options/dbregister.cxx|   17 +++--
 cui/source/options/doclinkdialog.cxx |2 +-
 cui/source/options/doclinkdialog.hxx |   12 ++--
 4 files changed, 15 insertions(+), 18 deletions(-)

New commits:
commit 3711570da638d850251b5f672d1ee4f15ec8c960
Author: Noel Grandin 
Date:   Fri Sep 25 13:38:06 2015 +0200

convert Link<> to typed

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

diff --git a/cui/source/inc/dbregister.hxx b/cui/source/inc/dbregister.hxx
index 75cb407..12eaceb 100644
--- a/cui/source/inc/dbregister.hxx
+++ b/cui/source/inc/dbregister.hxx
@@ -61,7 +61,7 @@ namespace svx
 
 DECL_LINK_TYPED( HeaderSelect_Impl, HeaderBar *, void );
 DECL_LINK_TYPED( HeaderEndDrag_Impl, HeaderBar *, void );
-DECL_LINK( NameValidator, OUString*);
+DECL_LINK_TYPED( NameValidator, const OUString&, bool);
 
 
 /** inserts a new entry in the tablistbox
diff --git a/cui/source/options/dbregister.cxx 
b/cui/source/options/dbregister.cxx
index 831ff0c..d65a3d0 100644
--- a/cui/source/options/dbregister.cxx
+++ b/cui/source/options/dbregister.cxx
@@ -436,19 +436,16 @@ void DbRegistrationOptionsPage::openLinkDialog(const 
OUString& _sOldName,const O
 }
 }
 
-IMPL_LINK( DbRegistrationOptionsPage, NameValidator, OUString*, _pName )
+IMPL_LINK_TYPED( DbRegistrationOptionsPage, NameValidator, const OUString&, 
_rName, bool )
 {
-if ( _pName )
+sal_uLong nCount = m_pPathBox->GetEntryCount();
+for ( sal_uLong i = 0; i < nCount; ++i )
 {
-sal_uLong nCount = m_pPathBox->GetEntryCount();
-for ( sal_uLong i = 0; i < nCount; ++i )
-{
-SvTreeListEntry* pEntry = m_pPathBox->GetEntry(i);
-if ( (!m_pCurEntry || m_pCurEntry != pEntry) && 
SvTabListBox::GetEntryText(pEntry,0) == *_pName )
-return 0L;
-}
+SvTreeListEntry* pEntry = m_pPathBox->GetEntry(i);
+if ( (!m_pCurEntry || m_pCurEntry != pEntry) && 
SvTabListBox::GetEntryText(pEntry,0) == _rName )
+return false;
 }
-return 1L;
+return true;
 }
 
 }
diff --git a/cui/source/options/doclinkdialog.cxx 
b/cui/source/options/doclinkdialog.cxx
index 304a74a..1ed3125 100644
--- a/cui/source/options/doclinkdialog.cxx
+++ b/cui/source/options/doclinkdialog.cxx
@@ -143,7 +143,7 @@ namespace svx
 OUString sCurrentText = m_pName->GetText();
 if ( m_aNameValidator.IsSet() )
 {
-if ( !m_aNameValidator.Call(  ) )
+if ( !m_aNameValidator.Call( sCurrentText ) )
 {
 OUString sMsg = CUI_RES(STR_NAME_CONFLICT);
 sMsg = sMsg.replaceFirst("$file$", sCurrentText);
diff --git a/cui/source/options/doclinkdialog.hxx 
b/cui/source/options/doclinkdialog.hxx
index a9c935c..00aae23 100644
--- a/cui/source/options/doclinkdialog.hxx
+++ b/cui/source/options/doclinkdialog.hxx
@@ -37,13 +37,13 @@ namespace svx
 {
 protected:
 VclPtr< ::svt::OFileURLControl> m_pURL;
-VclPtr m_pBrowseFile;
-VclPtr   m_pName;
-VclPtr   m_pOK;
+VclPtr  m_pBrowseFile;
+VclPtrm_pName;
+VclPtrm_pOK;
 
-boolm_bCreatingNew;
+boolm_bCreatingNew;
 
-Link<>  m_aNameValidator;
+Link  m_aNameValidator;
 
 public:
 ODocumentLinkDialog( vcl::Window* _pParent, bool _bCreateNew );
@@ -53,7 +53,7 @@ namespace svx
 // name validation has to be done by an external instance
 // the validator link gets a pointer to a String, and should return 0 
if the string is not
 // acceptable
-voidsetNameValidator( const Link<>& _rValidator ) { 
m_aNameValidator = _rValidator; }
+voidsetNameValidator( const Link& 
_rValidator ) { m_aNameValidator = _rValidator; }
 
 voidsetLink( const  OUString& _rName, const   OUString& _rURL );
 voidgetLink(OUString& _rName, OUString& _rURL ) 
const;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 94388] Line content panel elements arent disable when line style set to none

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

--- Comment #1 from Markus Mohrhard (retired)  
---
I need more detailed steps. I can't reproduce it with these steps.

Please be as detailed as possible for all the bug reports as it is often not
clear how you got there.

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


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

2015-09-25 Thread Justin Luth
 sc/source/ui/view/editsh.cxx|2 +-
 sd/source/ui/view/drviewse.cxx  |8 
 sw/source/uibase/shells/textsh1.cxx |   11 ++-
 3 files changed, 11 insertions(+), 10 deletions(-)

New commits:
commit e2c7ef060397c4e0a0297b14b008596fb1c089a4
Author: Justin Luth 
Date:   Fri Sep 18 15:28:38 2015 +0300

making alt-x code consistent

Recent reviewer's comments apply to previously committed code. Made
the changes and tested each module.

Change-Id: Id67ff103797f18cf233f728b8f93a7747a42e02f
Reviewed-on: https://gerrit.libreoffice.org/18713
Reviewed-by: Samuel Mehrbrodt 
Tested-by: Samuel Mehrbrodt 

diff --git a/sc/source/ui/view/editsh.cxx b/sc/source/ui/view/editsh.cxx
index 9b1d2b0a..c225286 100644
--- a/sc/source/ui/view/editsh.cxx
+++ b/sc/source/ui/view/editsh.cxx
@@ -354,7 +354,7 @@ void ScEditShell::Execute( SfxRequest& rReq )
 aSel.nEndPos = nUtf16Pos;
}
 
-ToggleUnicodeCodepoint aToggle = ToggleUnicodeCodepoint();
+ToggleUnicodeCodepoint aToggle;
 while( nUtf16Pos && aToggle.AllowMoreInput( 
sInput[nUtf16Pos-1]) )
 --nUtf16Pos;
 OUString sReplacement = aToggle.ReplacementString();
diff --git a/sd/source/ui/view/drviewse.cxx b/sd/source/ui/view/drviewse.cxx
index d9e0a99..9a86ddb 100644
--- a/sd/source/ui/view/drviewse.cxx
+++ b/sd/source/ui/view/drviewse.cxx
@@ -840,14 +840,14 @@ void DrawViewShell::FuSupport(SfxRequest& rReq)
 
 case SID_UNICODE_NOTATION_TOGGLE:
 {
-if ( mpDrawView->IsTextEdit() )
+if( mpDrawView->IsTextEdit() )
 {
 OutlinerView* pOLV = mpDrawView->GetTextEditOutlinerView();
-if (pOLV)
+if( pOLV )
 {
 OUString sInput = pOLV->GetSurroundingText();
 ESelection aSel( pOLV->GetSelection() );
-if ( aSel.nStartPos > aSel.nEndPos )
+if( aSel.nStartPos > aSel.nEndPos )
 aSel.nEndPos = aSel.nStartPos;
 
 //calculate a valid end-position by reading logical 
characters
@@ -861,7 +861,7 @@ void DrawViewShell::FuSupport(SfxRequest& rReq)
 aSel.nEndPos = nUtf16Pos;
 }
 
-ToggleUnicodeCodepoint aToggle = ToggleUnicodeCodepoint();
+ToggleUnicodeCodepoint aToggle;
 while( nUtf16Pos && aToggle.AllowMoreInput( 
sInput[nUtf16Pos-1]) )
 --nUtf16Pos;
 OUString sReplacement = aToggle.ReplacementString();
diff --git a/sw/source/uibase/shells/textsh1.cxx 
b/sw/source/uibase/shells/textsh1.cxx
index 372c29e..49a1dc5 100644
--- a/sw/source/uibase/shells/textsh1.cxx
+++ b/sw/source/uibase/shells/textsh1.cxx
@@ -290,12 +290,13 @@ void SwTextShell::Execute(SfxRequest )
 {
 case SID_UNICODE_NOTATION_TOGGLE:
 {
-int nMaxUnits = 256;
-if( rWrtSh.IsSelection() && !rWrtSh.IsMultiSelection() )
-nMaxUnits = rWrtSh.GetSelText().getLength();
+long nMaxUnits = 256;
+sal_Int32 nSelLength = rWrtSh.GetSelText().getLength();
+if( rWrtSh.IsSelection() && !rWrtSh.IsMultiSelection() && 
(nSelLength < nMaxUnits) )
+nMaxUnits = nSelLength;
 
-int index = 0;
-ToggleUnicodeCodepoint aToggle = ToggleUnicodeCodepoint();
+long index = 0;
+ToggleUnicodeCodepoint aToggle;
 while( nMaxUnits-- && aToggle.AllowMoreInput(rWrtSh.GetChar(true, 
index-1)) )
 --index;
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Bug 94306] Replace boost::noncopyable with plain C++11 deleted copy ctors

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

--- Comment #6 from Daniel L Robertson  ---
The only real difference between structs and classes is the default access.

class NonCopyable {
public:
  NonCopyable(const NonCopyable&) = delete;
  const NonCopyable& operator=(const NonCopyable&) = delete;
};

is essentially the same as

struct NonCopyable {
  NonCopyable(const NonCopyable&) = delete;
  const NonCopyable& operator=(const NonCopyable&) = delete;
};

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


[Libreoffice-bugs] [Bug 94517] Traditional Chinese Criteria Error.

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

--- Comment #1 from Adolfo Jayme  ---
*** Bug 94518 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-bugs] [Bug 94517] Traditional Chinese Criteria Error.

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

Adolfo Jayme  changed:

   What|Removed |Added

   Severity|critical|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 94518] Traditional Chinese Criteria Error.

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

Adolfo Jayme  changed:

   What|Removed |Added

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

--- Comment #1 from Adolfo Jayme  ---


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

-- 
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 93141] last colon of emojis not correctly removed by AutoCorrect in Calc and Impress

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

Commit Notification  changed:

   What|Removed |Added

 Whiteboard|implementationError |implementationError
   |target:5.1.0|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-bugs] [Bug 93141] last colon of emojis not correctly removed by AutoCorrect in Calc and Impress

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

--- Comment #7 from Commit Notification 
 ---
László Németh committed a patch related to this issue.
It has been pushed to "libreoffice-5-0":

http://cgit.freedesktop.org/libreoffice/core/commit/?id=1e15cf04b5e167de1bfc5c19019dcae2042e1414=libreoffice-5-0

tdf#93141 Calc/Impress: remove last colon of emoji short names

It will be available in 5.0.3.

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: Branch 'libreoffice-5-0' - editeng/source

2015-09-25 Thread László Németh
 editeng/source/editeng/edtspell.cxx |6 +-
 1 file changed, 5 insertions(+), 1 deletion(-)

New commits:
commit 1e15cf04b5e167de1bfc5c19019dcae2042e1414
Author: László Németh 
Date:   Fri Sep 25 11:51:04 2015 +0200

tdf#93141 Calc/Impress: remove last colon of emoji short names

AutoCorrect Emoji replacements were incomplete in Calc cells and
Impress text boxes, keeping the terminating colon:

:omega: -> Ω:

Corrected by this patch:

:omega: -> Ω

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

diff --git a/editeng/source/editeng/edtspell.cxx 
b/editeng/source/editeng/edtspell.cxx
index 8b50d9f..510545d 100644
--- a/editeng/source/editeng/edtspell.cxx
+++ b/editeng/source/editeng/edtspell.cxx
@@ -743,9 +743,13 @@ bool EdtAutoCorrDoc::ChgAutoCorrWord( sal_Int32& rSttPos,
 pCurNode->GetString(), rSttPos, nEndPos, *this, aLanguageTag);
 if( pFnd && pFnd->IsTextOnly() )
 {
+
+// replace also last colon of keywords surrounded by colons (for 
example, ":name:")
+bool replaceLastChar = pFnd->GetShort()[0] == ':' && 
pFnd->GetShort().endsWith(":");
+
 // then replace
 EditSelection aSel( EditPaM( pCurNode, rSttPos ),
-EditPaM( pCurNode, nEndPos ) );
+EditPaM( pCurNode, nEndPos + (replaceLastChar ? 1 
: 0) ));
 aSel = mpEditEngine->DeleteSelection(aSel);
 SAL_WARN_IF(nCursor < nEndPos, "editeng",
 "Cursor in the heart of the action?!");
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Bug 94306] Replace boost::noncopyable with plain C++11 deleted copy ctors

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

--- Comment #5 from Umang Jain  ---
There are some structures using boost noncopyable template, how to remove that
? Does it(i.e. structs) even required to be removed or just only the classes.

Like in :

core/undoanim.cxx:struct UndoAnimationPathImpl: private boost::noncopyable

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


[Libreoffice-commits] core.git: icon-themes/breeze icon-themes/sifr icon-themes/tango icon-themes/tango_testing

2015-09-25 Thread Samuel Mehrbrodt
 dev/null|binary
 icon-themes/breeze/links.txt|4 ++--
 icon-themes/sifr/links.txt  |1 -
 icon-themes/tango/links.txt |   34 +++---
 icon-themes/tango_testing/links.txt |2 --
 5 files changed, 5 insertions(+), 36 deletions(-)

New commits:
commit fc3e36c418c7a4277d7f9c6fff1db106fb34
Author: Samuel Mehrbrodt 
Date:   Fri Sep 25 17:34:54 2015 +0200

Cleanup icon-themes: Remove duplicate icons etc

This is the result of running bin/sanitize-image-links

Change-Id: I8e4bdb3552c7e40e1b065d682d4a442346f3e88b
Reviewed-on: https://gerrit.libreoffice.org/18875
Reviewed-by: Samuel Mehrbrodt 
Tested-by: Samuel Mehrbrodt 

diff --git a/icon-themes/breeze/cmd/lc_browseforward.png 
b/icon-themes/breeze/cmd/lc_browseforward.png
deleted file mode 100644
index 4917b5d..000
Binary files a/icon-themes/breeze/cmd/lc_browseforward.png and /dev/null differ
diff --git a/icon-themes/breeze/cmd/lc_ellipsetoolbox.png 
b/icon-themes/breeze/cmd/lc_ellipsetoolbox.png
deleted file mode 100644
index 70775d2..000
Binary files a/icon-themes/breeze/cmd/lc_ellipsetoolbox.png and /dev/null differ
diff --git a/icon-themes/breeze/cmd/lc_hyperlinkdialog.png 
b/icon-themes/breeze/cmd/lc_hyperlinkdialog.png
deleted file mode 100644
index c2ce815..000
Binary files a/icon-themes/breeze/cmd/lc_hyperlinkdialog.png and /dev/null 
differ
diff --git a/icon-themes/breeze/cmd/lc_numberformatdate.png 
b/icon-themes/breeze/cmd/lc_numberformatdate.png
deleted file mode 100644
index be13543..000
Binary files a/icon-themes/breeze/cmd/lc_numberformatdate.png and /dev/null 
differ
diff --git a/icon-themes/breeze/cmd/lc_spelldialog.png 
b/icon-themes/breeze/cmd/lc_spelldialog.png
deleted file mode 100644
index a70eede..000
Binary files a/icon-themes/breeze/cmd/lc_spelldialog.png and /dev/null differ
diff --git a/icon-themes/breeze/cmd/lc_spellingandgrammardialog.png 
b/icon-themes/breeze/cmd/lc_spellingandgrammardialog.png
deleted file mode 100644
index a70eede..000
Binary files a/icon-themes/breeze/cmd/lc_spellingandgrammardialog.png and 
/dev/null differ
diff --git a/icon-themes/breeze/cmd/sc_browseforward.png 
b/icon-themes/breeze/cmd/sc_browseforward.png
deleted file mode 100644
index dda15c4..000
Binary files a/icon-themes/breeze/cmd/sc_browseforward.png and /dev/null differ
diff --git a/icon-themes/breeze/cmd/sc_drawtext.png 
b/icon-themes/breeze/cmd/sc_drawtext.png
deleted file mode 100644
index 0a77710..000
Binary files a/icon-themes/breeze/cmd/sc_drawtext.png and /dev/null differ
diff --git a/icon-themes/breeze/cmd/sc_ellipsetoolbox.png 
b/icon-themes/breeze/cmd/sc_ellipsetoolbox.png
deleted file mode 100644
index ad7e044..000
Binary files a/icon-themes/breeze/cmd/sc_ellipsetoolbox.png and /dev/null differ
diff --git a/icon-themes/breeze/cmd/sc_hyperlinkdialog.png 
b/icon-themes/breeze/cmd/sc_hyperlinkdialog.png
deleted file mode 100644
index cbb0429..000
Binary files a/icon-themes/breeze/cmd/sc_hyperlinkdialog.png and /dev/null 
differ
diff --git a/icon-themes/breeze/cmd/sc_numberformatdate.png 
b/icon-themes/breeze/cmd/sc_numberformatdate.png
deleted file mode 100644
index 2e55ad1..000
Binary files a/icon-themes/breeze/cmd/sc_numberformatdate.png and /dev/null 
differ
diff --git a/icon-themes/breeze/cmd/sc_spelldialog.png 
b/icon-themes/breeze/cmd/sc_spelldialog.png
deleted file mode 100644
index feb2a91..000
Binary files a/icon-themes/breeze/cmd/sc_spelldialog.png and /dev/null differ
diff --git a/icon-themes/breeze/cmd/sc_spellingandgrammardialog.png 
b/icon-themes/breeze/cmd/sc_spellingandgrammardialog.png
deleted file mode 100644
index feb2a91..000
Binary files a/icon-themes/breeze/cmd/sc_spellingandgrammardialog.png and 
/dev/null differ
diff --git a/icon-themes/breeze/cmd/sc_tablesort.png 
b/icon-themes/breeze/cmd/sc_tablesort.png
deleted file mode 100644
index 6a4fd3a..000
Binary files a/icon-themes/breeze/cmd/sc_tablesort.png and /dev/null differ
diff --git a/icon-themes/breeze/links.txt b/icon-themes/breeze/links.txt
index 9475368..d0ced75 100644
--- a/icon-themes/breeze/links.txt
+++ b/icon-themes/breeze/links.txt
@@ -124,8 +124,8 @@ cmd/sc_setdefault.png cmd/sc_resetattributes.png
 cmd/sc_showgraphics.png cmd/sc_graphic.png
 
 # split cells duplicates
-svx/res/zetlhor2.png /sw/res/zetlhor2.png
-svx/res/zetlver2.png /sw/res/zetlver2.png
+/sw/res/zetlhor2.png svx/res/zetlhor2.png
+/sw/res/zetlver2.png svx/res/zetlver2.png
 
 # FolderTree expanded icon
 svtools/res/folderop.png formula/res/fapopen.png
diff --git a/icon-themes/sifr/cmd/lc_fontcolor.png 
b/icon-themes/sifr/cmd/lc_fontcolor.png
deleted file mode 100644
index 0a669a0..000
Binary files a/icon-themes/sifr/cmd/lc_fontcolor.png and /dev/null differ
diff --git a/icon-themes/sifr/cmd/lc_numberformatcurrency.png 

[Libreoffice-bugs] [Bug 94520] New: UI: Formula ToolBar fields go blank when focus leaves window

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

Bug ID: 94520
   Summary: UI: Formula ToolBar fields go blank when focus leaves
window
   Product: LibreOffice
   Version: 5.0.0.5 release
  Hardware: x86 (IA32)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: minor
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: alex6...@postedmail.net

The Formula Toolbar fields for viewing/entering a cell's contents and viewing
the cell's name or address go blank if focus is shifted from that window
elsewhere.  This makes comparing the contents of these fields to anything else
on the screen (e.g., another spreadsheet document) difficult.  I do not recall
this behavior before version 5.

-- 
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 94290] Z axis checkboxes stay disabled when 3d chart is enabled

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

Markus Mohrhard (retired)  changed:

   What|Removed |Added

 Resolution|NOTABUG |FIXED
   Assignee|libreoffice-b...@lists.free |markus.mohrhard@googlemail.
   |desktop.org |com

-- 
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 72341] Increase/Decrease font doesn't apply to bullet in RTL paragraph when text script isn't RTL

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

--- Comment #9 from Lior Kaplan  ---
Created attachment 119025
  --> https://bugs.documentfoundation.org/attachment.cgi?id=119025=edit
testdoc

Still happens in 5.0.2 (Debian GNU/Linux, 64bit).

It happens both while using the icons from the sidebar or the CTL+[ shortcut.
Changing the directionality to RTL resets the bullet size, and changing to LTR
brings it to the proportional size. See the attached testdoc.

-- 
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 94507] EDITING: Sort doesn't seem to work properly

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

GerardF  changed:

   What|Removed |Added

 CC||gerard.farg...@orange.fr

--- Comment #1 from GerardF  ---
(In reply to Ron Johnson from comment #0)

> I selected columns A-H and rows 1-427.  Then Data->Sort.  Checked "Range
> contains column labels" and chose log_data_mb (*descending*) as Sort Key 1.
> 
> It does *not* sort at all.

Not really a surprise, they are already in descending order.

-- 
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 91132] FILESAVE: save a copy or export as pdf -> ending isn't handled well

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

--- Comment #16 from Markus Grob  ---
I have controlled it. I try to save without .odt, but the error still exists.

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


[Libreoffice-commits] core.git: android/Bootstrap android/source

2015-09-25 Thread Christian Lohmaier
 android/Bootstrap/Makefile.shared|2 +-
 android/Bootstrap/project.properties |2 +-
 android/source/project.properties|2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 4e47ed7e5aad8bde548b4953baba13cf99b6fd9c
Author: Christian Lohmaier 
Date:   Fri Sep 25 16:46:28 2015 +0200

revert back to android-21 target until tinderbox gets updated

Change-Id: Ief38ef9cc4f167caef8d991c9543161997682418

diff --git a/android/Bootstrap/Makefile.shared 
b/android/Bootstrap/Makefile.shared
index a2aa45c..aaf50ce 100644
--- a/android/Bootstrap/Makefile.shared
+++ b/android/Bootstrap/Makefile.shared
@@ -55,7 +55,7 @@ android_version_setup : 
$(BOOTSTRAPDIR)/no-resource-compress.xml
 prepare-appcompat:
mkdir $(APPCOMPATDIR) 2>/dev/null; true
cp -rf $(ANDROID_SDK_HOME)/extras/android/support/v7/appcompat/* 
$(APPCOMPATDIR)
-   $(ANDROID_SDK_HOME)/tools/android update lib-project --target 
android-23 --path $(APPCOMPATDIR)
+   $(ANDROID_SDK_HOME)/tools/android update lib-project --target 
android-21 --path $(APPCOMPATDIR)
 
 properties:
echo sdk.dir=$(ANDROID_SDK_HOME) >local.properties
diff --git a/android/Bootstrap/project.properties 
b/android/Bootstrap/project.properties
index cb55769..ca81324 100644
--- a/android/Bootstrap/project.properties
+++ b/android/Bootstrap/project.properties
@@ -9,4 +9,4 @@
 
 android.library=true
 # Project target.
-target=android-23
+target=android-21
diff --git a/android/source/project.properties 
b/android/source/project.properties
index 62a52d4..3580b11 100644
--- a/android/source/project.properties
+++ b/android/source/project.properties
@@ -8,7 +8,7 @@
 # project structure.
 
 # Project target.
-target=android-23
+target=android-21
 
 # Use the Bootstrap class
 android.library.reference.1=../Bootstrap
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 93989] crash on chart insert ...

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

--- Comment #5 from ka...@posteo.de ---
1k thanks for this fix! Confirming it in LO 5.0.2.2 on Win7 Pro 64bit :-) I'm
about to finish a larger scientific document and the crashing EPS export was an
annoyance.

-- 
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 92940] many Emojis do not work

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

--- Comment #5 from László Németh  ---
Checking it on Windows 10 with a fresh LibreOffice profile using LibreOffice
5.0.2, I cannot reproduce the BMP-only problem. Emoji replacement works without
any problem. 

Check the followings to get a working emoji support on your operating system:

1. On Linux, you need to install Symbola font (or other fonts with emoji
support). On recent Windowses, Emoji support is default, on older Windowses,
it's possible to update for it (see MS document on "An update for the Segoe UI
symbol font in Windows 7 and in Windows Server 2008 R2 is available").

2. First check the BMP character replacements, eg. with :alpha: in an English
language documents. If you had problems, check the list in the AutoCorrect
dialog. If the (English language) replacement list don't contain the emoji
replacements, remove the copy of the old acor*dat from your profile (IMPORTANT
NOTE: don't delete it, if you don't want to lose your own custom
replacements.):

For example, moving the copy of the acor_en-US.dat to ~/tmp under Linux:

mv .config/libreoffice.orig/4/user/autocorr/acor_en-US.dat ~/tmp

After restarting LibreOffice, check the list in that dialog window, you will
see the replacements (using LibreOffice 5.0).

Recent Linux and Windows versions show also the Emoji characters in the dialog
window (they have extended Unicode UI fonts).

3. Try non-BMP character replacements. On Linux, in the case of using some
simple text fonts (for example, old Windows fonts or Liberation), you don't
need to set explicitly Symbola in the text to get non-BMP characters, otherwise
it needs to set Symbola in character formatting of the text. Also on Windows, I
didn't need to specify Segoe UI Emoji.

-- 
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] translations.git: source/sl

2015-09-25 Thread Andras Timar
 source/sl/basic/source/classes.po  |  260 -
 source/sl/chart2/uiconfig/ui.po|  627 
 source/sl/connectivity/source/resource.po  |   12 
 source/sl/cui/source/dialogs.po|   32 
 source/sl/cui/source/tabpages.po   |   14 
 source/sl/cui/uiconfig/ui.po   |  184 -
 source/sl/dbaccess/source/ui/dlg.po|   12 
 source/sl/desktop/source/deployment/gui.po |   12 
 source/sl/desktop/uiconfig/ui.po   |   10 
 source/sl/dictionaries/pt_BR/dialog.po |1 
 source/sl/extensions/uiconfig/sabpilot/ui.po   |   19 
 source/sl/extensions/uiconfig/sbibliography/ui.po  |8 
 source/sl/filter/source/config/fragments/filters.po|   66 
 source/sl/filter/uiconfig/ui.po|6 
 source/sl/formula/source/core/resource.po  |   34 
 source/sl/fpicker/source/office.po |   29 
 source/sl/fpicker/uiconfig/ui.po   |   98 
 source/sl/framework/source/classes.po  |   33 
 source/sl/helpcontent2/source/text/sbasic/shared.po|   47 
 source/sl/helpcontent2/source/text/scalc/01.po |   73 
 source/sl/helpcontent2/source/text/scalc/05.po |6 
 source/sl/helpcontent2/source/text/scalc/guide.po  |   17 
 source/sl/helpcontent2/source/text/shared.po   |   25 
 source/sl/helpcontent2/source/text/shared/00.po|   36 
 source/sl/helpcontent2/source/text/shared/01.po|   61 
 source/sl/helpcontent2/source/text/shared/explorer/database.po |6 
 source/sl/helpcontent2/source/text/shared/optionen.po  |  371 ++
 source/sl/helpcontent2/source/text/simpress/01.po  |   23 
 source/sl/helpcontent2/source/text/simpress/02.po  |   24 
 source/sl/helpcontent2/source/text/smath.po|   28 
 source/sl/helpcontent2/source/text/smath/00.po |   16 
 source/sl/helpcontent2/source/text/smath/01.po |   89 
 source/sl/helpcontent2/source/text/swriter/guide.po|   16 
 source/sl/helpcontent2/source/text/swriter/librelogo.po|   62 
 source/sl/officecfg/registry/data/org/openoffice/Office.po |8 
 source/sl/officecfg/registry/data/org/openoffice/Office/UI.po  | 1357 
+++---
 source/sl/readlicense_oo/docs.po   |   10 
 source/sl/reportdesign/source/ui/report.po |3 
 source/sl/reportdesign/uiconfig/dbreport/ui.po |   10 
 source/sl/sc/source/ui/StatisticsDialogs.po|6 
 source/sl/sc/source/ui/sidebar.po  |8 
 source/sl/sc/source/ui/src.po  |  305 +-
 source/sl/sc/uiconfig/scalc/ui.po  |  114 
 source/sl/sd/source/ui/app.po  |   80 
 source/sl/sd/source/ui/view.po |   12 
 source/sl/sd/uiconfig/simpress/ui.po   |  235 -
 source/sl/sfx2/source/sidebar.po   |   16 
 source/sl/sfx2/uiconfig/ui.po  |   45 
 source/sl/starmath/source.po   |8 
 source/sl/starmath/uiconfig/smath/ui.po|   10 
 source/sl/svtools/source/control.po|   14 
 source/sl/svtools/source/dialogs.po|   14 
 source/sl/svtools/source/misc.po   |   64 
 source/sl/svtools/uiconfig/ui.po   |  182 -
 source/sl/svx/inc.po   |   38 
 source/sl/svx/source/dialog.po |4 
 source/sl/svx/source/items.po  |  148 -
 source/sl/svx/source/svdraw.po |   32 
 source/sl/svx/source/tbxctrls.po   |   14 
 source/sl/svx/uiconfig/ui.po   |  523 ++-
 source/sl/sw/source/ui/app.po  |   55 
 source/sl/sw/source/ui/dochdl.po   |   20 
 source/sl/sw/source/uibase/inc.po  |1 
 source/sl/sw/source/uibase/misc.po |1 
 source/sl/sw/uiconfig/swriter/ui.po|  313 +-
 source/sl/uui/source.po|   64 
 source/sl/uui/uiconfig/ui.po   |4 
 67 files changed, 4112 insertions(+), 1963 deletions(-)

New commits:
commit af8538d62d29b7a3a70a812d222cc419a1cc57bf
Author: Andras Timar 

[Libreoffice-bugs] [Bug 85767] SIDEBAR: Left and right alignment buttons need to be swapped in RTL

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

Lior Kaplan  changed:

   What|Removed |Added

 CC||kaplanl...@gmail.com

--- Comment #5 from Lior Kaplan  ---
Created attachment 119023
  --> https://bugs.documentfoundation.org/attachment.cgi?id=119023=edit
Another example (also with directonality buttons)

This is also relevant for the directionality buttons, not only alignment
buttons.

-- 
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 85767] SIDEBAR: Left and right alignment buttons need to be swapped in RTL

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

Lior Kaplan  changed:

   What|Removed |Added

  Component|LibreOffice |UI
 Whiteboard||rtl

-- 
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 94496] FILEOPEN: CALC wrong calculation with more than 100 rows

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

--- Comment #4 from MM  ---
Duplicate of bug 94271 ?

-- 
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 85767] SIDEBAR: Left and right alignment buttons need to be swapped in RTL

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

Lior Kaplan  changed:

   What|Removed |Added

 Whiteboard|rtl |text:RTL

-- 
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 85767] SIDEBAR: Left and right alignment buttons need to be swapped in RTL

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

Lior Kaplan  changed:

   What|Removed |Added

Version|unspecified |5.0.0.0.alpha0+ Master

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


[Libreoffice-bugs] [Bug 92251] BASIC IDE (Integrated Development Environment) Re-factoring facilities

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

Cor Nouws  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #4 from Cor Nouws  ---
Thanks Óvári for the extended explanation.
I must have been smoking strong stuff when setting this to new 

So problem one is that (reserved) names does not respect and enforce
cases. This looks as a enhancement request.
Wrt indents, I tend to think that it's more up to the habits of the
scripter?
Removing tailing spaces/tabs could be a nice tool, indeed.
..

Since we appreciate one issue for each problem, request/if you feel
clear on the other two, it would be my request to create them into
separate issues and then limit this issue (including the
description/summary) to the handling of case in names?

Cheers - 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-commits] core.git: translations

2015-09-25 Thread Andras Timar
 translations |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit bc9c7b603425d73f60ed577cf50bb12f7f1d4162
Author: Andras Timar 
Date:   Fri Sep 25 17:04:37 2015 +0200

Updated core
Project: translations  af8538d62d29b7a3a70a812d222cc419a1cc57bf

Updated Slovenian translation

Change-Id: I2e1b2b9796e36850d365c2ccfdb03cd41eec03ed

diff --git a/translations b/translations
index 6544a35..af8538d 16
--- a/translations
+++ b/translations
@@ -1 +1 @@
-Subproject commit 6544a35097d1f6de1b2cd22157db33459c4736fb
+Subproject commit af8538d62d29b7a3a70a812d222cc419a1cc57bf
___
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-25 Thread Caolán McNamara
 sd/source/ui/annotations/annotationmanager.cxx |7 +++
 sd/source/ui/annotations/annotationwindow.cxx  |3 +--
 sd/source/ui/docshell/docshel3.cxx |3 +--
 sd/source/ui/presenter/PresenterTextView.hxx   |3 +--
 sd/source/ui/table/tablefunction.cxx   |3 +--
 sd/source/ui/table/tableobjectbar.cxx  |3 +--
 6 files changed, 8 insertions(+), 14 deletions(-)

New commits:
commit 867256a4ffe7542bb654024b225ab2ca94c9288e
Author: Caolán McNamara 
Date:   Fri Sep 25 11:08:18 2015 +0100

sd/source/ui/annotations boost->std

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

diff --git a/sd/source/ui/annotations/annotationmanager.cxx 
b/sd/source/ui/annotations/annotationmanager.cxx
index 780fb20..da82d3c 100644
--- a/sd/source/ui/annotations/annotationmanager.cxx
+++ b/sd/source/ui/annotations/annotationmanager.cxx
@@ -82,7 +82,6 @@
 #include "optsitem.hxx"
 
 #include 
-#include 
 
 using namespace ::com::sun::star;
 using namespace ::com::sun::star::uno;
@@ -427,7 +426,7 @@ void AnnotationManagerImpl::ExecuteReplyToAnnotation( 
SfxRequest& rReq )
 TextApiObject* pTextApi = getTextApiObject( xAnnotation );
 if( pTextApi )
 {
-boost::scoped_ptr< ::Outliner > pOutliner( new 
::Outliner(GetAnnotationPool(),OUTLINERMODE_TEXTOBJECT) );
+std::unique_ptr< ::Outliner > pOutliner( new 
::Outliner(GetAnnotationPool(),OUTLINERMODE_TEXTOBJECT) );
 
 mpDoc->SetCalcFieldValueHdl( pOutliner.get() );
 pOutliner->SetUpdateMode( true );
@@ -463,7 +462,7 @@ void AnnotationManagerImpl::ExecuteReplyToAnnotation( 
SfxRequest& rReq )
 pOutliner->QuickSetAttribs( aAnswerSet, aSel );
 }
 
-boost::scoped_ptr< OutlinerParaObject > pOPO( 
pOutliner->CreateParaObject() );
+std::unique_ptr< OutlinerParaObject > pOPO( 
pOutliner->CreateParaObject() );
 pTextApi->SetText( *pOPO.get() );
 
 SvtUserOptions aUserOptions;
@@ -913,7 +912,7 @@ void AnnotationManagerImpl::ExecuteAnnotationContextMenu( 
Reference< XAnnotation
 if( bReadOnly && !pAnnotationWindow )
 return;
 
-boost::scoped_ptr< PopupMenu > pMenu( new PopupMenu( SdResId( 
pAnnotationWindow ? RID_ANNOTATION_CONTEXTMENU : RID_ANNOTATION_TAG_CONTEXTMENU 
) ) );
+std::unique_ptr< PopupMenu > pMenu( new PopupMenu( SdResId( 
pAnnotationWindow ? RID_ANNOTATION_CONTEXTMENU : RID_ANNOTATION_TAG_CONTEXTMENU 
) ) );
 
 SvtUserOptions aUserOptions;
 OUString sCurrentAuthor( aUserOptions.GetFullName() );
diff --git a/sd/source/ui/annotations/annotationwindow.cxx 
b/sd/source/ui/annotations/annotationwindow.cxx
index fe4320c..693f84e 100644
--- a/sd/source/ui/annotations/annotationwindow.cxx
+++ b/sd/source/ui/annotations/annotationwindow.cxx
@@ -86,7 +86,6 @@
 #include "sdresid.hxx"
 
 #include 
-#include 
 
 using namespace ::sd;
 using namespace ::com::sun::star;
@@ -542,7 +541,7 @@ void AnnotationWindow::setAnnotation( const Reference< 
XAnnotation >& xAnnotatio
 
 if( pTextApi )
 {
-boost::scoped_ptr< OutlinerParaObject > pOPO( 
pTextApi->CreateText() );
+std::unique_ptr< OutlinerParaObject > pOPO( pTextApi->CreateText() 
);
 Engine()->SetText( *pOPO.get() );
 }
 
diff --git a/sd/source/ui/docshell/docshel3.cxx 
b/sd/source/ui/docshell/docshel3.cxx
index a0d4531..9e5b3ab 100644
--- a/sd/source/ui/docshell/docshel3.cxx
+++ b/sd/source/ui/docshell/docshel3.cxx
@@ -57,7 +57,6 @@
 #include "slideshow.hxx"
 #include "fuhhconv.hxx"
 #include 
-#include 
 
 using namespace ::com::sun::star;
 using namespace ::com::sun::star::beans;
@@ -283,7 +282,7 @@ void DrawDocShell::Execute( SfxRequest& rReq )
 SfxAbstractDialogFactory* pFact = 
SfxAbstractDialogFactory::Create();
 if (pFact && mpViewShell)
 {
-boost::scoped_ptr 
pDlg(pFact->CreateVclDialog( mpViewShell->GetActiveWindow(), 
SID_LANGUAGE_OPTIONS ));
+std::unique_ptr 
pDlg(pFact->CreateVclDialog( mpViewShell->GetActiveWindow(), 
SID_LANGUAGE_OPTIONS ));
 pDlg->Execute();
 }
 }
diff --git a/sd/source/ui/presenter/PresenterTextView.hxx 
b/sd/source/ui/presenter/PresenterTextView.hxx
index 6a0a93d..0b389c0 100644
--- a/sd/source/ui/presenter/PresenterTextView.hxx
+++ b/sd/source/ui/presenter/PresenterTextView.hxx
@@ -27,7 +27,6 @@
 #include 
 #include 
 #include 
-#include 
 
 namespace com { namespace sun { namespace star { namespace uno {
 class XComponentContext;
@@ -69,7 +68,7 @@ protected:
 
 private:
 class Implementation;
-::boost::scoped_ptr mpImplementation;
+std::unique_ptr mpImplementation;
 
 /** This method throws a DisposedException when the object has already 

[Libreoffice-bugs] [Bug 94509] New: You can not change the Indents paragraph.

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

Bug ID: 94509
   Summary: You can not change the Indents paragraph.
   Product: LibreOffice
   Version: 5.0.2.2 release
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: major
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: balut...@gmail.com

If I'm going to change the indentation of paragraphs, often after moving the
sliders in the ruler, you can not edit them.

Sometimes saving the document the sliders are unlocked.

The bug is present in both windows and linux

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


[Libreoffice-commits] core.git: Branch 'feature/table-style-rebased' - 3 commits - sw/inc sw/source xmloff/source

2015-09-25 Thread Jan Holesovsky
 sw/inc/swtblfmt.hxx|   12 +--
 sw/source/core/doc/swtblfmt.cxx|   36 -
 sw/source/core/docnode/ndtbl.cxx   |4 +--
 sw/source/ui/dbui/dbinsdlg.cxx |2 -
 xmloff/source/table/XMLTableExport.cxx |4 +--
 5 files changed, 29 insertions(+), 29 deletions(-)

New commits:
commit df35e64d217a1790ca1ff96b7de0cdb100fa2538
Author: Jan Holesovsky 
Date:   Fri Sep 25 17:12:43 2015 +0200

getLength() -> !isEmpty().

Change-Id: Iab205adca1a6bca306d04f2f3dead8b66369d139

diff --git a/sw/source/ui/dbui/dbinsdlg.cxx b/sw/source/ui/dbui/dbinsdlg.cxx
index 6ca1e47..dd39814 100644
--- a/sw/source/ui/dbui/dbinsdlg.cxx
+++ b/sw/source/ui/dbui/dbinsdlg.cxx
@@ -1757,7 +1757,7 @@ void SwInsertDBColAutoPilot::Load()
 
 pTableStyle = 0;
 sTmp = pNewData->sTAutoFormatNm;
-if( sTmp.getLength() )
+if( !sTmp.isEmpty() )
 {
 pTableStyle = 
pView->GetWrtShell().GetDoc()->GetTableStyles()->FindStyle( sTmp );
 }
commit a5365dfaed7b92ea58dd9fc842243d7d41db1b01
Author: Jan Holesovsky 
Date:   Fri Sep 25 16:38:50 2015 +0200

sal_Bool -> bool.

Change-Id: I3abfa76e4bd15edf517f85bb3dbff4088c316095

diff --git a/sw/inc/swtblfmt.hxx b/sw/inc/swtblfmt.hxx
index 20ef6952..2b9b6b2 100644
--- a/sw/inc/swtblfmt.hxx
+++ b/sw/inc/swtblfmt.hxx
@@ -111,16 +111,16 @@ public:
 void SetBreak( const SvxFormatBreakItem& rNew );
 void SetPageDesc( const SwFormatPageDesc& rNew );
 void SetKeepWithNextPara( const SvxFormatKeepItem& rNew );
-void SetLayoutSplit( const sal_Bool& rNew );
-void SetCollapsingBorders( const sal_Bool& rNew );
-void SetRowSplit( const sal_Bool& rNew );
+void SetLayoutSplit( const bool& rNew );
+void SetCollapsingBorders( const bool& rNew );
+void SetRowSplit( const bool& rNew );
 void SetRepeatHeading( const sal_uInt16& rNew );
 void SetShadow( const SvxShadowItem& rNew );
 
 const SvxFormatKeepItem& GetKeepWithNextPara() const;
-sal_Bool GetLayoutSplit() const;
-sal_Bool GetCollapsingBorders() const;
-sal_Bool GetRowSplit() const;
+bool GetLayoutSplit() const;
+bool GetCollapsingBorders() const;
+bool GetRowSplit() const;
 sal_uInt16 GetRepeatHeading() const;
 
 bool IsFont() const;
diff --git a/sw/source/core/doc/swtblfmt.cxx b/sw/source/core/doc/swtblfmt.cxx
index da2d770..57f9bfe 100644
--- a/sw/source/core/doc/swtblfmt.cxx
+++ b/sw/source/core/doc/swtblfmt.cxx
@@ -178,17 +178,17 @@ void SwTableFormat::SetKeepWithNextPara( const 
SvxFormatKeepItem& rNew )
 SetFormatAttr( rNew );
 }
 
-void SwTableFormat::SetLayoutSplit( const sal_Bool& rNew )
+void SwTableFormat::SetLayoutSplit( const bool& rNew )
 {
 SetFormatAttr( SwFormatLayoutSplit( rNew ) );
 }
 
-void SwTableFormat::SetCollapsingBorders( const sal_Bool& rNew )
+void SwTableFormat::SetCollapsingBorders( const bool& rNew )
 {
 SetFormatAttr( SfxBoolItem( RES_COLLAPSING_BORDERS, rNew ) );
 }
 
-void SwTableFormat::SetRowSplit( const sal_Bool& rNew )
+void SwTableFormat::SetRowSplit( const bool& rNew )
 {
 SetFormatAttr( SwFormatRowSplit( rNew ) );
 }
@@ -208,17 +208,17 @@ const SvxFormatKeepItem& 
SwTableFormat::GetKeepWithNextPara() const
 return SwFormat::GetKeep();
 }
 
-sal_Bool SwTableFormat::GetLayoutSplit() const
+bool SwTableFormat::GetLayoutSplit() const
 {
 return SwFormat::GetLayoutSplit().GetValue();
 }
 
-sal_Bool SwTableFormat::GetCollapsingBorders() const
+bool SwTableFormat::GetCollapsingBorders() const
 {
 return (static_cast( GetFormatAttr( 
RES_COLLAPSING_BORDERS ) )).GetValue();
 }
 
-sal_Bool SwTableFormat::GetRowSplit() const
+bool SwTableFormat::GetRowSplit() const
 {
 return SwFormat::GetRowSplit().GetValue();
 }
@@ -227,7 +227,7 @@ sal_uInt16 SwTableFormat::GetRepeatHeading() const
 {
 const SfxPoolItem* pItem;
 
-if( SfxItemState::SET == GetItemState( FN_PARAM_TABLE_HEADLINE, sal_False, 
 ) )
+if( SfxItemState::SET == GetItemState( FN_PARAM_TABLE_HEADLINE, false, 
 ) )
 return ((const SfxUInt16Item*)pItem)->GetValue();
 
 return 0;
@@ -238,9 +238,9 @@ bool SwTableFormat::IsFont() const
 for( sal_uInt8 n = 0; n < 16; ++n )
 {
 if( GetBoxFormat( n )->IsFont() )
-return sal_True;
+return true;
 }
-return sal_False;
+return false;
 }
 
 bool SwTableFormat::IsJustify() const
@@ -248,9 +248,9 @@ bool SwTableFormat::IsJustify() const
 for( sal_uInt8 n = 0; n < 16; ++n )
 {
 if( GetBoxFormat( n )->IsJustify() )
-return sal_True;
+return true;
 }
-return sal_False;
+return false;
 }
 
 bool SwTableFormat::IsFrame() const
@@ -258,9 +258,9 @@ bool SwTableFormat::IsFrame() const
 for( sal_uInt8 n = 0; n < 16; ++n )
 {
 if( GetBoxFormat( n )->IsFrame() )
-return 

[Libreoffice-bugs] [Bug 94510] New: Validity list of dates converted to numbers inside list

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

Bug ID: 94510
   Summary: Validity list of dates converted to numbers inside
list
   Product: LibreOffice
   Version: 5.0.2.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: curcio...@gmail.com

Created attachment 119024
  --> https://bugs.documentfoundation.org/attachment.cgi?id=119024=edit
validity list shows date as general numbers

Supose you create two named ranges:
- one constant 'fixed_range' ranges from: $Sheet1.$A$3:$A$30
- second dynamic size 'dynamic_range' ranges using this formula:
$Sheet1.$A$3:INDEX($Sheet1.$A$3:$A$30,COUNT($Sheet1.$A$3:$A$30))

Let's say the data are formatted as date.
Create two validaty cells which items are linked to names 'fixed_range' and
'dynamic_range'.

When you open dynamic_range list the date are shown as general numbers not on
date format actually.

-- 
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 93264] Inserting a row or column corrupts the Contents property of a NamedRange for an entire column or entire row

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

--- Comment #6 from Marcelo  ---
I had the same problem and I could say this bug still exists on 5.0.0.5 and
recent 5.0.2 versions. The problem resides if range starts from ROW 3 for
example and a reference $A$3:$A$1048576 cannot (should not) converted to $A:$A.
In this case, inserting a new ROW breaks the named reference to $A$3:$A$#REF!.

-- 
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: sd/source

2015-09-25 Thread Caolán McNamara
 sd/source/ui/func/fuarea.cxx   |3 +--
 sd/source/ui/func/fubullet.cxx |3 +--
 sd/source/ui/func/fuchar.cxx   |3 +--
 sd/source/ui/func/fuconnct.cxx |3 +--
 sd/source/ui/func/fucopy.cxx   |5 ++---
 sd/source/ui/func/fucushow.cxx |3 +--
 sd/source/ui/func/fuinsert.cxx |5 ++---
 sd/source/ui/func/fuinsfil.cxx |   11 +--
 sd/source/ui/func/fuline.cxx   |5 ++---
 sd/source/ui/func/fulinend.cxx |3 +--
 sd/source/ui/func/fulink.cxx   |3 +--
 sd/source/ui/func/fumeasur.cxx |3 +--
 sd/source/ui/func/fumorph.cxx  |3 +--
 sd/source/ui/func/fuoaprms.cxx |3 +--
 sd/source/ui/func/fuolbull.cxx |7 +++
 sd/source/ui/func/fuoltext.cxx |3 +--
 sd/source/ui/func/fupage.cxx   |5 ++---
 sd/source/ui/func/fuparagr.cxx |3 +--
 sd/source/ui/func/fuprlout.cxx |3 +--
 sd/source/ui/func/fuprobjs.cxx |3 +--
 sd/source/ui/func/fuscale.cxx  |5 ++---
 sd/source/ui/func/fusldlg.cxx  |3 +--
 sd/source/ui/func/fusnapln.cxx |3 +--
 sd/source/ui/func/futempl.cxx  |5 ++---
 sd/source/ui/func/futransf.cxx |5 ++---
 sd/source/ui/func/futxtatt.cxx |3 +--
 sd/source/ui/func/fuvect.cxx   |3 +--
 27 files changed, 40 insertions(+), 67 deletions(-)

New commits:
commit 7de2777bff9afeacb872c6425d36dc93310302c7
Author: Caolán McNamara 
Date:   Fri Sep 25 11:59:51 2015 +0100

sd/source/ui/func boost->std

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

diff --git a/sd/source/ui/func/fuarea.cxx b/sd/source/ui/func/fuarea.cxx
index 9b3164d..5c351f5 100644
--- a/sd/source/ui/func/fuarea.cxx
+++ b/sd/source/ui/func/fuarea.cxx
@@ -35,7 +35,6 @@
 #include 
 #include 
 #include 
-#include 
 
 namespace sd {
 TYPEINIT1( FuArea, FuPoor );
@@ -62,7 +61,7 @@ void FuArea::DoExecute( SfxRequest& rReq )
 mpView->GetAttributes( aNewAttr );
 
 SvxAbstractDialogFactory* pFact = SvxAbstractDialogFactory::Create();
-boost::scoped_ptr pDlg(pFact ? 
pFact->CreateSvxAreaTabDialog( NULL,
+std::unique_ptr pDlg(pFact ? 
pFact->CreateSvxAreaTabDialog( NULL,
 
,
 mpDoc,
 true) 
: 0);
diff --git a/sd/source/ui/func/fubullet.cxx b/sd/source/ui/func/fubullet.cxx
index 0295ef3..cc989a3 100644
--- a/sd/source/ui/func/fubullet.cxx
+++ b/sd/source/ui/func/fubullet.cxx
@@ -39,7 +39,6 @@
 #include 
 #include "drawview.hxx"
 #include 
-#include 
 
 #include "app.hrc"
 
@@ -191,7 +190,7 @@ void FuBullet::InsertSpecialCharacter( SfxRequest& rReq )
 aSet.Put( *pFontItem );
 
 SvxAbstractDialogFactory* pFact = SvxAbstractDialogFactory::Create();
-boost::scoped_ptr pDlg(pFact ? 
pFact->CreateSfxDialog( >GetViewShell()->GetViewFrame()->GetWindow(), 
aSet,
+std::unique_ptr pDlg(pFact ? 
pFact->CreateSfxDialog( >GetViewShell()->GetViewFrame()->GetWindow(), 
aSet,
 
mpView->GetViewShell()->GetViewFrame()->GetFrame().GetFrameInterface(),
 RID_SVXDLG_CHARMAP ) : 0);
 if( !pDlg )
diff --git a/sd/source/ui/func/fuchar.cxx b/sd/source/ui/func/fuchar.cxx
index 5dca0ec..5b5227c 100644
--- a/sd/source/ui/func/fuchar.cxx
+++ b/sd/source/ui/func/fuchar.cxx
@@ -35,7 +35,6 @@
 #include "DrawDocShell.hxx"
 #include "sdabstdlg.hxx"
 #include 
-#include 
 
 namespace sd {
 
@@ -72,7 +71,7 @@ void FuChar::DoExecute( SfxRequest& rReq )
 aNewAttr.Put( aEditAttr, false );
 
 SdAbstractDialogFactory* pFact = SdAbstractDialogFactory::Create();
-boost::scoped_ptr pDlg(pFact ? 
pFact->CreateSdTabCharDialog( NULL, , mpDoc->GetDocSh() ) : 0);
+std::unique_ptr pDlg(pFact ? 
pFact->CreateSdTabCharDialog( NULL, , mpDoc->GetDocSh() ) : 0);
 sal_uInt16 nResult = RET_CANCEL;
 if( pDlg )
 {
diff --git a/sd/source/ui/func/fuconnct.cxx b/sd/source/ui/func/fuconnct.cxx
index f9f445d..494fc75 100644
--- a/sd/source/ui/func/fuconnct.cxx
+++ b/sd/source/ui/func/fuconnct.cxx
@@ -26,7 +26,6 @@
 #include 
 #include 
 #include 
-#include 
 
 namespace sd {
 
@@ -59,7 +58,7 @@ void FuConnectionDlg::DoExecute( SfxRequest& rReq )
 if( !pArgs )
 {
 SvxAbstractDialogFactory* pFact = SvxAbstractDialogFactory::Create();
-boost::scoped_ptr pDlg( pFact ? 
pFact->CreateSfxDialog( NULL, aNewAttr, mpView, RID_SVXPAGE_CONNECTION) : 0);
+std::unique_ptr pDlg( pFact ? 
pFact->CreateSfxDialog( NULL, aNewAttr, mpView, RID_SVXPAGE_CONNECTION) : 0);
 
 if( pDlg.get() && (pDlg->Execute() == RET_OK) )
 {
diff --git a/sd/source/ui/func/fucopy.cxx b/sd/source/ui/func/fucopy.cxx
index 8c47464..e7cd23f 100644
--- 

[Libreoffice-bugs] [Bug 94509] You can not change the Indents paragraph.

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

--- Comment #1 from Roberto  ---
The bug is not present in versions 4x

-- 
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 56408] Brackets are not handled correctly with mixed English/Latin and Hebrew/Arabic texts

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

Lior Kaplan  changed:

   What|Removed |Added

 Whiteboard||text:RTL

-- 
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 90153] A frame is not saved correctly if the document is saved as a docx file

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

Miklos Vajna  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|libreoffice-b...@lists.free |vmik...@collabora.co.uk
   |desktop.org |

--- Comment #5 from Miklos Vajna  ---
Aha, during import we try to make the textframe at-paragraph anchored, and
still have its vertical position based on the line position, that is only
possible for at-char anchoring. I'll take care of 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 94507] EDITING: Sort doesn't seem to work properly

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

GerardF  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #2 from GerardF  ---
Sorry, I was confused by labels. (And you also...)
2 columns have the same label "log_data_mb".

If I choose the second in the drop down list, sort is done correctly.
So no bug here.

-- 
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 94490] [HELPAUTHORING] If you create a page with a large number of paragraphs that appear duplicate IDs

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

Yousuf (Jay) Philips  changed:

   What|Removed |Added

 CC||ke...@collabora.com

--- Comment #2 from Yousuf (Jay) Philips  ---
Another alternative fix is

Int(Rnd * 100) + ReplaceAll(Date,"/:. \","") + ReplaceAll(Time,"/:. \AMP","") +
Int(Rnd * 100)

-- 
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-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94425

Yousuf (Jay) Philips  changed:

   What|Removed |Added

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

--- Comment #6 from Yousuf (Jay) Philips  ---
(In reply to Luke from comment #5)
> > I would assume sidebar users would always have the sidebar open and if they
> > close/hide the sidebar to momentarily free space
> Not in my case. Since other apps that use sidebars will automatically pop
> them up when they are relevant, I keep them closed mostly so I can focus on
> the content.

What you described isnt what i would classify as a typical sidebar users and
what MSO utilizes as a sidebar is different to what LO has as a sidebar. LO's
sidebar is comparable to the sidebar found in iWork and Calligra.

> > If you think that sidebar users would like to have the option to change the 
> > behaviour of double click
> Yes, I do. The default could be off until more dialogs are put into the
> sidebar.

Dont think this default should ever change and doubt many additional dialogs
will be added to the sidebar that would likely change this situation. There
will always be users who dont want to use the sidebar, so we shouldnt force the
sidebar to pop open unless they have specifically asked this to happen.

-- 
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-ux-advise] [Bug 92220] Easy activation and deactivation of sidebar mode

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

Yousuf (Jay) Philips  changed:

   What|Removed |Added

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

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

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

Yousuf (Jay) Philips  changed:

   What|Removed |Added

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

--- Comment #6 from Yousuf (Jay) Philips  ---
(In reply to Luke from comment #5)
> > I would assume sidebar users would always have the sidebar open and if they
> > close/hide the sidebar to momentarily free space
> Not in my case. Since other apps that use sidebars will automatically pop
> them up when they are relevant, I keep them closed mostly so I can focus on
> the content.

What you described isnt what i would classify as a typical sidebar users and
what MSO utilizes as a sidebar is different to what LO has as a sidebar. LO's
sidebar is comparable to the sidebar found in iWork and Calligra.

> > If you think that sidebar users would like to have the option to change the 
> > behaviour of double click
> Yes, I do. The default could be off until more dialogs are put into the
> sidebar.

Dont think this default should ever change and doubt many additional dialogs
will be added to the sidebar that would likely change this situation. There
will always be users who dont want to use the sidebar, so we shouldnt force the
sidebar to pop open unless they have specifically asked this to happen.

-- 
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 92220] Easy activation and deactivation of sidebar mode

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

Yousuf (Jay) Philips  changed:

   What|Removed |Added

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

-- 
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 94504] New: Editing: strikethrough 'with X' on a bullet list make corrupted characters to appear

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

Bug ID: 94504
   Summary: Editing: strikethrough 'with X' on a bullet list make
corrupted characters to appear
   Product: LibreOffice
   Version: 5.0.1.2 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: palmierivinc@gmail.com

To reproduce this bug:
- create a new document;
- write some random text;
- make it a bullet list;
- strike it "with X".

Observation: there are some unexpected rectangular characters at the beginning
of the line.

Expected behaviour: having "X" instead of the rectangles.

It doesn't happen with the other strikethroughs, neither with image bullets or
with numbers instead of bullets. If the text is stroke before adding bullets,
there is no problem. I didn't find any link with language settings.

-- 
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] translations.git: Branch 'libreoffice-4-4' - source/am source/bg source/ca source/cy source/de source/eo source/es source/fr source/gl source/id source/is source/it source/lt sou

2015-09-25 Thread Christian Lohmaier
 source/am/dbaccess/uiconfig/ui.po  |   10 
 source/am/helpcontent2/source/text/shared/01.po|   10 
 source/am/helpcontent2/source/text/shared/guide.po |   10 
 source/am/helpcontent2/source/text/simpress/04.po  |   14 
 source/am/helpcontent2/source/text/swriter/01.po   |6 
 source/am/helpcontent2/source/text/swriter/04.po   |   12 
 source/am/helpcontent2/source/text/swriter/guide.po|   18 
 source/am/starmath/source.po   |   32 
 source/bg/helpcontent2/source/text/simpress/guide.po   |   12 
 source/ca/helpcontent2/source/text/sbasic/shared.po|   24 
 source/ca/helpcontent2/source/text/sbasic/shared/02.po |   10 
 source/ca/sc/source/ui/src.po  |   20 
 source/ca/scp2/source/accessories.po   |   26 
 source/ca/scp2/source/ooo.po   |   26 
 source/ca/svtools/source/misc.po   |   10 
 source/ca/wizards/source/importwizard.po   |   14 
 source/ca/xmlsecurity/uiconfig/ui.po   |   10 
 source/cy/cui/uiconfig/ui.po   |   10 
 source/cy/sc/uiconfig/scalc/ui.po  |   10 
 source/cy/sw/source/ui/app.po  |   10 
 source/cy/sysui/desktop/share.po   |   10 
 source/de/cui/source/customize.po  |   16 
 source/de/cui/source/options.po|   12 
 source/de/cui/uiconfig/ui.po   |   14 
 source/de/helpcontent2/source/text/sbasic/guide.po |   12 
 source/de/helpcontent2/source/text/sbasic/shared.po|   44 
 source/de/helpcontent2/source/text/scalc/01.po |   18 
 source/de/helpcontent2/source/text/shared/00.po|   10 
 source/de/helpcontent2/source/text/shared/01.po|   18 
 source/de/helpcontent2/source/text/shared/guide.po |   16 
 source/de/helpcontent2/source/text/shared/optionen.po  |   22 
 source/de/helpcontent2/source/text/simpress/04.po  |   18 
 source/de/helpcontent2/source/text/swriter.po  |   12 
 source/de/helpcontent2/source/text/swriter/00.po   |   12 
 source/de/helpcontent2/source/text/swriter/01.po   |   22 
 source/de/helpcontent2/source/text/swriter/04.po   |   12 
 source/de/helpcontent2/source/text/swriter/guide.po|   22 
 source/de/helpcontent2/source/text/swriter/librelogo.po|   74 
 source/de/instsetoo_native/inc_openoffice/windows/msi_languages.po |   16 
 source/de/librelogo/source/pythonpath.po   |   20 
 source/de/officecfg/registry/data/org/openoffice/Office.po |   10 
 source/de/officecfg/registry/data/org/openoffice/Office/UI.po  |  454 -
 source/de/readlicense_oo/docs.po   |8 
 source/de/sc/source/ui/src.po  |   10 
 source/de/sfx2/source/doc.po   |   10 
 source/de/svl/source/misc.po   |   12 
 source/de/svtools/source/misc.po   |   10 
 source/de/svx/source/src.po|   10 
 source/de/sw/source/core/undo.po   |   16 
 source/de/sw/source/ui/utlui.po|6 
 source/de/sw/uiconfig/swriter/ui.po|   26 
 source/de/swext/mediawiki/help.po  |   10 
 source/de/wizards/source/template.po   |   14 
 source/eo/helpcontent2/source/text/sdraw.po|   11 
 source/eo/helpcontent2/source/text/sdraw/04.po |   11 
 source/eo/helpcontent2/source/text/sdraw/guide.po  |   12 
 source/eo/helpcontent2/source/text/simpress/00.po  |   40 
 source/eo/helpcontent2/source/text/simpress/01.po  |  136 
 source/eo/helpcontent2/source/text/simpress/02.po  |   25 
 source/eo/helpcontent2/source/text/swriter.po  |   10 
 source/eo/helpcontent2/source/text/swriter/00.po   |   12 
 source/eo/helpcontent2/source/text/swriter/01.po   |   46 
 source/eo/helpcontent2/source/text/swriter/02.po   |   10 
 source/eo/helpcontent2/source/text/swriter/guide.po|   48 
 source/eo/helpcontent2/source/text/swriter/librelogo.po|   10 
 source/es/basctl/source/basicide.po  

[Libreoffice-commits] translations.git: Branch 'libreoffice-4-4-5' - source/am source/bg source/cy source/de source/eo source/es source/fr source/gl source/id source/is source/lt source/lv source/nb s

2015-09-25 Thread Christian Lohmaier
 source/am/helpcontent2/source/text/shared/01.po|   10 
 source/am/helpcontent2/source/text/shared/guide.po |   10 
 source/am/helpcontent2/source/text/simpress/04.po  |   14 
 source/am/helpcontent2/source/text/swriter/01.po   |6 
 source/am/helpcontent2/source/text/swriter/04.po   |   12 
 source/am/helpcontent2/source/text/swriter/guide.po|   18 
 source/bg/helpcontent2/source/text/simpress/guide.po   |   12 
 source/cy/cui/uiconfig/ui.po   |   10 
 source/cy/sc/uiconfig/scalc/ui.po  |   10 
 source/de/cui/source/customize.po  |   16 
 source/de/cui/source/options.po|   12 
 source/de/cui/uiconfig/ui.po   |   14 
 source/de/helpcontent2/source/text/sbasic/guide.po |   12 
 source/de/helpcontent2/source/text/sbasic/shared.po|   36 
 source/de/helpcontent2/source/text/scalc/01.po |   18 
 source/de/helpcontent2/source/text/shared/00.po|   10 
 source/de/helpcontent2/source/text/shared/01.po|   18 
 source/de/helpcontent2/source/text/shared/guide.po |   16 
 source/de/helpcontent2/source/text/shared/optionen.po  |   22 
 source/de/helpcontent2/source/text/simpress/04.po  |   18 
 source/de/helpcontent2/source/text/swriter.po  |   12 
 source/de/helpcontent2/source/text/swriter/00.po   |   12 
 source/de/helpcontent2/source/text/swriter/01.po   |   22 
 source/de/helpcontent2/source/text/swriter/04.po   |   12 
 source/de/helpcontent2/source/text/swriter/guide.po|   22 
 source/de/helpcontent2/source/text/swriter/librelogo.po|   74 
 source/de/instsetoo_native/inc_openoffice/windows/msi_languages.po |   16 
 source/de/librelogo/source/pythonpath.po   |   20 
 source/de/officecfg/registry/data/org/openoffice/Office.po |   10 
 source/de/officecfg/registry/data/org/openoffice/Office/UI.po  |  454 +--
 source/de/sc/source/ui/src.po  |   10 
 source/de/sfx2/source/doc.po   |   10 
 source/de/svl/source/misc.po   |   12 
 source/de/svtools/source/misc.po   |   10 
 source/de/svx/source/src.po|   10 
 source/de/sw/source/core/undo.po   |   16 
 source/de/sw/source/ui/utlui.po|6 
 source/de/sw/uiconfig/swriter/ui.po|   26 
 source/de/swext/mediawiki/help.po  |2 
 source/de/wizards/source/template.po   |   14 
 source/eo/helpcontent2/source/text/sdraw.po|   11 
 source/eo/helpcontent2/source/text/sdraw/04.po |   11 
 source/eo/helpcontent2/source/text/sdraw/guide.po  |   12 
 source/eo/helpcontent2/source/text/simpress/00.po  |   40 
 source/eo/helpcontent2/source/text/simpress/01.po  |  136 -
 source/eo/helpcontent2/source/text/simpress/02.po  |   25 
 source/eo/helpcontent2/source/text/swriter.po  |   10 
 source/eo/helpcontent2/source/text/swriter/00.po   |   12 
 source/eo/helpcontent2/source/text/swriter/01.po   |   46 
 source/eo/helpcontent2/source/text/swriter/02.po   |   10 
 source/eo/helpcontent2/source/text/swriter/guide.po|   48 
 source/eo/helpcontent2/source/text/swriter/librelogo.po|   10 
 source/es/basctl/source/basicide.po|   12 
 source/es/cui/source/tabpages.po   |   12 
 source/es/cui/uiconfig/ui.po   |   10 
 source/es/extensions/source/bibliography.po|   10 
 source/es/filter/uiconfig/ui.po|   10 
 source/es/helpcontent2/source/auxiliary.po |   12 
 source/es/helpcontent2/source/text/sbasic/shared.po|   22 
 source/es/helpcontent2/source/text/scalc/00.po |   14 
 source/es/helpcontent2/source/text/scalc/01.po |   80 
 source/es/helpcontent2/source/text/scalc/02.po |   14 
 source/es/helpcontent2/source/text/scalc/guide.po  |   30 
 source/es/helpcontent2/source/text/schart.po   |   10 
 source/es/helpcontent2/source/text/shared/01.po|   18 
 source/es/helpcontent2/source/text/shared/autopi.po   

[Libreoffice-bugs] [Bug 65351] Sidebar: open pane that was active when last used

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

--- Comment #18 from Jean-Francois Nifenecker 
 ---
Hi,

this bug submission is, IMO, not related to 73071. As the OP stated: the
question is about the sidebar keeping track of its last state when the last
LibO session was closed. As of v.5.0.1, this problem is still there.

The question about what should be the default pane in the sidebar is just
unrelated and a whole question on its own.

Currently, as a professional writer, I want to have the Stylist pane visible by
default but I can't. The Navigator is opened in a separate window but the
Sidebar insists on displaying the Properties pane, even for documents I've been
working on for some time.

So, to summarize: set whatever pane as default pane in the Sidebar (though I
would prefer the Stylist ;) When the user selects another Sidebar pane when
working on a document, further opening that document should activate the chosen
pane.

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


[Libreoffice-commits] core.git: Branch 'libreoffice-5-0' - readlicense_oo/license

2015-09-25 Thread Christian Lohmaier
 readlicense_oo/license/CREDITS.fodt | 1842 ++--
 1 file changed, 926 insertions(+), 916 deletions(-)

New commits:
commit e0910afb2235180821146139e6b44ac4e6cc5561
Author: Christian Lohmaier 
Date:   Fri Sep 25 18:48:36 2015 +0200

update credits

Change-Id: I6287394ba04c7ec81ffb39229a0147e829615b07
(cherry picked from commit dfb00ac6ee43e008cc46c71546ba4af64d3a0bbd)

diff --git a/readlicense_oo/license/CREDITS.fodt 
b/readlicense_oo/license/CREDITS.fodt
index 39f751c..c6275b0 100644
--- a/readlicense_oo/license/CREDITS.fodt
+++ b/readlicense_oo/license/CREDITS.fodt
@@ -1,28 +1,28 @@
 
 
 http://www.w3.org/1999/xlink; 
xmlns:dc="http://purl.org/dc/elements/1.1/; 
xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" 
xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" 
xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" 
xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" 
xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" 
xmlns:math="http://www.w3.org/1998/Math/MathML; 
xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" 
xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" 
xmlns:config="urn:oas
 is:names:tc:opendocument:xmlns:config:1.0" 
xmlns:ooo="http://openoffice.org/2004/office; 
xmlns:ooow="http://openoffice.org/2004/writer; 
xmlns:oooc="http://openoffice.org/2004/calc; 
xmlns:dom="http://www.w3.org/2001/xml-events; 
xmlns:xforms="http://www.w3.org/2002/xforms; 
xmlns:xsd="http://www.w3.org/2001/XMLSchema; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
xmlns:rpt="http://openoffice.org/2005/report; 
xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" 
xmlns:xhtml="http://www.w3.org/1999/xhtml; 
xmlns:grddl="http://www.w3.org/2003/g/data-view#; 
xmlns:officeooo="http://openoffice.org/2009/office; 
xmlns:tableooo="http://openoffice.org/2009/table; 
xmlns:drawooo="http://openoffice.org/2010/draw; 
xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0"
 
xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0"
 xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" 
xmlns:formx="urn:openoffice:names:
 experimental:ooxml-odf-interop:xmlns:form:1.0" 
xmlns:css3t="http://www.w3.org/TR/css3-text/; office:version="1.2" 
office:mimetype="application/vnd.oasis.opendocument.text">
- Credits » 
LibreOfficeCreditscontributorscodersdevelopersCredits
 for the LibreOffice 
development/coding.LibreOffice/5.0.2.1$Linux_X86_64
 
LibreOffice_project/9a18d52abbdfbdc2ac9acebec2b92e7859eb73b72012-02-20T22:17:18.06000PT14M12S3JUebjoxEpqXoQcpltWRTwzBZEEHtch3wApdhgiQPFiA
+ Credits » 
LibreOfficeCreditscontributorscodersdevelopersCredits
 for the LibreOffice 
development/coding.LibreOffice/5.0.2.2$Linux_X86_64
 
LibreOffice_project/37b43f919e4de5eeaca9b9755ed688758a8251fe2012-02-20T22:17:18.06000PT14M12S3JUebjoxEpqXoQcpltWRTwzBZEEHtch3wApdhgiQPFiA
  
   
-   660
+   748
501
-   53024
-   30023
+   36347
+   19678
true
true

 
  view2
- 4064
- 5029
+ 3556
+ 3443
  501
- 660
- 53523
- 30681
+ 748
+ 36846
+ 20424
  0
  0
  false
- 75
+ 110
  false
 

@@ -68,7 +68,7 @@
false
false
true
-   3597204
+   3637362
false
false
false
@@ -311,24 +311,21 @@
  
  
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   

   
-  
-   
-  
   

   
-  
+  

   
   
@@ -392,19 +389,19 @@

   
   
-   
+   
   
   

   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   

@@ -437,15 +434,15 @@


   
-  
-  
-  
-  
-  
-  
-  
+  

   
+  
+  
+  
+  
+  
+  
   

   
@@ -475,7 +472,7 @@
   
   

-   
+   
   
   

@@ -1018,14 +1015,14 @@

   
  Credits
-1081 individuals contributed to 
OpenOffice.org (and whose contributions were imported into LibreOffice) or 
LibreOffice until 2015-09-17 14:55:28.
+1080 individuals contributed to 
OpenOffice.org (and whose contributions were imported into LibreOffice) or 
LibreOffice until 2015-09-25 12:59:51.
 * marks developers whose first contributions 
happened after 2010-09-28.
 Developers 
committing code since 2010-09-28
 
  
  
  
- 
+ 
  
   
Ruediger 
TimmCommits: 82464Joined: 
2000-10-10
@@ -1045,10 +1042,10 @@
Vladimir 
GlazunovCommits: 25434Joined: 
2000-12-04
   
   
-   Caolán 
McNamaraCommits: 18025Joined: 
2000-10-10
+   Caolán 
McNamaraCommits: 18067Joined: 
2000-10-10
   
   
-   Stephan 
BergmannCommits: 9942Joined: 
2000-10-04
+   Stephan 
BergmannCommits: 9967Joined: 
2000-10-04
   
   
Ivo 
HinkelmannCommits: 9480Joined: 
2002-09-09
@@ -1056,7 +1053,7 @@
  
  
   
-   Tor 
LillqvistCommits: 7035Joined: 

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

2015-09-25 Thread Noel Grandin
 cui/source/factory/dlgfact.cxx  |8 
 cui/source/factory/dlgfact.hxx  |   10 +-
 include/svx/svxdlg.hxx  |4 ++--
 sc/source/ui/inc/redcom.hxx |4 ++--
 sc/source/ui/miscdlgs/redcom.cxx|   16 ++--
 sw/source/uibase/inc/textsh.hxx |4 ++--
 sw/source/uibase/shells/textfld.cxx |   30 --
 7 files changed, 33 insertions(+), 43 deletions(-)

New commits:
commit 1296732028df43160d070d27be6fd961e284fdd6
Author: Noel Grandin 
Date:   Fri Sep 25 09:52:59 2015 +0200

convert Link<> to typed

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

diff --git a/cui/source/factory/dlgfact.cxx b/cui/source/factory/dlgfact.cxx
index 6810b42..0961103 100644
--- a/cui/source/factory/dlgfact.cxx
+++ b/cui/source/factory/dlgfact.cxx
@@ -779,7 +779,7 @@ void AbstractSvxPostItDialog_Impl::HideAuthor()
 {
 pDlg->HideAuthor();
 }
-void AbstractSvxPostItDialog_Impl::SetNextHdl( const Link<>& rLink )
+void AbstractSvxPostItDialog_Impl::SetNextHdl( const 
Link& rLink )
 {
 aNextHdl = rLink;
 if( rLink.IsSet() )
@@ -787,7 +787,7 @@ void AbstractSvxPostItDialog_Impl::SetNextHdl( const 
Link<>& rLink )
 else
 pDlg->SetNextHdl( Link() );
 }
-void AbstractSvxPostItDialog_Impl::SetPrevHdl( const Link<>& rLink )
+void AbstractSvxPostItDialog_Impl::SetPrevHdl( const 
Link& rLink )
 {
 aPrevHdl = rLink;
 if( rLink.IsSet() )
@@ -798,12 +798,12 @@ void AbstractSvxPostItDialog_Impl::SetPrevHdl( const 
Link<>& rLink )
 IMPL_LINK_NOARG_TYPED(AbstractSvxPostItDialog_Impl, NextHdl, SvxPostItDialog&, 
void)
 {
 if( aNextHdl.IsSet() )
-aNextHdl.Call(this);
+aNextHdl.Call(*this);
 }
 IMPL_LINK_NOARG_TYPED(AbstractSvxPostItDialog_Impl, PrevHdl, SvxPostItDialog&, 
void)
 {
 if( aPrevHdl.IsSet() )
-aPrevHdl.Call(this);
+aPrevHdl.Call(*this);
 }
 vcl::Window * AbstractSvxPostItDialog_Impl::GetWindow()
 {
diff --git a/cui/source/factory/dlgfact.hxx b/cui/source/factory/dlgfact.hxx
index af543dc..e4e9621 100644
--- a/cui/source/factory/dlgfact.hxx
+++ b/cui/source/factory/dlgfact.hxx
@@ -448,18 +448,18 @@ class AbstractSvxPostItDialog_Impl :public 
AbstractSvxPostItDialog
 DECL_ABSTDLG_BASE( AbstractSvxPostItDialog_Impl, SvxPostItDialog )
 virtual voidSetText( const OUString& rStr ) SAL_OVERRIDE;  
//From class Window
 virtual const SfxItemSet*   GetOutputItemSet() const SAL_OVERRIDE;
-virtual voidSetPrevHdl( const Link<>& rLink ) SAL_OVERRIDE 
;
-virtual voidSetNextHdl( const Link<>& rLink ) SAL_OVERRIDE 
;
+virtual voidSetPrevHdl( const 
Link& rLink ) SAL_OVERRIDE ;
+virtual voidSetNextHdl( const 
Link& rLink ) SAL_OVERRIDE ;
 virtual voidEnableTravel(bool bNext, bool bPrev) 
SAL_OVERRIDE ;
 virtual OUStringGetNote() SAL_OVERRIDE ;
 virtual voidSetNote(const OUString& rTxt) SAL_OVERRIDE ;
 virtual voidShowLastAuthor(const OUString& rAuthor, const 
OUString& rDate) SAL_OVERRIDE ;
 virtual voidDontChangeAuthor() SAL_OVERRIDE ;
 virtual voidHideAuthor() SAL_OVERRIDE ;
-virtual vcl::Window *GetWindow() SAL_OVERRIDE;
+virtual vcl::Window *   GetWindow() SAL_OVERRIDE;
 private:
-Link<> aNextHdl;
-Link<> aPrevHdl;
+Link aNextHdl;
+Link aPrevHdl;
 DECL_LINK_TYPED(NextHdl, SvxPostItDialog&, void);
 DECL_LINK_TYPED(PrevHdl, SvxPostItDialog&, void);
 };
diff --git a/include/svx/svxdlg.hxx b/include/svx/svxdlg.hxx
index d97090b..1ec6814 100644
--- a/include/svx/svxdlg.hxx
+++ b/include/svx/svxdlg.hxx
@@ -234,8 +234,8 @@ class AbstractSvxPostItDialog :public VclAbstractDialog
 public:
 virtual voidSetText( const OUString& rStr ) = 0;  //From 
class Window
 virtual const SfxItemSet*   GetOutputItemSet() const = 0;
-virtual voidSetPrevHdl( const Link<>& rLink ) = 0;
-virtual voidSetNextHdl( const Link<>& rLink ) = 0;
+virtual voidSetPrevHdl( const 
Link& rLink ) = 0;
+virtual voidSetNextHdl( const 
Link& rLink ) = 0;
 virtual voidEnableTravel(bool bNext, bool bPrev) = 0;
 virtual OUStringGetNote()  = 0;
 virtual voidSetNote(const OUString& rTxt)  = 0;
diff --git a/sc/source/ui/inc/redcom.hxx b/sc/source/ui/inc/redcom.hxx

[Libreoffice-bugs] [Bug 94511] Libreoffice doesn't start with Gnome 3.18

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

bgbla...@gmail.com 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-bugs] [Bug 94492] EDITING - copying row with hidden columns

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

--- Comment #7 from MM  ---
Duplicate of bug 85170 or perhaps bug 56799 ???

-- 
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 93210] disappearing line in LibO after click

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

Alexandr  changed:

   What|Removed |Added

 CC||alexpik...@gmail.com
 Whiteboard||interoperability filter:doc

--- Comment #3 from Alexandr  ---
I do not see some lines even without clicking (LibreOffice 5.0.1 from Debian).

-- 
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 94499] FORMATTING: "Expand formatting" affects non-empty adjacent cell

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

Cor Nouws  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #3 from Cor Nouws  ---
Hi Tom,

Thanks for your additional info.
It is the way I had understood it (after some reading ;) )
But the strange think is, that I could not really reproduce it. 
Maybe because I had done some various/random editing too?

Now, trying with only copy/paste C3:D3 to C9, and doing the steps, the problem
clearly shows.
So set to new. Thanks!

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 94513] New: editing: Improvement: text completion should include validity values

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

Bug ID: 94513
   Summary: editing: Improvement: text completion should include
validity values
   Product: LibreOffice
   Version: 5.0.1.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: palmierivinc@gmail.com

This problem occurs when a cell has a list or a range of cells as validity
criteria:
I've seen many people trying to type the first letters, expecting the good text
to appear by completion. It works fine if the text has already been typed in
another place and is in the history. Otherwise, users open the dropdown list,
but the cursor position in the list is not related to the first letters typed.

I've seen several people disturbed by this and give up, saying "it's odd" or
"it doesn't work".

It can be improved by two non-exclusive ways:
1. When a cell has a list or a range of cells as validity criteria, add this
range/list to the texts available by completion
2. When a cell has a list or a range of cells as validity criteria, when the
user opens the dropdown list after having typed some letters, the dropdown
list's cursor should be at the closest item to the typed text.

-- 
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 92306] Layout of complex document with table and lots of split/merged cells seriously broken

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

Alexandr  changed:

   What|Removed |Added

   Keywords|bisected|
 CC||alexpik...@gmail.com
 Whiteboard|bibisected  |interoperability filter:doc
   ||bibisected

--- Comment #8 from Alexandr  ---
Reproducible with LibreOffice 5.0.1 from Debian.
I remove "bisected" keyword as it applies only when the exact commit is
determined.

-- 
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: sd/source

2015-09-25 Thread Caolán McNamara
 sd/source/ui/inc/TemplateScanner.hxx |7 +++
 sd/source/ui/sidebar/MasterPagesSelector.cxx |2 +-
 sd/source/ui/view/DocumentRenderer.cxx   |7 +++
 sd/source/ui/view/drviews2.cxx   |   25 -
 sd/source/ui/view/drviews4.cxx   |5 ++---
 sd/source/ui/view/drviews9.cxx   |3 +--
 sd/source/ui/view/drviewsf.cxx   |5 ++---
 sd/source/ui/view/sdview3.cxx|5 ++---
 8 files changed, 26 insertions(+), 33 deletions(-)

New commits:
commit e678a8d8e5f1a178ab83da965b785d24b0a9cffb
Author: Caolán McNamara 
Date:   Fri Sep 25 14:11:12 2015 +0100

boost->std

Change-Id: If0ca026bd63a921d4f258586231455aacee23b1f
Reviewed-on: https://gerrit.libreoffice.org/18870
Tested-by: Jenkins 
Reviewed-by: Caolán McNamara 
Tested-by: Caolán McNamara 

diff --git a/sd/source/ui/inc/TemplateScanner.hxx 
b/sd/source/ui/inc/TemplateScanner.hxx
index 6a11e00..d0b87d7 100644
--- a/sd/source/ui/inc/TemplateScanner.hxx
+++ b/sd/source/ui/inc/TemplateScanner.hxx
@@ -26,7 +26,6 @@
 #include "com/sun/star/uno/Reference.hxx"
 
 #include 
-#include 
 #include 
 
 namespace com { namespace sun { namespace star { namespace ucb {
@@ -75,7 +74,7 @@ class TemplateDir
 public:
 TemplateDir (const OUString& rsRegion, const OUString& rsUrl )
 :   msRegion(rsRegion), msUrl(rsUrl), maEntries(),
-mbSortingEnabled(false), mpEntryCompare(NULL) {}
+mbSortingEnabled(false), mpEntryCompare(nullptr) {}
 
 OUString msRegion;
 OUString msUrl;
@@ -86,7 +85,7 @@ public:
 
 private:
 bool mbSortingEnabled;
-::boost::scoped_ptr mpEntryCompare;
+std::unique_ptr mpEntryCompare;
 };
 
 /** This class scans the template folders for impress templates.  There are
@@ -183,7 +182,7 @@ private:
 /** The folders that are collected by GatherFolderList().
 */
 class FolderDescriptorList;
-::boost::scoped_ptr mpFolderDescriptors;
+std::unique_ptr mpFolderDescriptors;
 
 /** Set of state variables used by the methods
 InitializeFolderScanning(), GatherFolderList(), ScanFolder(),
diff --git a/sd/source/ui/sidebar/MasterPagesSelector.cxx 
b/sd/source/ui/sidebar/MasterPagesSelector.cxx
index 13b7972..b1aa583 100644
--- a/sd/source/ui/sidebar/MasterPagesSelector.cxx
+++ b/sd/source/ui/sidebar/MasterPagesSelector.cxx
@@ -223,7 +223,7 @@ void MasterPagesSelector::Command (const CommandEvent& 
rEvent)
 }
 
 // Setup the menu.
-::boost::scoped_ptr pMenu (new 
PopupMenu(GetContextMenuResId()));
+std::unique_ptr pMenu (new 
PopupMenu(GetContextMenuResId()));
 FloatingWindow* pMenuWindow = 
dynamic_cast(pMenu->GetWindow());
 if (pMenuWindow != NULL)
 pMenuWindow->SetPopupModeFlags(
diff --git a/sd/source/ui/view/DocumentRenderer.cxx 
b/sd/source/ui/view/DocumentRenderer.cxx
index 0f78fda..86df457 100644
--- a/sd/source/ui/view/DocumentRenderer.cxx
+++ b/sd/source/ui/view/DocumentRenderer.cxx
@@ -52,7 +52,6 @@
 #include 
 
 #include 
-#include 
 
 using namespace ::com::sun::star;
 using namespace ::com::sun::star::uno;
@@ -1120,7 +1119,7 @@ namespace {
 }
 
 private:
-::boost::scoped_ptr mpParaObject;
+std::unique_ptr mpParaObject;
 };
 }
 
@@ -1323,9 +1322,9 @@ private:
 bool mbIsDisposed;
 VclPtr mpPrinter;
 Size maPrinterPageSizePixel;
-::boost::scoped_ptr mpOptions;
+std::unique_ptr mpOptions;
 std::vector< std::shared_ptr< ::sd::PrinterPage> > maPrinterPages;
-::boost::scoped_ptr mpPrintView;
+std::unique_ptr mpPrintView;
 bool mbHasOrientationWarningBeenShown;
 std::vector maSlidesPerPage;
 awt::Size maPrintSize;
diff --git a/sd/source/ui/view/drviews2.cxx b/sd/source/ui/view/drviews2.cxx
index 7d4cc30..358d3ce 100644
--- a/sd/source/ui/view/drviews2.cxx
+++ b/sd/source/ui/view/drviews2.cxx
@@ -172,7 +172,6 @@
 
 #include "ViewShellBase.hxx"
 #include 
-#include 
 
 namespace {
 const char CustomAnimationPanelId[] = "CustomAnimationPanel";
@@ -428,7 +427,7 @@ void DrawViewShell::FuTemporary(SfxRequest& rReq)
 
 SvxAbstractDialogFactory* pFact = 
SvxAbstractDialogFactory::Create();
 DBG_ASSERT(pFact, "Dialog creation failed!");
-boost::scoped_ptr 
aNameDlg(pFact->CreateSvxNameDialog( GetActiveWindow(), aPageName, aDescr ));
+std::unique_ptr 
aNameDlg(pFact->CreateSvxNameDialog( GetActiveWindow(), aPageName, aDescr ));
 DBG_ASSERT(aNameDlg, "Dialog creation failed!");
 aNameDlg->SetText( aTitle );
 aNameDlg->SetCheckNameHdl( LINK( this, DrawViewShell, 
RenameSlideHdl ), true );
@@ -802,7 +801,7 @@ void DrawViewShell::FuTemporary(SfxRequest& 

[Bug 94228] replace BOOST_PP macros with C++11 variadic templates where possible

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

--- Comment #2 from Commit Notification 
 ---
Daniel Robertson committed a patch related to this issue.
It has been pushed to "master":

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

tdf#94228 comphelper: replace BOOST_PP

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 on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


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

2015-09-25 Thread Nicolas Christener
 sw/source/filter/ww8/ww8graf2.cxx |  160 +++---
 1 file changed, 81 insertions(+), 79 deletions(-)

New commits:
commit c70fc890b09f91cd4e12e212f1257518701f1505
Author: Nicolas Christener 
Date:   Fri Sep 25 11:37:35 2015 +0200

translate DE->EN, minor indentation fixes

Change-Id: Ie4672b41fcd67998187c5766dff8ee340b92e124
Reviewed-on: https://gerrit.libreoffice.org/18841
Tested-by: Jenkins 
Reviewed-by: Caolán McNamara 
Tested-by: Caolán McNamara 

diff --git a/sw/source/filter/ww8/ww8graf2.cxx 
b/sw/source/filter/ww8/ww8graf2.cxx
index 91717f8..6af7d80 100644
--- a/sw/source/filter/ww8/ww8graf2.cxx
+++ b/sw/source/filter/ww8/ww8graf2.cxx
@@ -157,8 +157,8 @@ sal_uLong wwZOrderer::GetEscherObjectPos( sal_uLong nSpId,
 return nRet;
 }
 
-// InsertObj() fuegt das Objekt in die Sw-Page ein und merkt sich die Z-Pos in
-// einem VarArr
+// InsertObj() adds the object into the Sw-Page and memorize the Z-position
+// in a VarArr
 void wwZOrderer::InsertDrawingObject(SdrObject* pObj, short nWwHeight)
 {
 sal_uLong nPos = GetDrawingObjectPos(nWwHeight);
@@ -204,12 +204,14 @@ void wwZOrderer::InsertTextLayerObject(SdrObject* pObject)
 }
 }
 
-// Parallel zu dem Obj-Array im Dokument baue ich ein Array auf,
-// dass die Ww-Height ( -> Wer ueberdeckt wen ) beinhaltet.
-// Anhand dieses VARARR wird die Einfuegeposition ermittelt.
-// Der Offset bei Datei in bestehendes Dokument mit Grafiklayer einfuegen
-// muss der Aufrufer den Index um mnNoInitialObjects erhoeht werden, damit die
-// neuen Objekte am Ende landen ( Einfuegen ist dann schneller )
+/* Parallel to the Obj-array in the document I also build an array which
+ * contains the Ww-height (-> what covers what).
+ * Based on this VARARR the position where the insertion happens is
+ * determined.
+ * When inserting the offset in an existing document with a graphic layer the
+ * caller has to increment the index by mnNoInitialObjects, so that the new
+ * objects are added at the end (inserting is faster then)
+ */
 sal_uLong wwZOrderer::GetDrawingObjectPos(short nWwHeight)
 {
 myditer aIter = maDrawHeight.begin();
@@ -246,24 +248,24 @@ bool SwWW8ImplReader::GetPictGrafFromStream(Graphic& 
rGraphic, SvStream& rSrc)
 
 bool SwWW8ImplReader::ReadGrafFile(OUString& rFileName, Graphic*& rpGraphic,
 const WW8_PIC& rPic, SvStream* pSt, sal_uLong nFilePos, bool* pbInDoc)
-{  // Grafik in File schreiben
+{  // Write the graphic to the 
file
 *pbInDoc = true;   // default
 
 sal_uLong nPosFc = nFilePos + rPic.cbHeader;
 
 switch (rPic.MFP.mm)
 {
-case 94: // BMP-File ( nicht embeddet ) oder GIF
-case 99: // TIFF-File ( nicht embeddet )
+case 94: // BMP-file ( not embedded ) or GIF
+case 99: // TIFF-file ( not embedded )
 pSt->Seek(nPosFc);
-// Name als P-String einlesen
+// read name as P-string
 rFileName = read_uInt8_PascalString(*pSt, m_eStructCharSet);
 if (!rFileName.isEmpty())
 rFileName = URIHelper::SmartRel2Abs(
 INetURLObject(m_sBaseURL), rFileName,
 URIHelper::GetMaybeFileHdl());
-*pbInDoc = false;   // Datei anschliessend nicht loeschen
-return !rFileName.isEmpty();// Einlesen OK
+*pbInDoc = false;   // Don't delete the file afterwards
+return !rFileName.isEmpty();// read was successful
 }
 
 GDIMetaFile aWMF;
@@ -273,16 +275,16 @@ bool SwWW8ImplReader::ReadGrafFile(OUString& rFileName, 
Graphic*& rpGraphic,
 if (!bOk || pSt->GetError() || !aWMF.GetActionSize())
 return false;
 
-if (m_pWwFib->envr != 1) // !MAC als Creator
+if (m_pWwFib->envr != 1) // !MAC as creator
 {
 rpGraphic = new Graphic( aWMF );
 return true;
 }
 
-// MAC - Word als Creator
-// im WMF steht nur "Benutzen sie Word 6.0c" Mac-Pict steht dahinter
-// allerdings ohne die ersten 512 Bytes, bei einem MAC-PICT egal sind (
-// werden nicht ausgewertet )
+// MAC - word as creator
+// The WMF only says "Please use Word 6.0c" and Mac-Pict follows but 
without
+// the first 512 Bytes which are not relevant in a MAC-PICT (they are not
+// interpreted)
 bOk = false;
 long nData = rPic.lcb - ( pSt->Tell() - nPosFc );
 if (nData > 0)
@@ -291,7 +293,7 @@ bool SwWW8ImplReader::ReadGrafFile(OUString& rFileName, 
Graphic*& rpGraphic,
 if (!(bOk = SwWW8ImplReader::GetPictGrafFromStream(*rpGraphic, *pSt)))
 DELETEZ(rpGraphic);
 }
-return bOk; // Grafik drin
+return bOk; // Contains graphic
 }
 
 struct WW8PicDesc
@@ -326,7 +328,7 @@ WW8PicDesc::WW8PicDesc( const WW8_PIC& rPic 

[Libreoffice-bugs] [Bug 94488] Nested tags embedvar to link do not work

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

--- Comment #3 from Regina Henschel  ---
Make it the other way round. Put the link into the variable. Then the link is
shown, when this variable is embedded.

Example:

File text/scalc/guild/filters.xhp defines for the heading the variable
'id="filters"' which contains a link 'href="text/scalc/guide/filters.xhp"'.
That is a kind of link to itself, it links to the file, which contains this
variable. In that file the link is not shown as link, because the file is
already in view. You see this file in the help from Contents > Spreadsheets >
Filtering and Sorting > Applying Filters.

This variable is embedded in file text/scalc/guild/main.xhp (see line 86). You
see this file in the help from Contents >Spreadsheets > General Information ...
> Instructions for Using LibreOffice Calc and therein with the link text
'Applying Filters'.

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

2015-09-25 Thread Nicolas Christener
 sw/source/filter/ww8/ww8par4.cxx |   82 ++-
 1 file changed, 38 insertions(+), 44 deletions(-)

New commits:
commit d1ffcc6f6b6b62a69a47dffe7efb3314fe8a13e7
Author: Nicolas Christener 
Date:   Fri Sep 25 20:27:19 2015 +0200

translate DE->EN

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

diff --git a/sw/source/filter/ww8/ww8par4.cxx b/sw/source/filter/ww8/ww8par4.cxx
index 1aeaacb..0a5d6be 100644
--- a/sw/source/filter/ww8/ww8par4.cxx
+++ b/sw/source/filter/ww8/ww8par4.cxx
@@ -69,17 +69,17 @@ using namespace ::com::sun::star;
 
 static bool SwWw8ReadScaling(long& rX, long& rY, tools::SvRef& 
rSrc1)
 {
-// Skalierungsfaktoren holen:
-//  Informationen in PIC-Stream ( durch ausprobieren )
+// Getting the scaling factor:
+//  Information in the PIC-stream (by trying out)
 //  0x0  (l)cb
 //  0x08 .. 0x0a Flags ??
-//  0x08 Inh: 1 / 0
-//  0x09 Inh: 0,8,0x18
-//  0x0a Inh: immer 8, MAP_ANISOTROPIC ???
-//  0x0b Inh: immer 0
-//  0x0c, 0x10 Originalgroesse x,y in 1/100 mm
-//  0x14, 0x16 Originalgroesse x,y in tw
-//  0x2c, 0x30 Skalierung x,y in Promille
+//  0x08 contains: 1 / 0
+//  0x09 contains: 0,8,0x18
+//  0x0a contains: always 8, MAP_ANISOTROPIC ???
+//  0x0b contains: always 0
+//  0x0c, 0x10 original size x,y in 1/100 mm
+//  0x14, 0x16 original size x,y in tw
+//  0x2c, 0x30 scaling x,y in per thousand
 //  0x34, 0x38, 0x3c, 0x40 Crop Left, Top, Right, Bot in tw
 
 tools::SvRef xSrc3 = rSrc1->OpenSotStream( 
OUString("\3PIC"),
@@ -113,7 +113,7 @@ static bool SwWw8ReadScaling(long& rX, long& rY, 
tools::SvRef& rSrc1
 rY = nOrgHeight - nCropTop  - nCropBottom;
 if (10 > nScaleX || 65536 < nScaleX || 10 > nScaleY || 65536 < nScaleY)
 {
-OSL_ENSURE( !pS, "+OLE-Scalinginformation in PIC-Stream wrong" );
+OSL_ENSURE( !pS, "+OLE-scaling information in PIC-stream wrong" );
 return false;
 }
 else
@@ -132,7 +132,7 @@ static bool SwWw6ReadMetaStream(GDIMetaFile& rWMF, OLE_MFP* 
pMfp,
 SotStorageStream* pSt = xSrc2;
 pSt->SetEndian( SvStreamEndian::LITTLE );
 sal_uLong nRead = pSt->Read( pMfp, sizeof(*pMfp ) );
-// Mini-Placable-Header lesen
+// read mini-placable-header
 if (nRead != sizeof(*pMfp))
 return false;
 
@@ -144,30 +144,29 @@ static bool SwWw6ReadMetaStream(GDIMetaFile& rWMF, 
OLE_MFP* pMfp,
 
 if( pMfp->mm == 94 || pMfp->mm == 99 )
 {
-OSL_ENSURE( !pSt, "+OLE: Falscher Metafile-Typ" );
+OSL_ENSURE( !pSt, "+OLE: wrong metafile type" );
 return false;
 }
 if( pMfp->mm != 8 )
 {
-OSL_ENSURE( !pSt, "+OLE: Falscher Metafile-Typ ( nicht Anisotropic )" 
);
+OSL_ENSURE( !pSt, "+OLE: wrong mMetafile type (not anisotropic)" );
 }
 if( !pMfp->xExt || !pMfp->yExt )
 {
-OSL_ENSURE( !pSt, "+OLE: Groesse von 0 ???" );
+OSL_ENSURE( !pSt, "+OLE: size of 0?" );
 return false;
 }
-bool bOk = ReadWindowMetafile( *pSt, rWMF, NULL );   // WMF lesen
-// *pSt >> aWMF  geht nicht ohne placable Header
+bool bOk = ReadWindowMetafile( *pSt, rWMF, NULL );   // read WMF
+// *pSt >> aWMF  doesn't work without the placable header
 if (!bOk || pSt->GetError() || rWMF.GetActionSize() == 0)
 {
-OSL_ENSURE( !pSt, "+OLE: Konnte Metafile nicht lesen" );
+OSL_ENSURE( !pSt, "+OLE: could not read the metafile" );
 return false;
 }
 
 rWMF.SetPrefMapMode( MapMode( MAP_100TH_MM ) );
 
-// MetaFile auf neue Groesse skalieren und
-// neue Groesse am MetaFile setzen
+// Scale MetaFile to new size and save new size to MetaFile
 SizeaOldSiz( rWMF.GetPrefSize() );
 SizeaNewSiz( pMfp->xExt, pMfp->yExt );
 FractionaFracX( aNewSiz.Width(), aOldSiz.Width() );
@@ -181,19 +180,19 @@ static bool SwWw6ReadMetaStream(GDIMetaFile& rWMF, 
OLE_MFP* pMfp,
 
 static bool SwWw6ReadMacPICTStream(Graphic& rGraph, tools::SvRef& 
rSrc1)
 {
-// 03-META-Stream nicht da. Vielleicht ein 03-PICT ?
+// 03-META-stream does not exist. Maybe a 03-PICT?
 tools::SvRef xSrc4 = 
rSrc1->OpenSotStream(OUString("\3PICT"));
 SotStorageStream* pStp = xSrc4;
 pStp->SetEndian( SvStreamEndian::LITTLE );
-sal_uInt8 aTestA[10];// Ist der 01Ole-Stream ueberhaupt vorhanden
+sal_uInt8 aTestA[10];// Does the 01Ole-stream even exist?
 sal_uLong nReadTst = pStp->Read( aTestA, sizeof( aTestA ) );
 if (nReadTst != sizeof(aTestA))
 return false;
 
 pStp->Seek( STREAM_SEEK_TO_BEGIN );
 

[Libreoffice-bugs] [Bug 67465] EPS rendering: locating pstoedit on Mac a problem

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

--- Comment #28 from Robert R. Howell  ---
(In reply to V Stuart Foote from comment #27)
> Well on OS X or Windows that is not an issue--pstoedit is not routinely
> installed (nor is Imagemagick, nor ghostscript). And, few Linux distros
> bundle pstoedit by default. So, which other software (on Linux) do you
> perceive as pstoedit dependent?  But guess if one has to have it for
> something substantive, might not be viable to hide it from path.
> 
Inkscape is the main package I use which requires pstoedit.

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


[Bug 67465] EPS rendering: locating pstoedit on Mac a problem

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

--- Comment #28 from Robert R. Howell  ---
(In reply to V Stuart Foote from comment #27)
> Well on OS X or Windows that is not an issue--pstoedit is not routinely
> installed (nor is Imagemagick, nor ghostscript). And, few Linux distros
> bundle pstoedit by default. So, which other software (on Linux) do you
> perceive as pstoedit dependent?  But guess if one has to have it for
> something substantive, might not be viable to hide it from path.
> 
Inkscape is the main package I use which requires pstoedit.

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


Trend line: differences between RegressionCurveCalculators

2015-09-25 Thread Laurent BP
Hello,

I'm working on improvements on trend line equation and I proposed a commit:
https://gerrit.libreoffice.org/18397/
I noticed that there are some differences between
RegressionCurveCalculators:

1. LogarithmicRegressionCurveCalculator is using "fabs()" 
http://opengrok.libreoffice.org/xref/core/chart2/source/tools/LogarithmicRegressionCurveCalculator.cxx#141
but PolynomialRegressionCurveCalculator is using "std::abs()"
http://opengrok.libreoffice.org/xref/core/chart2/source/tools/PolynomialRegressionCurveCalculator.cxx#258
Which one is better?

2. RegressionCalculationHelper.hxx defines two unicode constants. 
#define UC_MINUS_SIGN (sal_Unicode('-'))
opengrok.libreoffice.org/xref/core/chart2/source/inc/RegressionCalculationHelper.hxx#29
But they are only used is LogarithmicRegressionCurveCalculator.cxx.
opengrok.libreoffice.org/xref/core/chart2/source/tools/LogarithmicRegressionCurveCalculator.cxx#159
Other RegressionCurveCalculators do not use them
Should these #define be removed or should they be used by other
RegressionCurveCalculators?

Best regards,

Laurent BP



-
LibreOffice 4.3.6.2
--
View this message in context: 
http://nabble.documentfoundation.org/Trend-line-differences-between-RegressionCurveCalculators-tp4161350.html
Sent from the Dev mailing list archive at Nabble.com.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] core.git: desktop/inc desktop/source include/comphelper sfx2/inc sfx2/source sw/inc sw/source unoxml/source vcl/osx

2015-09-25 Thread Daniel Robertson
 desktop/inc/pch/precompiled_deployment.hxx|1 
 desktop/inc/pch/precompiled_deploymentmisc.hxx|1 
 desktop/source/deployment/misc/dp_descriptioninfoset.cxx  |5 
 desktop/source/deployment/registry/package/dp_package.cxx |4 
 include/comphelper/makesequence.hxx   |   80 --
 sfx2/inc/pch/precompiled_sfx.hxx  |1 
 sfx2/source/doc/DocumentMetadataAccess.cxx|4 
 sw/inc/pch/precompiled_sw.hxx |1 
 sw/source/core/unocore/unocoll.cxx|5 
 sw/source/core/unocore/unodraw.cxx|3 
 sw/source/filter/xml/wrtxml.cxx   |1 
 unoxml/source/rdf/librdf_repository.cxx   |1 
 vcl/osx/DragSource.cxx|3 
 vcl/osx/DropTarget.cxx|3 
 vcl/osx/clipboard.cxx |3 
 15 files changed, 10 insertions(+), 106 deletions(-)

New commits:
commit 8b00ac9b4627d8d7ed13d352ccb8932be6861d97
Author: Daniel Robertson 
Date:   Fri Sep 25 12:26:58 2015 -0400

tdf#94228 comphelper: replace BOOST_PP

Remove makeSequence.

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

diff --git a/desktop/inc/pch/precompiled_deployment.hxx 
b/desktop/inc/pch/precompiled_deployment.hxx
index e8b9ba7..2a269e9 100644
--- a/desktop/inc/pch/precompiled_deployment.hxx
+++ b/desktop/inc/pch/precompiled_deployment.hxx
@@ -106,7 +106,6 @@
 #include 
 #include 
 #include 
-#include 
 #include 
 #include 
 #include 
diff --git a/desktop/inc/pch/precompiled_deploymentmisc.hxx 
b/desktop/inc/pch/precompiled_deploymentmisc.hxx
index f2fcae9..e6fbc1b 100644
--- a/desktop/inc/pch/precompiled_deploymentmisc.hxx
+++ b/desktop/inc/pch/precompiled_deploymentmisc.hxx
@@ -49,7 +49,6 @@
 #include 
 #include 
 #include 
-#include 
 #include 
 #include 
 #include 
diff --git a/desktop/source/deployment/misc/dp_descriptioninfoset.cxx 
b/desktop/source/deployment/misc/dp_descriptioninfoset.cxx
index 8ba5b0a..984e253 100644
--- a/desktop/source/deployment/misc/dp_descriptioninfoset.cxx
+++ b/desktop/source/deployment/misc/dp_descriptioninfoset.cxx
@@ -24,7 +24,6 @@
 
 #include 
 #include 
-#include 
 #include 
 #include 
 #include 
@@ -469,7 +468,7 @@ css::uno::Sequence< OUString > 
DescriptionInfoset::getSupportedPlaforms() const
 //When there is no description.xml then we assume that we support all 
platforms
 if (! m_element.is())
 {
-return comphelper::makeSequence( OUString("all") );
+return { OUString("all") };
 }
 
 //Check if the  element was provided. If not the default is 
"all" platforms
@@ -477,7 +476,7 @@ css::uno::Sequence< OUString > 
DescriptionInfoset::getSupportedPlaforms() const
 m_xpath->selectSingleNode(m_element, "desc:platform"));
 if (!nodePlatform.is())
 {
-return comphelper::makeSequence( OUString("all") );
+return { OUString("all") };
 }
 
 //There is a platform element.
diff --git a/desktop/source/deployment/registry/package/dp_package.cxx 
b/desktop/source/deployment/registry/package/dp_package.cxx
index b97c458..4f974ec 100644
--- a/desktop/source/deployment/registry/package/dp_package.cxx
+++ b/desktop/source/deployment/registry/package/dp_package.cxx
@@ -35,7 +35,6 @@
 #include 
 #include 
 #include 
-#include 
 #include 
 #include 
 #include 
@@ -344,8 +343,7 @@ sal_Bool BackendImpl::supportsService(OUString const & 
ServiceName)
 Sequence BackendImpl::getSupportedServiceNames()
 throw (RuntimeException, std::exception)
 {
-return comphelper::makeSequence(
-OUString(BACKEND_SERVICE_NAME) );
+return { OUString(BACKEND_SERVICE_NAME) };
 }
 
 // XPackageRegistry
diff --git a/include/comphelper/makesequence.hxx 
b/include/comphelper/makesequence.hxx
deleted file mode 100644
index 48bb57c..000
--- a/include/comphelper/makesequence.hxx
+++ /dev/null
@@ -1,80 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- * This file incorporates work covered by the following license notice:
- *
- *   Licensed to the Apache Software Foundation (ASF) under one or more
- *   contributor license agreements. See the NOTICE file distributed
- *   with this work for additional information regarding copyright
- *   ownership. The ASF licenses this file to you under the Apache
- *   License, Version 2.0 (the 

[Libreoffice-bugs] [Bug 94228] replace BOOST_PP macros with C++11 variadic templates where possible

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

--- Comment #2 from Commit Notification 
 ---
Daniel Robertson committed a patch related to this issue.
It has been pushed to "master":

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

tdf#94228 comphelper: replace BOOST_PP

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: sc/source

2015-09-25 Thread Nicolas Christener
 sc/source/ui/dbgui/pfiltdlg.cxx |   38 +-
 1 file changed, 17 insertions(+), 21 deletions(-)

New commits:
commit ec45130e108e229e6b1ad8e3293afbb4073630fa
Author: Nicolas Christener 
Date:   Thu Sep 24 22:53:27 2015 +0200

translate DE->EN

Change-Id: Ic0afa7dc008d1c36b68f37a915f575b21e1548da
Reviewed-on: https://gerrit.libreoffice.org/18840
Tested-by: Jenkins 
Reviewed-by: Caolán McNamara 
Tested-by: Caolán McNamara 

diff --git a/sc/source/ui/dbgui/pfiltdlg.cxx b/sc/source/ui/dbgui/pfiltdlg.cxx
index 87de436..078fbfc 100644
--- a/sc/source/ui/dbgui/pfiltdlg.cxx
+++ b/sc/source/ui/dbgui/pfiltdlg.cxx
@@ -56,7 +56,7 @@ ScPivotFilterDlg::ScPivotFilterDlg(vcl::Window* pParent, 
const SfxItemSet& rArgS
 pOutItem( NULL ),
 pViewData   ( NULL ),
 pDoc( NULL ),
-nSrcTab ( nSourceTab ), // ist nicht im QueryParam
+nSrcTab ( nSourceTab ), // is not in QueryParam
 nFieldCount ( 0 )
 {
 get(m_pLbField1, "field1");
@@ -133,7 +133,7 @@ void ScPivotFilterDlg::Init( const SfxItemSet& rArgSet )
 pViewData   = rQueryItem.GetViewData();
 pDoc= pViewData ? pViewData->GetDocument() : NULL;
 
-// fuer leichteren Zugriff:
+// for easier access:
 aFieldLbArr  [0] = m_pLbField1;
 aFieldLbArr  [1] = m_pLbField2;
 aFieldLbArr  [2] = m_pLbField3;
@@ -155,10 +155,7 @@ void ScPivotFilterDlg::Init( const SfxItemSet& rArgSet )
 ScDBCollection* pDBColl = pDoc->GetDBCollection();
 OUString theDbName = OUString(STR_DB_LOCAL_NONAME);
 
-/*
- * Ueberpruefen, ob es sich bei dem uebergebenen
- * Bereich um einen Datenbankbereich handelt:
- */
+ // Check if the passed range is a database range
 
 if ( pDBColl )
 {
@@ -182,7 +179,7 @@ void ScPivotFilterDlg::Init( const SfxItemSet& rArgSet )
 m_pFtDbArea->SetText( EMPTY_OUSTRING );
 }
 
-// Feldlisten einlesen und Eintraege selektieren:
+// Read the field lists and select the entries:
 
 FillFieldLists();
 
@@ -209,15 +206,15 @@ void ScPivotFilterDlg::Init( const SfxItemSet& rArgSet )
 }
 else
 {
-aFieldLbArr[i]->SelectEntryPos( 0 ); // "keiner" selektieren
-aCondLbArr [i]->SelectEntryPos( 0 ); // "=" selektieren
+aFieldLbArr[i]->SelectEntryPos( 0 ); // "none" selected
+aCondLbArr [i]->SelectEntryPos( 0 ); // "=" selected
 UpdateValueList( static_cast(i) );
 aValueEdArr[i]->SetText( EMPTY_OUSTRING );
 }
 aValueEdArr[i]->SetModifyHdl( LINK( this, ScPivotFilterDlg, 
ValModifyHdl ) );
 }
 
-// Disable/Enable Logik:
+// disable/enable logic:
 
(m_pLbField1->GetSelectEntryPos() != 0)
 && (m_pLbField2->GetSelectEntryPos() != 0)
@@ -381,9 +378,9 @@ const ScQueryItem& ScPivotFilterDlg::GetOutputItem()
 OUString aStrVal = aValueEdArr[i]->GetText();
 
 /*
- * Dialog liefert die ausgezeichneten Feldwerte "leer"/"nicht leer"
- * als Konstanten in nVal in Verbindung mit dem Schalter
- * bQueryByString auf FALSE.
+ * The dialog returns the specifc field values "empty"/"non empty"
+ * as constant in nVal in connection with the bQueryByString switch
+ * set to false
  */
 if ( aStrVal.equals(aStrEmpty) )
 {
@@ -416,7 +413,7 @@ const ScQueryItem& ScPivotFilterDlg::GetOutputItem()
 : SC_AND;
 
 theParam.bInplace   = false;
-theParam.nDestTab   = 0;// Woher kommen diese Werte?
+theParam.nDestTab   = 0;// Where do those values come from?
 theParam.nDestCol   = 0;
 theParam.nDestRow   = 0;
 
@@ -434,11 +431,10 @@ const ScQueryItem& ScPivotFilterDlg::GetOutputItem()
 
 IMPL_LINK( ScPivotFilterDlg, LbSelectHdl, ListBox*, pLb )
 {
+
 /*
- * Behandlung der Enable/Disable-Logik,
- * abhaengig davon, welche ListBox angefasst wurde:
+ * Handling the enable/disable logic based on which ListBox was touched:
  */
-
 if (pLb == m_pLbConnect1)
 {
 if ( !m_pLbField2->IsEnabled() )
@@ -525,9 +521,9 @@ IMPL_LINK( ScPivotFilterDlg, LbSelectHdl, ListBox*, pLb )
 
 IMPL_LINK_TYPED( ScPivotFilterDlg, CheckBoxHdl, Button*, pBox, void )
 {
-//  bei Gross-/Kleinschreibung die Werte-Listen aktualisieren
+// update the value lists when dealing with uppercase/lowercase
 
-if (pBox == m_pBtnCase)// Wertlisten
+if (pBox == m_pBtnCase)// value lists
 {
 for (sal_uInt16 i=0; i<=MAXCOL; i++)
 DELETEZ( pEntryLists[i] );
@@ -554,8 +550,8 @@ IMPL_LINK( ScPivotFilterDlg, ValModifyHdl, ComboBox*, pEd )
 if ( pEd == m_pEdVal2 ) 

[Libreoffice-bugs] [Bug 38551] Find hard carriage return does not work. EDITING

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

--- Comment #12 from MarjaE  ---
Persists in 5.0.1.2. I'm not familiar with the substitute searches and haven't
been able to test them.

-- 
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 94514] New: Using cell names in fonctions does'nt work if name begin with 3 letters and an underscore

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

Bug ID: 94514
   Summary: Using cell names in fonctions does'nt work if name
begin with 3 letters and an underscore
   Product: LibreOffice
   Version: 5.0.1.2 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: major
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: harrycovert...@hotmail.fr

When using a cell name beginning with same letters than a real cell address
followed by an underscore (ie. matching "[a-zA-Z]{1,3}_.*", "abz_foo1" per
example) in a fonction, it's seen as the cell matching the beginning (as "ABZ"
per example):
 "=SUM(baz_begin:baz_end)" is seen as "=SUM(BAZ:BAZ)"

 (I know that one can name a range directly, I use a simple case for example).

 It probably worth to notice that if using the cell name directly in a formula
it works correctly:
 "= baz_begin + baz_end" is doing the job.

 I put severity as major, because the problem did'nt exist in v4.4, and this
can be a problem for who want to migrate, and a bigger one for who already
have. Anyway, a possible workaround is to prefix cell names with an underscore
before migration, if not to much cell names nor files.

 Hope you'll understand what I meant, as I'm not a native english speaker and
the problem is not so simple to explain…

 Thanks for care!
 And mainly thanks for all the great jobs done on LO!

Greetings!

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


[Libreoffice-commits] core.git: Branch 'libreoffice-4-4' - translations

2015-09-25 Thread Christian Lohmaier
 translations |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit cb55b37c8d46631c377b18d54458a299ac2991ac
Author: Christian Lohmaier 
Date:   Fri Sep 25 18:11:25 2015 +0200

Updated core
Project: translations  7c7b3f9e9bae728d72fdc88f61463e239c5c7e87

update translations for 4-4

and force-fix errors using pocheck

Change-Id: I232cdd7782671493693fcf62f8f816a922f4bbd8

diff --git a/translations b/translations
index 2f3952c..7c7b3f9 16
--- a/translations
+++ b/translations
@@ -1 +1 @@
-Subproject commit 2f3952c0272985376c1cc4d827c3fa1bac41d608
+Subproject commit 7c7b3f9e9bae728d72fdc88f61463e239c5c7e87
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: readlicense_oo/license

2015-09-25 Thread Christian Lohmaier
 readlicense_oo/license/CREDITS.fodt | 1842 ++--
 1 file changed, 926 insertions(+), 916 deletions(-)

New commits:
commit dfb00ac6ee43e008cc46c71546ba4af64d3a0bbd
Author: Christian Lohmaier 
Date:   Fri Sep 25 18:48:36 2015 +0200

update credits

Change-Id: I6287394ba04c7ec81ffb39229a0147e829615b07

diff --git a/readlicense_oo/license/CREDITS.fodt 
b/readlicense_oo/license/CREDITS.fodt
index 39f751c..c6275b0 100644
--- a/readlicense_oo/license/CREDITS.fodt
+++ b/readlicense_oo/license/CREDITS.fodt
@@ -1,28 +1,28 @@
 
 
 http://www.w3.org/1999/xlink; 
xmlns:dc="http://purl.org/dc/elements/1.1/; 
xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" 
xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" 
xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" 
xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" 
xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" 
xmlns:math="http://www.w3.org/1998/Math/MathML; 
xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" 
xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" 
xmlns:config="urn:oas
 is:names:tc:opendocument:xmlns:config:1.0" 
xmlns:ooo="http://openoffice.org/2004/office; 
xmlns:ooow="http://openoffice.org/2004/writer; 
xmlns:oooc="http://openoffice.org/2004/calc; 
xmlns:dom="http://www.w3.org/2001/xml-events; 
xmlns:xforms="http://www.w3.org/2002/xforms; 
xmlns:xsd="http://www.w3.org/2001/XMLSchema; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
xmlns:rpt="http://openoffice.org/2005/report; 
xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" 
xmlns:xhtml="http://www.w3.org/1999/xhtml; 
xmlns:grddl="http://www.w3.org/2003/g/data-view#; 
xmlns:officeooo="http://openoffice.org/2009/office; 
xmlns:tableooo="http://openoffice.org/2009/table; 
xmlns:drawooo="http://openoffice.org/2010/draw; 
xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0"
 
xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0"
 xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" 
xmlns:formx="urn:openoffice:names:
 experimental:ooxml-odf-interop:xmlns:form:1.0" 
xmlns:css3t="http://www.w3.org/TR/css3-text/; office:version="1.2" 
office:mimetype="application/vnd.oasis.opendocument.text">
- Credits » 
LibreOfficeCreditscontributorscodersdevelopersCredits
 for the LibreOffice 
development/coding.LibreOffice/5.0.2.1$Linux_X86_64
 
LibreOffice_project/9a18d52abbdfbdc2ac9acebec2b92e7859eb73b72012-02-20T22:17:18.06000PT14M12S3JUebjoxEpqXoQcpltWRTwzBZEEHtch3wApdhgiQPFiA
+ Credits » 
LibreOfficeCreditscontributorscodersdevelopersCredits
 for the LibreOffice 
development/coding.LibreOffice/5.0.2.2$Linux_X86_64
 
LibreOffice_project/37b43f919e4de5eeaca9b9755ed688758a8251fe2012-02-20T22:17:18.06000PT14M12S3JUebjoxEpqXoQcpltWRTwzBZEEHtch3wApdhgiQPFiA
  
   
-   660
+   748
501
-   53024
-   30023
+   36347
+   19678
true
true

 
  view2
- 4064
- 5029
+ 3556
+ 3443
  501
- 660
- 53523
- 30681
+ 748
+ 36846
+ 20424
  0
  0
  false
- 75
+ 110
  false
 

@@ -68,7 +68,7 @@
false
false
true
-   3597204
+   3637362
false
false
false
@@ -311,24 +311,21 @@
  
  
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   

   
-  
-   
-  
   

   
-  
+  

   
   
@@ -392,19 +389,19 @@

   
   
-   
+   
   
   

   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   

@@ -437,15 +434,15 @@


   
-  
-  
-  
-  
-  
-  
-  
+  

   
+  
+  
+  
+  
+  
+  
   

   
@@ -475,7 +472,7 @@
   
   

-   
+   
   
   

@@ -1018,14 +1015,14 @@

   
  Credits
-1081 individuals contributed to 
OpenOffice.org (and whose contributions were imported into LibreOffice) or 
LibreOffice until 2015-09-17 14:55:28.
+1080 individuals contributed to 
OpenOffice.org (and whose contributions were imported into LibreOffice) or 
LibreOffice until 2015-09-25 12:59:51.
 * marks developers whose first contributions 
happened after 2010-09-28.
 Developers 
committing code since 2010-09-28
 
  
  
  
- 
+ 
  
   
Ruediger 
TimmCommits: 82464Joined: 
2000-10-10
@@ -1045,10 +1042,10 @@
Vladimir 
GlazunovCommits: 25434Joined: 
2000-12-04
   
   
-   Caolán 
McNamaraCommits: 18025Joined: 
2000-10-10
+   Caolán 
McNamaraCommits: 18067Joined: 
2000-10-10
   
   
-   Stephan 
BergmannCommits: 9942Joined: 
2000-10-04
+   Stephan 
BergmannCommits: 9967Joined: 
2000-10-04
   
   
Ivo 
HinkelmannCommits: 9480Joined: 
2002-09-09
@@ -1056,7 +1053,7 @@
  
  
   
-   Tor 
LillqvistCommits: 7035Joined: 
2010-03-23
+   Tor 
LillqvistCommits: 7058Joined: 
2010-03-23
   
  

[Libreoffice-bugs] [Bug 67465] EPS rendering: locating pstoedit on Mac a problem

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

--- Comment #26 from Robert R. Howell  ---
Removing pstoedit does work as a debugging test (that's partly how I isolated
the problem) but it doesn't work in practice for most users because it breaks
other software packages which rely on pstoedit.  If there's a way to just
remove it from the LibreOffice path could you let me know?  But that still is a
much more obscure fix for most users than simply providing an option to
explicitly set the renderer preference.  If it were just me I'd simply reverse
the preference from the current one, but that might have negative impacts on
others.

I understand this patch doesn't fix all the problems, but the pdf and printer
output I get from this is still a LOT better than with pstoedit.  It may not
provide the enhancements requested by some, but it DOES (at least for me) fix
the very bad regression which started sometime after 4.1.6.  And that
regression for users who DID have tolerably working EPS rendering, is what has
caused the most serious complaints.

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


[Bug 67465] EPS rendering: locating pstoedit on Mac a problem

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

--- Comment #26 from Robert R. Howell  ---
Removing pstoedit does work as a debugging test (that's partly how I isolated
the problem) but it doesn't work in practice for most users because it breaks
other software packages which rely on pstoedit.  If there's a way to just
remove it from the LibreOffice path could you let me know?  But that still is a
much more obscure fix for most users than simply providing an option to
explicitly set the renderer preference.  If it were just me I'd simply reverse
the preference from the current one, but that might have negative impacts on
others.

I understand this patch doesn't fix all the problems, but the pdf and printer
output I get from this is still a LOT better than with pstoedit.  It may not
provide the enhancements requested by some, but it DOES (at least for me) fix
the very bad regression which started sometime after 4.1.6.  And that
regression for users who DID have tolerably working EPS rendering, is what has
caused the most serious complaints.

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


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

2015-09-25 Thread Caolán McNamara
 sd/source/ui/framework/tools/FrameworkHelper.cxx |2 +-
 sd/source/ui/inc/framework/FrameworkHelper.hxx   |2 +-
 sd/source/ui/remotecontrol/BluetoothServer.cxx   |4 ++--
 sd/source/ui/remotecontrol/BluetoothServer.hxx   |3 +--
 sd/source/ui/tools/PreviewRenderer.cxx   |3 +--
 5 files changed, 6 insertions(+), 8 deletions(-)

New commits:
commit a8200ce3effbddf0b5d26e7c50aa0c2853412a1a
Author: Caolán McNamara 
Date:   Fri Sep 25 12:43:51 2015 +0100

sd/source/ui/tools boost->std

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

diff --git a/sd/source/ui/framework/tools/FrameworkHelper.cxx 
b/sd/source/ui/framework/tools/FrameworkHelper.cxx
index b715424..eb4e135 100644
--- a/sd/source/ui/framework/tools/FrameworkHelper.cxx
+++ b/sd/source/ui/framework/tools/FrameworkHelper.cxx
@@ -321,7 +321,7 @@ public:
 
 //- FrameworkHelper ---
 
-::boost::scoped_ptr 
FrameworkHelper::mpViewURLMap(new ViewURLMap());
+std::unique_ptr FrameworkHelper::mpViewURLMap(new 
ViewURLMap());
 
 FrameworkHelper::InstanceMap FrameworkHelper::maInstanceMap;
 
diff --git a/sd/source/ui/inc/framework/FrameworkHelper.hxx 
b/sd/source/ui/inc/framework/FrameworkHelper.hxx
index d0d4b04..c5a688d 100644
--- a/sd/source/ui/inc/framework/FrameworkHelper.hxx
+++ b/sd/source/ui/inc/framework/FrameworkHelper.hxx
@@ -306,7 +306,7 @@ private:
 */
 static InstanceMap maInstanceMap;
 class ViewURLMap;
-static ::boost::scoped_ptr mpViewURLMap;
+static std::unique_ptr mpViewURLMap;
 
 ViewShellBase& mrBase;
 css::uno::Reference
diff --git a/sd/source/ui/remotecontrol/BluetoothServer.cxx 
b/sd/source/ui/remotecontrol/BluetoothServer.cxx
index 390e134..fb817dd 100644
--- a/sd/source/ui/remotecontrol/BluetoothServer.cxx
+++ b/sd/source/ui/remotecontrol/BluetoothServer.cxx
@@ -701,7 +701,7 @@ getDBusBooleanProperty( DBusConnection *pConnection, 
DBusObject *pAdapter,
 *pBoolean = false;
 bool bRet = false;
 
-::boost::scoped_ptr< DBusObject > pProperties (
+std::unique_ptr< DBusObject > pProperties (
 pAdapter->cloneForInterface( "org.freedesktop.DBus.Properties" ) );
 
 DBusMessage *pMsg = pProperties->getMethodCall( "Get" );
@@ -762,7 +762,7 @@ setDBusBooleanProperty( DBusConnection *pConnection, 
DBusObject *pAdapter,
 {
 assert( pAdapter );
 
-::boost::scoped_ptr< DBusObject > pProperties(
+std::unique_ptr< DBusObject > pProperties(
 pAdapter->cloneForInterface( "org.freedesktop.DBus.Properties" ) );
 
 DBusMessage *pMsg = pProperties->getMethodCall( "Set" );
diff --git a/sd/source/ui/remotecontrol/BluetoothServer.hxx 
b/sd/source/ui/remotecontrol/BluetoothServer.hxx
index 3724b37..bb24268 100644
--- a/sd/source/ui/remotecontrol/BluetoothServer.hxx
+++ b/sd/source/ui/remotecontrol/BluetoothServer.hxx
@@ -11,7 +11,6 @@
 
 #include 
 #include 
-#include 
 #include 
 
 #if (defined(LINUX) && !defined(__FreeBSD_kernel__)) && defined(ENABLE_DBUS)
@@ -47,7 +46,7 @@ namespace sd
 
 #ifdef LINUX_BLUETOOTH
 struct Impl;
-boost::scoped_ptr mpImpl;
+std::unique_ptr mpImpl;
 #endif
 virtual void SAL_CALL run() SAL_OVERRIDE;
 
diff --git a/sd/source/ui/tools/PreviewRenderer.cxx 
b/sd/source/ui/tools/PreviewRenderer.cxx
index 1aedf81..81b7ab1 100644
--- a/sd/source/ui/tools/PreviewRenderer.cxx
+++ b/sd/source/ui/tools/PreviewRenderer.cxx
@@ -37,7 +37,6 @@
 #include 
 
 #include 
-#include 
 
 using namespace ::com::sun::star;
 using namespace ::com::sun::star::uno;
@@ -309,7 +308,7 @@ void PreviewRenderer::PaintPage (
 }
 
 // Use a special redirector to prevent PresObj shapes from being painted.
-boost::scoped_ptr pRedirector;
+std::unique_ptr pRedirector;
 if ( ! bDisplayPresentationObjects)
 pRedirector.reset(new ViewRedirector());
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2015-09-25 Thread Christian Lohmaier
 configure.ac |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 81f6d10c0f413e8b452ca3ab90602d26265b9b8e
Author: Christian Lohmaier 
Date:   Fri Sep 25 19:54:42 2015 +0200

bump product version to 4.4.5.3.0+

Change-Id: I2ad3e07d91c47201adc5d5ffb7664c55f9edab93

diff --git a/configure.ac b/configure.ac
index 781f129..4bd1e7a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -9,7 +9,7 @@ dnl in order to create a configure script.
 # several non-alphanumeric characters, those are split off and used only for 
the
 # ABOUTBOXPRODUCTVERSIONSUFFIX in openoffice.lst. Why that is necessary, no 
idea.
 
-AC_INIT([LibreOffice],[4.4.5.2.0+],[],[],[http://documentfoundation.org/])
+AC_INIT([LibreOffice],[4.4.5.3.0+],[],[],[http://documentfoundation.org/])
 
 AC_PREREQ([2.59])
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] dictionaries.git: Changes to 'refs/tags/libreoffice-4.4.5.3'

2015-09-25 Thread Christian Lohmaier
Tag 'libreoffice-4.4.5.3' created by Christian Lohmaier 
 at 2015-09-25 18:48 -0700

Tag libreoffice-4.4.5.3
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAABAgAGBQJWBYjmAAoJEPQ0oe+v7q6jgq4QAI6vfob4X0smHUM6+BJ7ITvD
Kx8K1Nx0yI1apX/vzmmsuNJH/Af5VEVF1vF3knBQK3vBh89qa4dO41BL5z4Gahnt
D6TD8QlzBCo0oFE0K1egwcp72bsthLtBGoDGGGAc0ZUakNQld2a/RysZc1vmKDDp
3CDaFWzDUTo7u3x+aBxjXq56Chahpyr2ZIc7WtdYf/OQb0BdnF2N1p5yTUndfthG
gLbxyEnR217HQN297sYGFJZubkebbpALvLjo/kODg9rQdMH6yGmWrptD2TMW6eC1
wDiJsspXGtG6LDJp0XB4nxINMik+jFk8jO+3NaMoTJ/JG7+su5UqAVtJAlg1jNRa
p8fG5M/RNABfpCJ94IqGppjHSxQSqmObBgpwP9xCMd4Tr8ZIySuv8rHCvxLkUcpo
YugsjocsJhDhNBuRirVrRK3HdwwVhMSHnnQMCCmE5n45ihyL6sF3anxWfqNoAVuR
PfiV94wHqqe1CyKCcgDNiZvBDTRTxF8VMRbRL0skeytzfRk2VlZXXcNZQRIDBArS
suWvxmrJJ20WT/PWN6vUZbFWqDf+Yr8sxAXPhgMNY5YvdNYJFhLAdY7MehHrSt2S
gE3Opnm/Xn6NIMQO/Cwf8B+6OcMx+Tgey7Xr24XmxKT85KpcYeKCdT3oO4jiw6Kf
pvesmtURhYafcybRQeBp
=bqUS
-END PGP SIGNATURE-

Changes since cp-4.4-branch-point-6:
---
 0 files changed
---
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] help.git: Changes to 'refs/tags/libreoffice-4.4.5.3'

2015-09-25 Thread Christian Lohmaier
Tag 'libreoffice-4.4.5.3' created by Christian Lohmaier 
 at 2015-09-25 18:48 -0700

Tag libreoffice-4.4.5.3
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAABAgAGBQJWBYjpAAoJEPQ0oe+v7q6j81gP/1x1BCZKDKVg8nyN91Na0GJ2
DSW3lTEApc0nbGnihSTlg3VxWg0i803JXRmL84qqukUtWmoJn+a+E3sBzY5NZ9pC
xi+kcL/rtREQ3myB+WGY29GIZ2+SesIksSgknUxOvGB/TZT4a/7cPTPF28k3sKD3
QR9h9oJAyvXxpzVSBXo+u9Fbqa7x7JHP3Ro08Dcf5C8pdGZK61rjqZYDQbVlJk+h
j5IFh29zZmPJ/0uLHwZy1uvrceJ5jDzJ/mCm7PRywSNsdnlmjxh9fS3uIhvYu8wb
uKuspRGz1Ome1hVZfc0vEBI2pglVZdHYSAwpXkxK0drkK7yriQO3qqAbq50ANcaF
2tAkBKnopgoSu8rZsgcGBsUPbapt6q0mPs+YUqcl/GsQeKqPiYlbj44NrSWdkRjP
hwzomx07MfnAHITTzXfmTbgopi/6BRm4q5IlnCJIZOunzt1i2pmssMS6u04th7dJ
LCX2UlMhJDXnKGSSsc/ij8yOD0FXTefJYs1i4EpZtlgmpte6AgkpixCcWil/2gOh
4CxTs0JRZp/xUg1GEGwAHVa+koCUp00t7CAyAP5rvYd0IrMuC6xevHQyYcY9zb0Y
+b3Ejac498FFpW6JLxK3vZEAO9810W89iASpFhWZH5QFy+MP4D69Gtvynz6eTj7y
NWk1yCPDz1QIB4tk0v1x
=XoM/
-END PGP SIGNATURE-

Changes since cp-4.4-branch-point-1:
---
 0 files changed
---
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Changes to 'refs/tags/libreoffice-4.4.5.3'

2015-09-25 Thread Christian Lohmaier
Tag 'libreoffice-4.4.5.3' created by Christian Lohmaier 
 at 2015-09-25 18:48 -0700

Tag libreoffice-4.4.5.3
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAABAgAGBQJWBYj2AAoJEPQ0oe+v7q6jiOwP+gKBNHUYVWy5ebJnXetavaHL
6P4qsdny8/r8//LPQAjdkicumYtC71j33wcwnNo9xobbanDTmJC3JVYwb4r43JrX
oiscSoGdRwKKcmxoc+/SRONSkWpjg/c+YCXakkTtOhKsHqqz0pA5DI0JaD05hiZf
R4l03KYk6fusWpvHcG6movsR0t9S9fjMrAS5tHQBYvIxNmGlWi3LbQAN4gDWC+p6
HI2kSNvZHH8tsgUIkf4v4/PWTNUM4UUmfxoNcBbIhC63IpdFFuzgm2SgEBuq1TPW
J7aaSYmm33KwF9JqV7BegT9dQ/XRaZuvgpMMJ/zEggL2s0l7I4i3NuNfVjU2kpRR
cwRNRhaZcKtjvOXCHbscxFhu0Azdby4d4o77wBU/cVvtYaT/kj6FPU/chW7zytov
u0+uU9fEMHBzttGaUb8UhDpkNLdT7vQK/K9AbI8sosAFFvdk/dVoK0W/edTjlKIu
E/JQbiMjNoQw5aj4hiqP2idjAQImOZM3BS0Q/BA9OPtPV0HlpuPLnYlmDDkTIWdh
zhOMHLOqYmpTJlT/h6mnXUszubueNlmdDZtPtywP70DpTLN/95LnI0qpwho37z/z
jrvRrgmlixZ3QZD8wZSBQUqFS46m5NjJH/OUs/t3T/uIkDvA9ZQllcMwmI4lFwF4
CoQyV6Y+hZrpJjdeDFRU
=F/Pg
-END PGP SIGNATURE-

Changes since cp-4.4-branch-point-319:
---
 0 files changed
---
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] translations.git: Changes to 'refs/tags/libreoffice-4.4.5.3'

2015-09-25 Thread Christian Lohmaier
Tag 'libreoffice-4.4.5.3' created by Christian Lohmaier 
 at 2015-09-25 18:48 -0700

Tag libreoffice-4.4.5.3
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAABAgAGBQJWBYjsAAoJEPQ0oe+v7q6jNWQP/1K1p6Y4EPF5uD0siCzEeag/
hCltiClciy2GJVSHkY0e9YM+yqeV0s6SIM161qoJ1YnUAgqOLVRxN1H4YFEFIBYF
hroWzbTHpXyvxAPrX9wNDXQbYskJDD93NiKPBZKZ8Eh0z2HgBg14BlGnhlZVIgZ+
I8OBaNs5Ayc0d37uCJR3+ELZfFPAGpVNmm68jAs2MiZhJs577mU/LDz1nN4gJfDA
tmlrpFwiq+We9i20ngkVpiL0PpzXEqdzUAoJUJSH15rKAiWRQ+UxZIk86yU3tVHF
ECmnucQG85yXVFwC6eXijXYrOAk4P2Rphj0nN5BcGqwnr6HB2IfqG544+32a2AMo
Axhq6hH4zXTNCqXrvE4KLu5OsjB6K6A9fZ2CoOTnE7jQYb+fh0cxSYiHaECR0ExK
d/7DcvaJNFLfcch4llyDEGNPzS6X3bJNHz4Chp02LEioeIwlcN6BuO8N8dIqYsqn
bLo6TheZUs1wSIDJloQk5yr6jo0FG5Wrgd+kV11qEE7PboknLu+EoMQRmNbWYcJn
ZNNEwjGd937Or9uSgtg4e3Fum5vD9cwHaYj9uMXlHbSLu/MiKKGZz67SqmfCyR1r
5ulgPNj1R19Tbo2v9x1e8Z77NxflErw4X5D6nfvRrN/WmARQat5HFhoHYaKpFFFe
44jaXQy53saj7j2X6qS+
=dSZ2
-END PGP SIGNATURE-

Changes since cp-4.4-branch-point-10:
---
 0 files changed
---
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 94507] EDITING: Sort doesn't seem to work properly

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

--- Comment #3 from Ron Johnson  ---
> If I choose the second in the drop down list, sort is done correctly.
> So no bug here

Correct.  PEBKAC.  My apologies.

-- 
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 94512] New: SIDEBAR collapses when previewing a document

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

Bug ID: 94512
   Summary: SIDEBAR collapses when previewing a document
   Product: LibreOffice
   Version: 5.0.1.2 release
  Hardware: x86-64 (AMD64)
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: jean-francois.nifenec...@laposte.net

Previewing a document (Writer or Calc) causes the sidebar to slightly collapse
when it is docked along with the Navigator. After a few previews, the Sidebar
is almost squeezed and the Navigator takes almost all the vertical estate.

To reproduce:
-- Dock the Navigator on the right side, above or under the Sidebar.
-- Call File>Preview a few times.

Et voila.

-- 
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 94507] EDITING: Sort doesn't seem to work properly

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

GerardF  changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |NOTABUG

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


[Libreoffice-commits] core.git: Branch 'libreoffice-4-4-5' - translations

2015-09-25 Thread Christian Lohmaier
 translations |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 5884fec0ea16e70fbc0631a44c52dc31dd95ad8e
Author: Christian Lohmaier 
Date:   Fri Sep 25 18:11:25 2015 +0200

Updated core
Project: translations  3d704d365185550f0f75df38e00c034c843ae3d0

update translations for 4-4

and force-fix errors using pocheck

Change-Id: I232cdd7782671493693fcf62f8f816a922f4bbd8

diff --git a/translations b/translations
index 3b07942..3d704d3 16
--- a/translations
+++ b/translations
@@ -1 +1 @@
-Subproject commit 3b079429a27b80700c8f89d0ee4d735c812bbdf2
+Subproject commit 3d704d365185550f0f75df38e00c034c843ae3d0
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-4-4-5' - readlicense_oo/license

2015-09-25 Thread Christian Lohmaier
 readlicense_oo/license/CREDITS.fodt | 3260 +++-
 1 file changed, 1722 insertions(+), 1538 deletions(-)

New commits:
commit 3aafce5a6af9661c3196130702a30547bd6ba134
Author: Christian Lohmaier 
Date:   Fri Sep 25 18:53:58 2015 +0200

update credits

Change-Id: I004daf7cf792fbcfd289f313a366ad0f1a25ff3a

diff --git a/readlicense_oo/license/CREDITS.fodt 
b/readlicense_oo/license/CREDITS.fodt
index f11eb70..c6275b0 100644
--- a/readlicense_oo/license/CREDITS.fodt
+++ b/readlicense_oo/license/CREDITS.fodt
@@ -1,112 +1,87 @@
 
 
 http://www.w3.org/1999/xlink; 
xmlns:dc="http://purl.org/dc/elements/1.1/; 
xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" 
xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" 
xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" 
xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" 
xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" 
xmlns:math="http://www.w3.org/1998/Math/MathML; 
xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" 
xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" 
xmlns:config="urn:oas
 is:names:tc:opendocument:xmlns:config:1.0" 
xmlns:ooo="http://openoffice.org/2004/office; 
xmlns:ooow="http://openoffice.org/2004/writer; 
xmlns:oooc="http://openoffice.org/2004/calc; 
xmlns:dom="http://www.w3.org/2001/xml-events; 
xmlns:xforms="http://www.w3.org/2002/xforms; 
xmlns:xsd="http://www.w3.org/2001/XMLSchema; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
xmlns:rpt="http://openoffice.org/2005/report; 
xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" 
xmlns:xhtml="http://www.w3.org/1999/xhtml; 
xmlns:grddl="http://www.w3.org/2003/g/data-view#; 
xmlns:officeooo="http://openoffice.org/2009/office; 
xmlns:tableooo="http://openoffice.org/2009/table; 
xmlns:drawooo="http://openoffice.org/2010/draw; 
xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0"
 
xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0"
 xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" 
xmlns:formx="urn:openoffice:names:
 experimental:ooxml-odf-interop:xmlns:form:1.0" 
xmlns:css3t="http://www.w3.org/TR/css3-text/; office:version="1.2" 
office:mimetype="application/vnd.oasis.opendocument.text">
- Credits » 
LibreOfficeCreditscontributorscodersdevelopersCredits
 for the LibreOffice 
development/coding.LibreOffice/4.4.4.3$Linux_X86_64
 
LibreOffice_project/2c39ebcf046445232b798108aa8a7e7d89552ea82012-02-20T22:17:18.06000PT14M12S3JUebjoxEpqXoQcpltWRTwzBZEEHtch3wApdhgiQPFiA
+ Credits » 
LibreOfficeCreditscontributorscodersdevelopersCredits
 for the LibreOffice 
development/coding.LibreOffice/5.0.2.2$Linux_X86_64
 
LibreOffice_project/37b43f919e4de5eeaca9b9755ed688758a8251fe2012-02-20T22:17:18.06000PT14M12S3JUebjoxEpqXoQcpltWRTwzBZEEHtch3wApdhgiQPFiA
  
   
-   501
+   748
501
-   41250
-   22518
+   36347
+   19678
true
true

 
  view2
- 3676
- 3471
+ 3556
+ 3443
  501
- 501
- 41749
- 23017
+ 748
+ 36846
+ 20424
  0
  0
  false
- 100
+ 110
  false
 

   
   
-   
-   0
-   true
+   false
+   true
+   true
true
+   true
+   0
true
-   false
-   false
-   false
-   true
+   
+   false
+   false
false
+   false
false
-   false
false
+   false
false
+   false
+   false
false
+   false
false
-   false
+   true
+   false
true
-   true
true
-   1557161
-   false
-   false
-   false
-   false
-   false
-   false
-   false
-   false
+   false
+   false
+   false
+   
+   false
+   false
+   true
false
-   false
-   true
-   true
false
+   
+   false
false
-   false
-   false
-   true
-   false
-   true
-   false
-   false
-   false
-   false
-   false
-   false
-   true
-   high-resolution
-   false
-   
-   
-   false
-   false
-   0
-   
-   3292622
-   false
-   
-   true
-   false
false
-   true
-   0
+   false
+   true
+   3637362
+   false
+   false
false
+   false
+   true
+   true
+   false
true
-   false
+   0
+   false
true
-   true
-   false
+   high-resolution
false
-   false
-   true
-   false
-   false
-   true
-   false
-   
-   1
-   true

 
  hu
@@ -116,7 +91,33 @@
  
 

-   false
+   false
+   true
+   true
+   true
+   
+   true
+   true
+   false
+   false
+   false
+   
+   false
+   false
+   1557161
+   false
+   1
+   true
+   false
+   false
+   0
+   false
+   false
+   
+   
+   false
+   false
+   false
   
  
  
@@ -310,10 +311,10 @@
  
  
   
-   
+   
   
   
-   
+   
   
   

@@ -324,7 +325,7 @@
   

   
-  
+  

   
   
@@ -388,26 +389,23 @@

   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   

   
-  
-   
-  
   

   
@@ -436,42 +434,45 @@


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

2015-09-25 Thread Łukasz Hryniuk
 sc/qa/perf/scperfobj.cxx |   26 ++
 sc/qa/perf/testdocuments/scMathFunctions.ods |binary
 2 files changed, 26 insertions(+)

New commits:
commit d75406593d993724f266aae4f219aa7ca1e84b57
Author: Łukasz Hryniuk 
Date:   Fri Sep 25 17:44:19 2015 +0200

Performance test for ChiTest

Change-Id: I9176d46c627fa1aba043f5d0e3d8fd74431fa4b5
Reviewed-on: https://gerrit.libreoffice.org/18873
Reviewed-by: Markus Mohrhard 
Tested-by: Markus Mohrhard 

diff --git a/sc/qa/perf/scperfobj.cxx b/sc/qa/perf/scperfobj.cxx
index 310c004..42cc0eb 100644
--- a/sc/qa/perf/scperfobj.cxx
+++ b/sc/qa/perf/scperfobj.cxx
@@ -60,6 +60,7 @@ public:
 CPPUNIT_TEST(testSheets);
 CPPUNIT_TEST(testSum);
 CPPUNIT_TEST(testFTest);
+CPPUNIT_TEST(testChiTest);
 CPPUNIT_TEST_SUITE_END();
 
 private:
@@ -73,6 +74,7 @@ private:
 void testSheets();
 void testSum();
 void testFTest();
+void testChiTest();
 
 };
 
@@ -315,6 +317,30 @@ void ScPerfObj::testFTest()
 CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE("Wrong FTest result" , 0.8909, 
xCell->getValue(), 10e-4);
 }
 
+void ScPerfObj::testChiTest()
+{
+uno::Reference< sheet::XSpreadsheetDocument > 
xDoc(init("scMathFunctions.ods"), UNO_QUERY_THROW);
+
+CPPUNIT_ASSERT_MESSAGE("Problem in document loading" , xDoc.is());
+uno::Reference< sheet::XCalculatable > xCalculatable(xDoc, 
UNO_QUERY_THROW);
+
+// get getSheets
+uno::Reference< sheet::XSpreadsheets > xSheets (xDoc->getSheets(), 
UNO_QUERY_THROW);
+
+uno::Any rSheet = 
xSheets->getByName(OUString::createFromAscii("ChiTestSheet"));
+
+// query for the XSpreadsheet interface
+uno::Reference< sheet::XSpreadsheet > xSheet (rSheet, UNO_QUERY);
+uno::Reference< table::XCell > xCell = xSheet->getCellByPosition(0, 0);
+
+callgrindStart();
+
xCell->setFormula(OUString::createFromAscii("=CHITEST(B1:CV100;CW1:GQ100)"));
+xCalculatable->calculate();
+callgrindDump("sc:chitest");
+
+CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE("Wrong ChiTest result" , 0.0, 
xCell->getValue(), 10e-4);
+}
+
 CPPUNIT_TEST_SUITE_REGISTRATION(ScPerfObj);
 
 }
diff --git a/sc/qa/perf/testdocuments/scMathFunctions.ods 
b/sc/qa/perf/testdocuments/scMathFunctions.ods
index b80f8f6..2e74807 100644
Binary files a/sc/qa/perf/testdocuments/scMathFunctions.ods and 
b/sc/qa/perf/testdocuments/scMathFunctions.ods differ
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2015-09-25 Thread Noel Grandin
 cui/source/dialogs/postdlg.cxx |4 ++--
 cui/source/factory/dlgfact.cxx |   10 --
 cui/source/factory/dlgfact.hxx |4 ++--
 cui/source/inc/postdlg.hxx |8 
 4 files changed, 12 insertions(+), 14 deletions(-)

New commits:
commit 6fd356a08e92c043be612594eeba1521a837e48a
Author: Noel Grandin 
Date:   Thu Sep 24 19:04:43 2015 +0200

convert Link<> to typed

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

diff --git a/cui/source/dialogs/postdlg.cxx b/cui/source/dialogs/postdlg.cxx
index 14dea85..a2ab2ec 100644
--- a/cui/source/dialogs/postdlg.cxx
+++ b/cui/source/dialogs/postdlg.cxx
@@ -176,12 +176,12 @@ void SvxPostItDialog::EnableTravel(bool bNext, bool bPrev)
 
 IMPL_LINK_NOARG_TYPED(SvxPostItDialog, PrevHdl, Button*, void)
 {
-aPrevHdlLink.Call( this );
+aPrevHdlLink.Call( *this );
 }
 
 IMPL_LINK_NOARG_TYPED(SvxPostItDialog, NextHdl, Button*, void)
 {
-aNextHdlLink.Call( this );
+aNextHdlLink.Call( *this );
 }
 
 IMPL_LINK_NOARG_TYPED(SvxPostItDialog, Stamp, Button*, void)
diff --git a/cui/source/factory/dlgfact.cxx b/cui/source/factory/dlgfact.cxx
index 94356f2..6810b42 100644
--- a/cui/source/factory/dlgfact.cxx
+++ b/cui/source/factory/dlgfact.cxx
@@ -785,7 +785,7 @@ void AbstractSvxPostItDialog_Impl::SetNextHdl( const 
Link<>& rLink )
 if( rLink.IsSet() )
 pDlg->SetNextHdl( LINK(this, AbstractSvxPostItDialog_Impl, NextHdl ) );
 else
-pDlg->SetNextHdl( Link<>() );
+pDlg->SetNextHdl( Link() );
 }
 void AbstractSvxPostItDialog_Impl::SetPrevHdl( const Link<>& rLink )
 {
@@ -793,19 +793,17 @@ void AbstractSvxPostItDialog_Impl::SetPrevHdl( const 
Link<>& rLink )
 if( rLink.IsSet() )
 pDlg->SetPrevHdl( LINK(this, AbstractSvxPostItDialog_Impl, PrevHdl ) );
 else
-pDlg->SetPrevHdl( Link<>() );
+pDlg->SetPrevHdl( Link() );
 }
-IMPL_LINK_NOARG(AbstractSvxPostItDialog_Impl, NextHdl)
+IMPL_LINK_NOARG_TYPED(AbstractSvxPostItDialog_Impl, NextHdl, SvxPostItDialog&, 
void)
 {
 if( aNextHdl.IsSet() )
 aNextHdl.Call(this);
-return 0;
 }
-IMPL_LINK_NOARG(AbstractSvxPostItDialog_Impl, PrevHdl)
+IMPL_LINK_NOARG_TYPED(AbstractSvxPostItDialog_Impl, PrevHdl, SvxPostItDialog&, 
void)
 {
 if( aPrevHdl.IsSet() )
 aPrevHdl.Call(this);
-return 0;
 }
 vcl::Window * AbstractSvxPostItDialog_Impl::GetWindow()
 {
diff --git a/cui/source/factory/dlgfact.hxx b/cui/source/factory/dlgfact.hxx
index 949e252..af543dc 100644
--- a/cui/source/factory/dlgfact.hxx
+++ b/cui/source/factory/dlgfact.hxx
@@ -460,8 +460,8 @@ class AbstractSvxPostItDialog_Impl :public 
AbstractSvxPostItDialog
 private:
 Link<> aNextHdl;
 Link<> aPrevHdl;
-DECL_LINK(NextHdl, void *);
-DECL_LINK(PrevHdl, void *);
+DECL_LINK_TYPED(NextHdl, SvxPostItDialog&, void);
+DECL_LINK_TYPED(PrevHdl, SvxPostItDialog&, void);
 };
 
 class PasswordToOpenModifyDialog;
diff --git a/cui/source/inc/postdlg.hxx b/cui/source/inc/postdlg.hxx
index 3951908..d367676 100644
--- a/cui/source/inc/postdlg.hxx
+++ b/cui/source/inc/postdlg.hxx
@@ -51,9 +51,9 @@ public:
 static const sal_uInt16*  GetRanges();
 const SfxItemSet*   GetOutputItemSet() const { return pOutSet; }
 
-voidSetPrevHdl( const Link<>& rLink )
+voidSetPrevHdl( const Link& rLink )
 { aPrevHdlLink = rLink; }
-voidSetNextHdl( const Link<>& rLink )
+voidSetNextHdl( const Link& rLink )
 { aNextHdlLink = rLink; }
 
 void EnableTravel(bool bNext, bool bPrev);
@@ -91,8 +91,8 @@ private:
 const SfxItemSet&   rSet;
 SfxItemSet* pOutSet;
 
-Link<>  aPrevHdlLink;
-Link<>  aNextHdlLink;
+Link  aPrevHdlLink;
+Link  aNextHdlLink;
 
 DECL_LINK_TYPED(Stamp, Button*, void);
 DECL_LINK_TYPED(OKHdl, Button*, void);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2015-09-25 Thread Noel Grandin
 cui/source/factory/dlgfact.cxx |4 ++--
 cui/source/factory/dlgfact.hxx |4 ++--
 cui/source/options/optcolor.cxx|6 +++---
 cui/source/options/optcolor.hxx|2 +-
 include/svx/svxdlg.hxx |2 +-
 sd/source/ui/docshell/docshel2.cxx |   11 ---
 sd/source/ui/inc/DrawDocShell.hxx  |8 
 sd/source/ui/inc/DrawViewShell.hxx |2 +-
 sd/source/ui/slidesorter/controller/SlsSlotManager.cxx |   11 ---
 sd/source/ui/slidesorter/inc/controller/SlsSlotManager.hxx |2 +-
 sd/source/ui/view/drviewsb.cxx |9 +++--
 11 files changed, 26 insertions(+), 35 deletions(-)

New commits:
commit 51b2ad378a8531a7b02433594cd7f6bbd6a61222
Author: Noel Grandin 
Date:   Thu Sep 24 18:59:52 2015 +0200

convert Link<> to typed

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

diff --git a/cui/source/factory/dlgfact.cxx b/cui/source/factory/dlgfact.cxx
index 88806b3..94356f2 100644
--- a/cui/source/factory/dlgfact.cxx
+++ b/cui/source/factory/dlgfact.cxx
@@ -587,7 +587,7 @@ void AbstractSvxNameDialog_Impl::GetName(OUString& rName)
 pDlg->GetName( rName );
 }
 
-void AbstractSvxNameDialog_Impl::SetCheckNameHdl( const Link<>& rLink, bool 
bCheckImmediately )
+void AbstractSvxNameDialog_Impl::SetCheckNameHdl( const 
Link& rLink, bool bCheckImmediately )
 {
 aCheckNameHdl = rLink;
 if( rLink.IsSet() )
@@ -610,7 +610,7 @@ void AbstractSvxNameDialog_Impl::SetText( const OUString& 
rStr )
 IMPL_LINK_NOARG_TYPED(AbstractSvxNameDialog_Impl, CheckNameHdl, 
SvxNameDialog&, bool)
 {
 if( aCheckNameHdl.IsSet() )
-return aCheckNameHdl.Call(this);
+return aCheckNameHdl.Call(*this);
 return false;
 }
 
diff --git a/cui/source/factory/dlgfact.hxx b/cui/source/factory/dlgfact.hxx
index 5477392..949e252 100644
--- a/cui/source/factory/dlgfact.hxx
+++ b/cui/source/factory/dlgfact.hxx
@@ -325,13 +325,13 @@ class AbstractSvxNameDialog_Impl :public 
AbstractSvxNameDialog
 {
 DECL_ABSTDLG_BASE(AbstractSvxNameDialog_Impl,SvxNameDialog)
 virtual voidGetName( OUString& rName ) SAL_OVERRIDE ;
-virtual voidSetCheckNameHdl( const Link<>& rLink, bool 
bCheckImmediately = false ) SAL_OVERRIDE ;
+virtual voidSetCheckNameHdl( const Link& 
rLink, bool bCheckImmediately = false ) SAL_OVERRIDE ;
 virtual voidSetEditHelpId(const OString&) SAL_OVERRIDE ;
 //from class Window
 virtual voidSetHelpId( const OString& ) SAL_OVERRIDE ;
 virtual voidSetText( const OUString& rStr ) SAL_OVERRIDE ;
 private:
-Link<> aCheckNameHdl;
+Link aCheckNameHdl;
 DECL_LINK_TYPED(CheckNameHdl, SvxNameDialog&, bool);
 };
 
diff --git a/cui/source/options/optcolor.cxx b/cui/source/options/optcolor.cxx
index 76a2ec3..d95fd2a 100644
--- a/cui/source/options/optcolor.cxx
+++ b/cui/source/options/optcolor.cxx
@@ -1227,11 +1227,11 @@ IMPL_LINK_TYPED(SvxColorOptionsTabPage, 
SaveDeleteHdl_Impl, Button*, pButton, vo
 m_pDeleteSchemePB->Enable( m_pColorSchemeLB->GetEntryCount() > 1 );
 }
 
-IMPL_LINK(SvxColorOptionsTabPage, CheckNameHdl_Impl, AbstractSvxNameDialog*, 
pDialog )
+IMPL_LINK_TYPED(SvxColorOptionsTabPage, CheckNameHdl_Impl, 
AbstractSvxNameDialog&, rDialog, bool )
 {
 OUString sName;
-pDialog->GetName(sName);
-return long(!sName.isEmpty() && LISTBOX_ENTRY_NOTFOUND == 
m_pColorSchemeLB->GetEntryPos( sName ));
+rDialog.GetName(sName);
+return !sName.isEmpty() && LISTBOX_ENTRY_NOTFOUND == 
m_pColorSchemeLB->GetEntryPos( sName );
 }
 
 void SvxColorOptionsTabPage::FillUserData()
diff --git a/cui/source/options/optcolor.hxx b/cui/source/options/optcolor.hxx
index ca29041..f182e4b 100644
--- a/cui/source/options/optcolor.hxx
+++ b/cui/source/options/optcolor.hxx
@@ -43,7 +43,7 @@ class SvxColorOptionsTabPage : public SfxTabPage
 
 DECL_LINK(SchemeChangedHdl_Impl, ListBox*);
 DECL_LINK_TYPED(SaveDeleteHdl_Impl, Button*, void);
-DECL_LINK(CheckNameHdl_Impl, AbstractSvxNameDialog*);
+DECL_LINK_TYPED(CheckNameHdl_Impl, AbstractSvxNameDialog&, bool);
 void UpdateColorConfig();
 
 public:
diff --git a/include/svx/svxdlg.hxx b/include/svx/svxdlg.hxx
index 459b61e..d97090b 100644
--- a/include/svx/svxdlg.hxx
+++ b/include/svx/svxdlg.hxx
@@ -158,7 +158,7 @@ class AbstractSvxNameDialog :public VclAbstractDialog
 {
 public:
 virtual voidGetName( OUString& rName ) = 0;
-virtual voidSetCheckNameHdl( const Link<>& rLink, bool 
bCheckImmediately = false ) = 0;
+virtual void

[Libreoffice-commits] core.git: Branch 'libreoffice-4-4' - readlicense_oo/license

2015-09-25 Thread Christian Lohmaier
 readlicense_oo/license/CREDITS.fodt | 1842 ++--
 1 file changed, 926 insertions(+), 916 deletions(-)

New commits:
commit 7412783d1d513406e5a132a822835a92cae8e233
Author: Christian Lohmaier 
Date:   Fri Sep 25 18:48:36 2015 +0200

update credits

Change-Id: I6287394ba04c7ec81ffb39229a0147e829615b07
(cherry picked from commit dfb00ac6ee43e008cc46c71546ba4af64d3a0bbd)

diff --git a/readlicense_oo/license/CREDITS.fodt 
b/readlicense_oo/license/CREDITS.fodt
index 39f751c..c6275b0 100644
--- a/readlicense_oo/license/CREDITS.fodt
+++ b/readlicense_oo/license/CREDITS.fodt
@@ -1,28 +1,28 @@
 
 
 http://www.w3.org/1999/xlink; 
xmlns:dc="http://purl.org/dc/elements/1.1/; 
xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" 
xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" 
xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" 
xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" 
xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" 
xmlns:math="http://www.w3.org/1998/Math/MathML; 
xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" 
xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" 
xmlns:config="urn:oas
 is:names:tc:opendocument:xmlns:config:1.0" 
xmlns:ooo="http://openoffice.org/2004/office; 
xmlns:ooow="http://openoffice.org/2004/writer; 
xmlns:oooc="http://openoffice.org/2004/calc; 
xmlns:dom="http://www.w3.org/2001/xml-events; 
xmlns:xforms="http://www.w3.org/2002/xforms; 
xmlns:xsd="http://www.w3.org/2001/XMLSchema; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
xmlns:rpt="http://openoffice.org/2005/report; 
xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" 
xmlns:xhtml="http://www.w3.org/1999/xhtml; 
xmlns:grddl="http://www.w3.org/2003/g/data-view#; 
xmlns:officeooo="http://openoffice.org/2009/office; 
xmlns:tableooo="http://openoffice.org/2009/table; 
xmlns:drawooo="http://openoffice.org/2010/draw; 
xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0"
 
xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0"
 xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" 
xmlns:formx="urn:openoffice:names:
 experimental:ooxml-odf-interop:xmlns:form:1.0" 
xmlns:css3t="http://www.w3.org/TR/css3-text/; office:version="1.2" 
office:mimetype="application/vnd.oasis.opendocument.text">
- Credits » 
LibreOfficeCreditscontributorscodersdevelopersCredits
 for the LibreOffice 
development/coding.LibreOffice/5.0.2.1$Linux_X86_64
 
LibreOffice_project/9a18d52abbdfbdc2ac9acebec2b92e7859eb73b72012-02-20T22:17:18.06000PT14M12S3JUebjoxEpqXoQcpltWRTwzBZEEHtch3wApdhgiQPFiA
+ Credits » 
LibreOfficeCreditscontributorscodersdevelopersCredits
 for the LibreOffice 
development/coding.LibreOffice/5.0.2.2$Linux_X86_64
 
LibreOffice_project/37b43f919e4de5eeaca9b9755ed688758a8251fe2012-02-20T22:17:18.06000PT14M12S3JUebjoxEpqXoQcpltWRTwzBZEEHtch3wApdhgiQPFiA
  
   
-   660
+   748
501
-   53024
-   30023
+   36347
+   19678
true
true

 
  view2
- 4064
- 5029
+ 3556
+ 3443
  501
- 660
- 53523
- 30681
+ 748
+ 36846
+ 20424
  0
  0
  false
- 75
+ 110
  false
 

@@ -68,7 +68,7 @@
false
false
true
-   3597204
+   3637362
false
false
false
@@ -311,24 +311,21 @@
  
  
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   

   
-  
-   
-  
   

   
-  
+  

   
   
@@ -392,19 +389,19 @@

   
   
-   
+   
   
   

   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   

@@ -437,15 +434,15 @@


   
-  
-  
-  
-  
-  
-  
-  
+  

   
+  
+  
+  
+  
+  
+  
   

   
@@ -475,7 +472,7 @@
   
   

-   
+   
   
   

@@ -1018,14 +1015,14 @@

   
  Credits
-1081 individuals contributed to 
OpenOffice.org (and whose contributions were imported into LibreOffice) or 
LibreOffice until 2015-09-17 14:55:28.
+1080 individuals contributed to 
OpenOffice.org (and whose contributions were imported into LibreOffice) or 
LibreOffice until 2015-09-25 12:59:51.
 * marks developers whose first contributions 
happened after 2010-09-28.
 Developers 
committing code since 2010-09-28
 
  
  
  
- 
+ 
  
   
Ruediger 
TimmCommits: 82464Joined: 
2000-10-10
@@ -1045,10 +1042,10 @@
Vladimir 
GlazunovCommits: 25434Joined: 
2000-12-04
   
   
-   Caolán 
McNamaraCommits: 18025Joined: 
2000-10-10
+   Caolán 
McNamaraCommits: 18067Joined: 
2000-10-10
   
   
-   Stephan 
BergmannCommits: 9942Joined: 
2000-10-04
+   Stephan 
BergmannCommits: 9967Joined: 
2000-10-04
   
   
Ivo 
HinkelmannCommits: 9480Joined: 
2002-09-09
@@ -1056,7 +1053,7 @@
  
  
   
-   Tor 
LillqvistCommits: 7035Joined: 

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

2015-09-25 Thread Noel Grandin
 cui/source/factory/dlgfact.cxx   |4 
 cui/source/factory/dlgfact.hxx   |4 
 cui/source/inc/labdlg.hxx|6 -
 cui/source/inc/swpossizetabpage.hxx  |6 -
 cui/source/inc/transfrm.hxx  |5 -
 cui/source/tabpages/labdlg.cxx   |2 
 cui/source/tabpages/swpossizetabpage.cxx |2 
 cui/source/tabpages/transfrm.cxx |2 
 include/svx/svxdlg.hxx   |5 -
 sw/source/uibase/inc/drwbassh.hxx|2 
 sw/source/uibase/shells/drwbassh.cxx |  151 +++
 11 files changed, 96 insertions(+), 93 deletions(-)

New commits:
commit 825b9982a5de3ab94820ce5257bb446ea0a1c20a
Author: Noel Grandin 
Date:   Thu Sep 24 18:24:43 2015 +0200

convert Link<> to typed

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

diff --git a/cui/source/factory/dlgfact.cxx b/cui/source/factory/dlgfact.cxx
index 9f39f38..88806b3 100644
--- a/cui/source/factory/dlgfact.cxx
+++ b/cui/source/factory/dlgfact.cxx
@@ -518,7 +518,7 @@ OUString AbstractSvxTransformTabDialog_Impl::GetText() const
 {
 return pDlg->GetText();
 }
-void AbstractSvxTransformTabDialog_Impl::SetValidateFramePosLink( const 
Link<>& rLink )
+void AbstractSvxTransformTabDialog_Impl::SetValidateFramePosLink( const 
Link& rLink )
 {
 pDlg->SetValidateFramePosLink( rLink );
 }
@@ -557,7 +557,7 @@ OUString AbstractSvxCaptionDialog_Impl::GetText() const
 {
 return pDlg->GetText();
 }
-void AbstractSvxCaptionDialog_Impl::SetValidateFramePosLink( const Link<>& 
rLink )
+void AbstractSvxCaptionDialog_Impl::SetValidateFramePosLink( const 
Link& rLink )
 {
 pDlg->SetValidateFramePosLink( rLink );
 }
diff --git a/cui/source/factory/dlgfact.hxx b/cui/source/factory/dlgfact.hxx
index 4c8b228..5477392 100644
--- a/cui/source/factory/dlgfact.hxx
+++ b/cui/source/factory/dlgfact.hxx
@@ -282,7 +282,7 @@ class AbstractSvxJSearchOptionsDialog_Impl :public 
AbstractSvxJSearchOptionsDial
 class AbstractSvxTransformTabDialog_Impl : public AbstractSvxTransformTabDialog
 {
 DECL_ABSTDLG_BASE(AbstractSvxTransformTabDialog_Impl,SvxTransformTabDialog)
-virtual void SetValidateFramePosLink( const Link<>& rLink ) SAL_OVERRIDE;
+virtual void SetValidateFramePosLink( const 
Link& rLink ) SAL_OVERRIDE;
 virtual voidSetCurPageId( sal_uInt16 nId ) SAL_OVERRIDE;
 virtual voidSetCurPageId( const OString& rName ) 
SAL_OVERRIDE;
 virtual const SfxItemSet*   GetOutputItemSet() const SAL_OVERRIDE;
@@ -295,7 +295,7 @@ class AbstractSvxTransformTabDialog_Impl : public 
AbstractSvxTransformTabDialog
 class AbstractSvxCaptionDialog_Impl : public AbstractSvxCaptionDialog
 {
 DECL_ABSTDLG_BASE(AbstractSvxCaptionDialog_Impl,SvxCaptionTabDialog)
-virtual void SetValidateFramePosLink( const Link<>& rLink ) SAL_OVERRIDE;
+virtual void SetValidateFramePosLink( const 
Link& rLink ) SAL_OVERRIDE;
 virtual voidSetCurPageId( sal_uInt16 nId ) SAL_OVERRIDE;
 virtual voidSetCurPageId( const OString& rName ) 
SAL_OVERRIDE;
 virtual const SfxItemSet*   GetOutputItemSet() const SAL_OVERRIDE;
diff --git a/cui/source/inc/labdlg.hxx b/cui/source/inc/labdlg.hxx
index 14469df..571559a 100644
--- a/cui/source/inc/labdlg.hxx
+++ b/cui/source/inc/labdlg.hxx
@@ -92,7 +92,7 @@ public:
 };
 
 // class SvxCaptionTabDialog -
-
+struct SvxSwFrameValidation;
 class SvxCaptionTabDialog : public SfxTabDialog
 {
 private:
@@ -102,7 +102,7 @@ private:
 sal_uInt16 m_nPositionSizePageId;
 sal_uInt16 m_nCaptionPageId;
 
-Link<>  aValidateLink;
+Link aValidateLink;
 
 virtual voidPageCreated( sal_uInt16 nId, SfxTabPage  ) 
SAL_OVERRIDE;
 
@@ -111,7 +111,7 @@ public:
 sal_uInt16 nAnchorTypes = 0);
 
 /// link for the Writer to validate positions
-void SetValidateFramePosLink( const Link<>& rLink );
+void SetValidateFramePosLink( const Link& 
rLink );
 };
 
 
diff --git a/cui/source/inc/swpossizetabpage.hxx 
b/cui/source/inc/swpossizetabpage.hxx
index 10f6345..6003fc6 100644
--- a/cui/source/inc/swpossizetabpage.hxx
+++ b/cui/source/inc/swpossizetabpage.hxx
@@ -30,6 +30,8 @@
 // SvxSwPosSizeTabPage - position and size page for Writer drawing objects
 struct FrmMap;
 class SdrView;
+struct SvxSwFrameValidation;
+
 class SvxSwPosSizeTabPage : public SfxTabPage
 {
 using TabPage::DeactivatePage;
@@ -68,7 +70,7 @@ class SvxSwPosSizeTabPage : public SfxTabPage
 
 VclPtr m_pExampleWN;
 
-Link<>  m_aValidateLink;
+

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

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

New commits:
commit 14a5131658cd25009c625fcf2472a49d9392de6c
Author: Noel Grandin 
Date:   Fri Sep 25 11:19:01 2015 +0200

convert Link<> to typed

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

diff --git a/cui/source/dialogs/cuifmsearch.cxx 
b/cui/source/dialogs/cuifmsearch.cxx
index b0d80cf..bb410ac 100644
--- a/cui/source/dialogs/cuifmsearch.cxx
+++ b/cui/source/dialogs/cuifmsearch.cxx
@@ -696,7 +696,7 @@ void FmSearchDialog::OnFound(const css::uno::Any& 
aCursorPos, sal_Int16 nFieldPo
 // this of course implies that I have really searched in the field 
that is selected in the listbox,
 // which is made sure in RebuildUsedFields
 
-m_lnkFoundHandler.Call();
+m_lnkFoundHandler.Call(friInfo);
 
 m_pcmbSearchText->GrabFocus();
 }
diff --git a/cui/source/factory/dlgfact.cxx b/cui/source/factory/dlgfact.cxx
index 426fe28..5b00fd1 100644
--- a/cui/source/factory/dlgfact.cxx
+++ b/cui/source/factory/dlgfact.cxx
@@ -694,7 +694,7 @@ bool AbstractSvxHpLinkDlg_Impl::QueryClose()
 }
 
 
-void AbstractFmSearchDialog_Impl::SetFoundHandler(const Link<>& lnk)
+void AbstractFmSearchDialog_Impl::SetFoundHandler(const 
Link& lnk)
 {
 pDlg->SetFoundHandler(lnk);
 }
diff --git a/cui/source/factory/dlgfact.hxx b/cui/source/factory/dlgfact.hxx
index f7d9e6b..2fd4ebf 100644
--- a/cui/source/factory/dlgfact.hxx
+++ b/cui/source/factory/dlgfact.hxx
@@ -389,10 +389,11 @@ class AbstractSvxHpLinkDlg_Impl :public 
AbstractSvxHpLinkDlg
 };
 
 class FmSearchDialog;
+struct FmFoundRecordInformation;
 class AbstractFmSearchDialog_Impl :public AbstractFmSearchDialog
 {
 DECL_ABSTDLG_BASE(AbstractFmSearchDialog_Impl,FmSearchDialog)
-virtual void SetFoundHandler(const Link<>& lnk) SAL_OVERRIDE ;
+virtual void SetFoundHandler(const Link& 
lnk) SAL_OVERRIDE ;
 virtual void SetCanceledNotFoundHdl(const Link<>& lnk) SAL_OVERRIDE;
 virtual void SetActiveField(const OUString& strField) SAL_OVERRIDE;
 };
diff --git a/cui/source/inc/cuifmsearch.hxx b/cui/source/inc/cuifmsearch.hxx
index c41ea5c..c52fd38 100644
--- a/cui/source/inc/cuifmsearch.hxx
+++ b/cui/source/inc/cuifmsearch.hxx
@@ -78,7 +78,7 @@ class FmSearchDialog : public ModalDialog
 
 VclPtr m_pPreSearchFocus;
 
-Link<>  m_lnkFoundHandler;  ///< Handler for "found"
+Link  m_lnkFoundHandler;  ///< 
Handler for "found"
 Link<>  m_lnkCanceledNotFoundHdl;   ///< Handler for Positioning the 
Cursors
 
 Link  m_lnkContextSupplier;   ///< for 
search in contexts
@@ -119,7 +119,7 @@ public:
 This handler MUST be set.
 Furthermore, it should be considered, that during the handler the 
search-dialog is still modal.
 */
-void SetFoundHandler(const Link<>& lnk) { m_lnkFoundHandler = lnk; }
+void SetFoundHandler(const Link& lnk) { 
m_lnkFoundHandler = lnk; }
 /**
 If the search has been cancelled or has been finished without success, 
the current data set is always displayed in the
 search dialog. This handler exists to make this synchronous with the 
possible display of the caller (it does not
diff --git a/dbaccess/source/ui/browser/brwctrlr.cxx 
b/dbaccess/source/ui/browser/brwctrlr.cxx
index 8783d31..10fbab4 100644
--- a/dbaccess/source/ui/browser/brwctrlr.cxx
+++ b/dbaccess/source/ui/browser/brwctrlr.cxx
@@ -2369,13 +2369,13 @@ IMPL_LINK_TYPED(SbaXDataBrowserController, 
OnSearchContextRequest, FmSearchConte
 return rContext.arrFields.size();
 }
 
-IMPL_LINK(SbaXDataBrowserController, OnFoundData, FmFoundRecordInformation*, 
pInfo)
+IMPL_LINK_TYPED(SbaXDataBrowserController, OnFoundData, 
FmFoundRecordInformation&, rInfo, void)
 {
 Reference< css::sdbcx::XRowLocate >  xCursor(getRowSet(), UNO_QUERY);
 OSL_ENSURE(xCursor.is(), "SbaXDataBrowserController::OnFoundData : xCursor 
is empty");
 
 // move the cursor
-xCursor->moveToBookmark(pInfo->aPosition);
+xCursor->moveToBookmark(rInfo.aPosition);
 
 // let the grid snyc it's display with the cursor
 Reference< XPropertySet >  xModelSet(getControlModel(), UNO_QUERY);
@@ -2393,8 +2393,8 @@ 

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

2015-09-25 Thread Noel Grandin
 cui/source/customize/cfg.cxx  |   14 ++
 cui/source/customize/selector.cxx |2 +-
 cui/source/inc/cfg.hxx|4 ++--
 cui/source/inc/selector.hxx   |   10 +-
 4 files changed, 10 insertions(+), 20 deletions(-)

New commits:
commit e5c8436ce88c4c433b736b776bab499240ffd187
Author: Noel Grandin 
Date:   Fri Sep 25 10:32:03 2015 +0200

convert Link<> to typed

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

diff --git a/cui/source/customize/cfg.cxx b/cui/source/customize/cfg.cxx
index b6bae42..d70b472 100644
--- a/cui/source/customize/cfg.cxx
+++ b/cui/source/customize/cfg.cxx
@@ -2534,14 +2534,9 @@ IMPL_LINK_TYPED( SvxMenuConfigPage, EntrySelectHdl, 
MenuButton *, pButton, void
 }
 }
 
-IMPL_LINK( SvxMenuConfigPage, AddFunctionHdl,
-SvxScriptSelectorDialog *, pDialog )
+IMPL_LINK_NOARG_TYPED( SvxMenuConfigPage, AddFunctionHdl, 
SvxScriptSelectorDialog&, void )
 {
-(void)pDialog;
-
 AddFunction();
-
-return 0;
 }
 
 IMPL_LINK_NOARG_TYPED( SvxMenuConfigPage, NewMenuHdl, Button *, void )
@@ -4476,14 +4471,9 @@ IMPL_LINK_NOARG_TYPED( SvxToolbarConfigPage, 
AddCommandsHdl, Button *, void )
 m_pSelectorDlg->Show();
 }
 
-IMPL_LINK( SvxToolbarConfigPage, AddFunctionHdl,
-SvxScriptSelectorDialog *, pDialog )
+IMPL_LINK_NOARG_TYPED( SvxToolbarConfigPage, AddFunctionHdl, 
SvxScriptSelectorDialog&, void )
 {
-(void)pDialog;
-
 AddFunction();
-
-return 0;
 }
 
 SvTreeListEntry* SvxToolbarConfigPage::AddFunction(
diff --git a/cui/source/customize/selector.cxx 
b/cui/source/customize/selector.cxx
index ee5ba51..07a45a2 100644
--- a/cui/source/customize/selector.cxx
+++ b/cui/source/customize/selector.cxx
@@ -994,7 +994,7 @@ IMPL_LINK_TYPED( SvxScriptSelectorDialog, ClickHdl, Button 
*, pButton, void )
 }
 else if (pButton == m_pOKButton)
 {
-GetAddHdl().Call( this );
+GetAddHdl().Call( *this );
 
 // If we are displaying Slot API commands then this the dialog is being
 // run from Tools/Configure and we should not close it
diff --git a/cui/source/inc/cfg.hxx b/cui/source/inc/cfg.hxx
index e036f1c..ff59cf4 100644
--- a/cui/source/inc/cfg.hxx
+++ b/cui/source/inc/cfg.hxx
@@ -446,7 +446,7 @@ private:
 DECL_LINK_TYPED( MenuSelectHdl, MenuButton *, void );
 DECL_LINK_TYPED( EntrySelectHdl, MenuButton *, void );
 DECL_LINK_TYPED( AddCommandsHdl, Button *, void );
-DECL_LINK( AddFunctionHdl, SvxScriptSelectorDialog * );
+DECL_LINK_TYPED( AddFunctionHdl, SvxScriptSelectorDialog&, void );
 
 voidInit() SAL_OVERRIDE;
 voidUpdateButtonStates() SAL_OVERRIDE;
@@ -538,7 +538,7 @@ private:
 DECL_LINK_TYPED( EntrySelectHdl, MenuButton *, void );
 DECL_LINK_TYPED( NewToolbarHdl, Button *, void );
 DECL_LINK_TYPED( AddCommandsHdl, Button *, void );
-DECL_LINK( AddFunctionHdl, SvxScriptSelectorDialog * );
+DECL_LINK_TYPED( AddFunctionHdl, SvxScriptSelectorDialog&, void );
 DECL_LINK_TYPED( MoveHdl, Button *, void );
 
 voidUpdateButtonStates() SAL_OVERRIDE;
diff --git a/cui/source/inc/selector.hxx b/cui/source/inc/selector.hxx
index 92a8a8c..0ae958b 100644
--- a/cui/source/inc/selector.hxx
+++ b/cui/source/inc/selector.hxx
@@ -180,9 +180,9 @@ class SvxScriptSelectorDialog : public ModelessDialog
 VclPtr m_pOKButton;
 VclPtr m_pCancelButton;
 VclPtr   m_pDescriptionText;
-OUStringm_sDefaultDesc;
-boolm_bShowSlots;
-Link<>  m_aAddHdl;
+OUString   m_sDefaultDesc;
+bool   m_bShowSlots;
+Linkm_aAddHdl;
 
 DECL_LINK_TYPED( ClickHdl, Button *, void );
 DECL_LINK_TYPED( SelectHdl, SvTreeListBox*, void );
@@ -200,8 +200,8 @@ public:
 virtual ~SvxScriptSelectorDialog();
 virtual void dispose() SAL_OVERRIDE;
 
-voidSetAddHdl( const Link<>& rLink ) { m_aAddHdl = rLink; }
-const Link<>& GetAddHdl() const { return m_aAddHdl; }
+voidSetAddHdl( const Link& rLink ) 
{ m_aAddHdl = rLink; }
+const Link& GetAddHdl() const { return 
m_aAddHdl; }
 
 voidSetImageProvider(SaveInData* provider)
 {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 67465] EPS rendering: locating pstoedit on Mac a problem

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

--- Comment #27 from V Stuart Foote  ---
(In reply to Robert R. Howell from comment #26)
>... doesn't work in practice for most users because
> it breaks other software packages which rely on pstoedit.  

Well on OS X or Windows that is not an issue--pstoedit is not routinely
installed (nor is Imagemagick, nor ghostscript). And, few Linux distros bundle
pstoedit by default. So, which other software (on Linux) do you perceive as
pstoedit dependent?  But guess if one has to have it for something substantive,
might not be viable to hide it from path.

> ... If there's a way
> to just remove it from the LibreOffice path could you let me know?  But that
> still is a much more obscure fix for most users than simply providing an
> option to explicitly set the renderer preference.

No, your suggested environment approach would be the only way to toggle between
WMF/EMF vector previews via pstoedit and "native" BMP rasters via Ghostscript
or Imagemagick convert.

Personally, the pstoedit EMF vector previews in LibreOffice are of such low
quality, I'd prefer elimination of the RenderAsEMF methods [1] until a better
option for vector previews can be implemented.

=-ref-=
[1]
http://opengrok.libreoffice.org/xref/core/filter/source/graphicfilter/ieps/ieps.cxx#196

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


[Bug 67465] EPS rendering: locating pstoedit on Mac a problem

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

--- Comment #27 from V Stuart Foote  ---
(In reply to Robert R. Howell from comment #26)
>... doesn't work in practice for most users because
> it breaks other software packages which rely on pstoedit.  

Well on OS X or Windows that is not an issue--pstoedit is not routinely
installed (nor is Imagemagick, nor ghostscript). And, few Linux distros bundle
pstoedit by default. So, which other software (on Linux) do you perceive as
pstoedit dependent?  But guess if one has to have it for something substantive,
might not be viable to hide it from path.

> ... If there's a way
> to just remove it from the LibreOffice path could you let me know?  But that
> still is a much more obscure fix for most users than simply providing an
> option to explicitly set the renderer preference.

No, your suggested environment approach would be the only way to toggle between
WMF/EMF vector previews via pstoedit and "native" BMP rasters via Ghostscript
or Imagemagick convert.

Personally, the pstoedit EMF vector previews in LibreOffice are of such low
quality, I'd prefer elimination of the RenderAsEMF methods [1] until a better
option for vector previews can be implemented.

=-ref-=
[1]
http://opengrok.libreoffice.org/xref/core/filter/source/graphicfilter/ieps/ieps.cxx#196

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


[Libreoffice-commits] core.git: chart2/source cui/source include/svx sc/source sd/source sw/source

2015-09-25 Thread Noel Grandin
 chart2/source/controller/main/ShapeController.cxx |   12 +---
 chart2/source/controller/main/ShapeController.hxx |4 ++--
 cui/source/factory/dlgfact.cxx|4 ++--
 cui/source/factory/dlgfact.hxx|4 ++--
 include/svx/svxdlg.hxx|2 +-
 sc/source/ui/drawfunc/drawsh5.cxx |   10 --
 sc/source/ui/inc/drawsh.hxx   |4 ++--
 sd/source/ui/inc/DrawViewShell.hxx|3 ++-
 sd/source/ui/view/drviewsc.cxx|9 +++--
 sw/source/uibase/inc/drwbassh.hxx |4 ++--
 sw/source/uibase/shells/drwbassh.cxx  |   12 ++--
 11 files changed, 31 insertions(+), 37 deletions(-)

New commits:
commit f8a7c031f1ff872f9566b7bfce0321c0b89d45f9
Author: Noel Grandin 
Date:   Fri Sep 25 10:27:15 2015 +0200

convert Link<> to typed

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

diff --git a/chart2/source/controller/main/ShapeController.cxx 
b/chart2/source/controller/main/ShapeController.cxx
index 6897a29..7fc856e3 100644
--- a/chart2/source/controller/main/ShapeController.cxx
+++ b/chart2/source/controller/main/ShapeController.cxx
@@ -229,22 +229,20 @@ void ShapeController::describeSupportedFeatures()
 implDescribeSupportedFeature( ".uno:ParagraphDialog",   
COMMAND_ID_PARAGRAPH_DIALOG,CommandGroup::EDIT );
 }
 
-IMPL_LINK( ShapeController, CheckNameHdl, AbstractSvxNameDialog*, pDialog )
+IMPL_LINK_TYPED( ShapeController, CheckNameHdl, AbstractSvxObjectNameDialog&, 
rDialog, bool )
 {
 OUString aName;
-if ( pDialog )
-{
-pDialog->GetName( aName );
-}
+rDialog.GetName( aName );
+
 if ( !aName.isEmpty() )
 {
 DrawViewWrapper* pDrawViewWrapper = ( m_pChartController ? 
m_pChartController->GetDrawViewWrapper() : NULL );
 if ( pDrawViewWrapper && pDrawViewWrapper->getNamedSdrObject( aName ) )
 {
-return 0;
+return false;
 }
 }
-return 1;
+return true;
 }
 
 void ShapeController::executeDispatch_FormatLine()
diff --git a/chart2/source/controller/main/ShapeController.hxx 
b/chart2/source/controller/main/ShapeController.hxx
index b160189..93c701e 100644
--- a/chart2/source/controller/main/ShapeController.hxx
+++ b/chart2/source/controller/main/ShapeController.hxx
@@ -22,7 +22,7 @@
 #include "FeatureCommandDispatchBase.hxx"
 #include 
 
-class AbstractSvxNameDialog;
+class AbstractSvxObjectNameDialog;
 class SdrObject;
 
 namespace chart
@@ -62,7 +62,7 @@ protected:
 virtual void describeSupportedFeatures() SAL_OVERRIDE;
 
 private:
-DECL_LINK( CheckNameHdl, AbstractSvxNameDialog* );
+DECL_LINK_TYPED( CheckNameHdl, AbstractSvxObjectNameDialog&, bool);
 
 void executeDispatch_FormatLine();
 void executeDispatch_FormatArea();
diff --git a/cui/source/factory/dlgfact.cxx b/cui/source/factory/dlgfact.cxx
index 0961103..426fe28 100644
--- a/cui/source/factory/dlgfact.cxx
+++ b/cui/source/factory/dlgfact.cxx
@@ -619,7 +619,7 @@ void AbstractSvxObjectNameDialog_Impl::GetName(OUString& 
rName)
 pDlg->GetName(rName);
 }
 
-void AbstractSvxObjectNameDialog_Impl::SetCheckNameHdl(const Link<>& rLink, 
bool bCheckImmediately)
+void AbstractSvxObjectNameDialog_Impl::SetCheckNameHdl(const 
Link& rLink, bool bCheckImmediately)
 {
 aCheckNameHdl = rLink;
 
@@ -637,7 +637,7 @@ IMPL_LINK_NOARG_TYPED(AbstractSvxObjectNameDialog_Impl, 
CheckNameHdl, SvxObjectN
 {
 if(aCheckNameHdl.IsSet())
 {
-return aCheckNameHdl.Call(this);
+return aCheckNameHdl.Call(*this);
 }
 
 return false;
diff --git a/cui/source/factory/dlgfact.hxx b/cui/source/factory/dlgfact.hxx
index e4e9621..f7d9e6b 100644
--- a/cui/source/factory/dlgfact.hxx
+++ b/cui/source/factory/dlgfact.hxx
@@ -342,10 +342,10 @@ class AbstractSvxObjectNameDialog_Impl :public 
AbstractSvxObjectNameDialog
 {
 DECL_ABSTDLG_BASE(AbstractSvxObjectNameDialog_Impl, SvxObjectNameDialog)
 virtual void GetName(OUString& rName) SAL_OVERRIDE ;
-virtual void SetCheckNameHdl(const Link<>& rLink, bool bCheckImmediately = 
false) SAL_OVERRIDE;
+virtual void SetCheckNameHdl(const 
Link& rLink, bool bCheckImmediately = false) 
SAL_OVERRIDE;
 
 private:
-Link<> aCheckNameHdl;
+Link aCheckNameHdl;
 DECL_LINK_TYPED(CheckNameHdl, SvxObjectNameDialog&, bool);
 };
 
diff --git a/include/svx/svxdlg.hxx b/include/svx/svxdlg.hxx
index 1ec6814..0fb8845 100644
--- a/include/svx/svxdlg.hxx
+++ b/include/svx/svxdlg.hxx
@@ -169,7 +169,7 @@ class AbstractSvxObjectNameDialog :public VclAbstractDialog
 {
 public:
 virtual void 

[Libreoffice-bugs] [Bug 94492] EDITING - copying row with hidden columns

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

--- Comment #3 from gil...@interia.pl ---
Created attachment 119027
  --> https://bugs.documentfoundation.org/attachment.cgi?id=119027=edit
How to reproduce. Step 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 94511] New: Libreoffice doesn't start with Gnome 3.18

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

Bug ID: 94511
   Summary: Libreoffice doesn't start with Gnome 3.18
   Product: LibreOffice
   Version: 5.0.1.2 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: bgbla...@gmail.com

I am receiving the following error when trying to start any of the Libreoffice
applications with Gnome 3.18 on Antergos:

(soffice:10698): GLib-GObject-CRITICAL **: g_value_set_boxed: assertion
'G_VALUE_HOLDS_BOXED (value)' failed

(soffice:10698): GLib-GObject-WARNING **: gtype.c:4268: type id '0' is invalid

(soffice:10698): GLib-GObject-WARNING **: can't peek value table for type
'' which is not currently referenced


Linux Antergos-Carbon 4.1.6-1-ARCH #1 SMP PREEMPT Mon Aug 17 08:52:28 CEST 2015
x86_64 GNU/Linux

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


[Libreoffice-bugs] [Bug 94492] EDITING - copying row with hidden columns

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

--- Comment #2 from gil...@interia.pl ---
Created attachment 119026
  --> https://bugs.documentfoundation.org/attachment.cgi?id=119026=edit
How to reproduce. Step 1

How to reproduce. Step 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 94492] EDITING - copying row with hidden columns

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

--- Comment #5 from gil...@interia.pl ---
Created attachment 119029
  --> https://bugs.documentfoundation.org/attachment.cgi?id=119029=edit
How to reproduce. Step 4

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