summaryrefslogtreecommitdiff
path: root/include/svx/galtheme.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-09-03 13:22:12 +0200
committerNoel Grandin <noel@peralex.com>2013-09-05 08:54:42 +0200
commit6b8a2089f9fe1a74f697982d64cb9deed9ec0a46 (patch)
treeb20a19cb9378c5a60bf78802d6d696c5085ba6f9 /include/svx/galtheme.hxx
parent9a915d1114f814ff8d8ba4fb0d2b9b2589ea0833 (diff)
convert include/svx/galtheme.hxx from String to OUString
Change-Id: I7a592768f85fd2bd95435a29ca8c368e5f2ca81a
Diffstat (limited to 'include/svx/galtheme.hxx')
-rw-r--r--include/svx/galtheme.hxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/include/svx/galtheme.hxx b/include/svx/galtheme.hxx
index 83899dbc4a45..216a5b59c891 100644
--- a/include/svx/galtheme.hxx
+++ b/include/svx/galtheme.hxx
@@ -50,8 +50,8 @@ struct GalleryObject
//UI visualization buffering
BitmapEx maPreviewBitmapEx;
Size maPreparedSize;
- String maTitle;
- String maPath;
+ OUString maTitle;
+ OUString maPath;
};
typedef ::std::vector< GalleryObject* > GalleryObjectList;
@@ -96,7 +96,7 @@ class GalleryTheme : public SfxBroadcaster
private:
GalleryObjectList aObjectList;
- String m_aDestDir;
+ OUString m_aDestDir;
bool m_bDestDirRelative;
SotStorageRef aSvDrawStorageRef;
Gallery* pParent;
@@ -148,8 +148,8 @@ public:
const OUString& GetRealName() const;
// used for building gallery themes during compilation:
- const String& GetDestDir() const { return m_aDestDir; }
- void SetDestDir(const String& rDestDir, bool bRelative = true)
+ const OUString& GetDestDir() const { return m_aDestDir; }
+ void SetDestDir(const OUString& rDestDir, bool bRelative = true)
{ m_aDestDir = rDestDir; m_bDestDirRelative = bRelative; }
const INetURLObject& GetThmURL() const;
@@ -226,8 +226,8 @@ public:
static SVX_DLLPUBLIC void InsertAllThemes( ListBox& rListBox );
// for buffering PreviewBitmaps and strings for object and path
- void GetPreviewBitmapExAndStrings(sal_uIntPtr nPos, BitmapEx& rBitmapEx, Size& rSize, String& rTitle, String& rPath) const;
- void SetPreviewBitmapExAndStrings(sal_uIntPtr nPos, const BitmapEx& rBitmapEx, const Size& rSize, const String& rTitle, const String& rPath);
+ void GetPreviewBitmapExAndStrings(sal_uIntPtr nPos, BitmapEx& rBitmapEx, Size& rSize, OUString& rTitle, OUString& rPath) const;
+ void SetPreviewBitmapExAndStrings(sal_uIntPtr nPos, const BitmapEx& rBitmapEx, const Size& rSize, const OUString& rTitle, const OUString& rPath);
};
SvStream& operator<<( SvStream& rOut, const GalleryTheme& rTheme );