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

Thomas Arnhold thomas at arnhold.org
Thu Oct 10 10:58:53 PDT 2013


 basic/source/comp/sbcomp.cxx              |    2 +-
 desktop/source/app/cmdlinehelp.cxx        |    4 +---
 sdext/source/presenter/PresenterTheme.hxx |    2 +-
 3 files changed, 3 insertions(+), 5 deletions(-)

New commits:
commit 39022b8b7de60b139a9d21991ae10593e1829e43
Author: Thomas Arnhold <thomas at arnhold.org>
Date:   Thu Oct 10 11:51:22 2013 +0200

    little String to OUString + documentation
    
    Change-Id: I982e44150fd2909da0571409f16051d79377d7a3
    Reviewed-on: https://gerrit.libreoffice.org/6192
    Reviewed-by: Thomas Arnhold <thomas at arnhold.org>
    Tested-by: Thomas Arnhold <thomas at arnhold.org>

diff --git a/basic/source/comp/sbcomp.cxx b/basic/source/comp/sbcomp.cxx
index e4d95f1..fe7d7e6 100644
--- a/basic/source/comp/sbcomp.cxx
+++ b/basic/source/comp/sbcomp.cxx
@@ -281,7 +281,7 @@ static OString lcl_toOStringSkipLeadingWhites( const OUString& aStr )
     return aORetStr;
 }
 
-String lcl_dumpMethodParameters( SbMethod* pMethod )
+OUString lcl_dumpMethodParameters( SbMethod* pMethod )
 {
     OUString aStr;
     if( pMethod == NULL )
diff --git a/desktop/source/app/cmdlinehelp.cxx b/desktop/source/app/cmdlinehelp.cxx
index 119f973..8311c5d 100644
--- a/desktop/source/app/cmdlinehelp.cxx
+++ b/desktop/source/app/cmdlinehelp.cxx
@@ -167,9 +167,7 @@ namespace desktop
 #else
         // rest gets a dialog box
         CmdlineHelpDialog aDlg;
-        String head = aHelpMessage_version;
-        head.Append(aHelpMessage_head);
-        aDlg.m_pftHead->SetText(head);
+        aDlg.m_pftHead->SetText(aHelpMessage_version + aHelpMessage_head);
         aDlg.m_pftLeft->SetText(aHelpMessage_left);
         aDlg.m_pftRight->SetText(aHelpMessage_right);
         aDlg.m_pftBottom->SetText(aHelpMessage_bottom);
diff --git a/sdext/source/presenter/PresenterTheme.hxx b/sdext/source/presenter/PresenterTheme.hxx
index 45bb5da..24a2c4a 100644
--- a/sdext/source/presenter/PresenterTheme.hxx
+++ b/sdext/source/presenter/PresenterTheme.hxx
@@ -47,7 +47,7 @@ namespace sdext { namespace presenter {
     Example: you want to access the top left bitmap of a pane border
         (simplified code):
 
-    String sStyleName = getPropertyValue("private:resource/pane/Presenter/Pane1");
+    OUString sStyleName = getPropertyValue("private:resource/pane/Presenter/Pane1");
     XBitmap xBitmap = getPropertyValue(sStyleName + "_TopLeftBitmap");
 
     For the offset of the bitmap you can call


More information about the Libreoffice-commits mailing list