diff options
author | Caolán McNamara <caolanm@redhat.com> | 2012-04-29 23:36:57 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-04-30 11:22:09 +0100 |
commit | 8a0685d49f679d6f98de2f357f1ec74590573852 (patch) | |
tree | 97eb05105a45186049c1c3dad20233c29747ed9c /cui/source/inc | |
parent | b18cfdc7cd3755c147970f86d23973f337be01a7 (diff) |
make ResId::toString a non-static member
Change-Id: I756c0a19bea7b1cc0e290d9f382a04d655819bfb
Diffstat (limited to 'cui/source/inc')
-rw-r--r-- | cui/source/inc/about.hxx | 2 | ||||
-rw-r--r-- | cui/source/inc/dialmgr.hxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/cui/source/inc/about.hxx b/cui/source/inc/about.hxx index a666c1a3991b..fb876a5efd56 100644 --- a/cui/source/inc/about.hxx +++ b/cui/source/inc/about.hxx @@ -57,7 +57,7 @@ private: CancelButton aCancelButton; String aVersionData; - rtl::OUString aVersionTextStr; + rtl::OUString m_aVersionTextStr; String m_aVendorTextStr; String m_aCopyrightTextStr; String m_aBasedTextStr; diff --git a/cui/source/inc/dialmgr.hxx b/cui/source/inc/dialmgr.hxx index 9737fbb6419a..a2e33d4c46f5 100644 --- a/cui/source/inc/dialmgr.hxx +++ b/cui/source/inc/dialmgr.hxx @@ -36,7 +36,7 @@ #define CUI_MGR() (*CuiResMgr::GetResMgr()) #define CUI_RES(i) ResId(i,CUI_MGR()) -#define CUI_RESSTR(i) ResId::toString(ResId(i,CUI_MGR())) +#define CUI_RESSTR(i) CUI_RES(i).toString() class ResMgr; struct CuiResMgr |