summaryrefslogtreecommitdiff
path: root/sdext/source/presenter/PresenterWindowManager.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sdext/source/presenter/PresenterWindowManager.cxx')
-rw-r--r--sdext/source/presenter/PresenterWindowManager.cxx10
1 files changed, 4 insertions, 6 deletions
diff --git a/sdext/source/presenter/PresenterWindowManager.cxx b/sdext/source/presenter/PresenterWindowManager.cxx
index 9f1e8d074318..c195c5b4bc44 100644
--- a/sdext/source/presenter/PresenterWindowManager.cxx
+++ b/sdext/source/presenter/PresenterWindowManager.cxx
@@ -58,8 +58,6 @@ using namespace ::com::sun::star::uno;
using namespace ::com::sun::star::drawing::framework;
using ::rtl::OUString;
-#define A2S(pString) (::rtl::OUString(pString))
-
namespace sdext { namespace presenter {
//===== PresenterWindowManager ================================================
@@ -167,7 +165,7 @@ void PresenterWindowManager::SetTheme (const ::boost::shared_ptr<PresenterTheme>
if (mpTheme.get() != NULL)
{
- mpBackgroundBitmap = mpTheme->GetBitmap(OUString(), A2S("Background"));
+ mpBackgroundBitmap = mpTheme->GetBitmap(OUString(), "Background");
}
}
@@ -536,7 +534,7 @@ void PresenterWindowManager::RestoreViewMode (void)
mxComponentContext,
OUString("/org.openoffice.Office.PresenterScreen/"),
PresenterConfigurationAccess::READ_ONLY);
- aConfiguration.GetConfigurationNode(A2S("Presenter/InitialViewMode")) >>= nMode;
+ aConfiguration.GetConfigurationNode("Presenter/InitialViewMode") >>= nMode;
switch (nMode)
{
default:
@@ -562,7 +560,7 @@ void PresenterWindowManager::StoreViewMode (const ViewMode eViewMode)
mxComponentContext,
OUString("/org.openoffice.Office.PresenterScreen/"),
PresenterConfigurationAccess::READ_WRITE);
- aConfiguration.GoToChild(A2S("Presenter"));
+ aConfiguration.GoToChild(OUString("Presenter"));
Any aValue;
switch (eViewMode)
{
@@ -580,7 +578,7 @@ void PresenterWindowManager::StoreViewMode (const ViewMode eViewMode)
break;
}
- aConfiguration.SetProperty (A2S("InitialViewMode"), aValue);
+ aConfiguration.SetProperty ("InitialViewMode", aValue);
aConfiguration.CommitChanges();
}
catch (Exception&)