summaryrefslogtreecommitdiff
path: root/sdext/source/presenter/PresenterTheme.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sdext/source/presenter/PresenterTheme.cxx')
-rw-r--r--sdext/source/presenter/PresenterTheme.cxx24
1 files changed, 12 insertions, 12 deletions
diff --git a/sdext/source/presenter/PresenterTheme.cxx b/sdext/source/presenter/PresenterTheme.cxx
index c9a14bf4a48b..7a4f3f40fa07 100644
--- a/sdext/source/presenter/PresenterTheme.cxx
+++ b/sdext/source/presenter/PresenterTheme.cxx
@@ -1,7 +1,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -60,12 +60,12 @@ class BorderSize
{
public:
const static sal_Int32 mnInvalidValue = -10000;
-
+
BorderSize (void) : mnLeft(mnInvalidValue),
mnTop(mnInvalidValue),
mnRight(mnInvalidValue),
mnBottom(mnInvalidValue) {}
-
+
sal_Int32 mnLeft;
sal_Int32 mnTop;
sal_Int32 mnRight;
@@ -584,7 +584,7 @@ PresenterTheme::SharedFontDescriptor PresenterTheme::GetFont (
Theme::FontContainer::const_iterator iFont (pTheme->maFontContainer.find(rsStyleName));
if (iFont != pTheme->maFontContainer.end())
return iFont->second;
-
+
pTheme = pTheme->mpParentTheme;
}
}
@@ -648,7 +648,7 @@ bool PresenterTheme::FontDescriptor::PrepareFont (
const double nCellSize (GetCellSizeForDesignSize(rxCanvas, mnSize));
mxFont = CreateFont(rxCanvas, nCellSize);
-
+
return mxFont.is();
}
@@ -766,7 +766,7 @@ void PresenterTheme::Theme::Read (
{
rReadContext.SetBitmapSourceExtension(PresenterComponent::gsExtensionIdentifier);
}
-
+
// Background.
mpBackground = PresenterBitmapContainer::LoadBitmap(
mxThemeRoot,
@@ -781,7 +781,7 @@ void PresenterTheme::Theme::Read (
// Pane styles.
maPaneStyles.Read(rReadContext, mxThemeRoot);
-
+
// View styles.
maViewStyles.Read(rReadContext, mxThemeRoot);
@@ -894,7 +894,7 @@ PresenterTheme::SharedFontDescriptor ReadContext::ReadFont (
{
if ( ! rxNode.is())
return PresenterTheme::SharedFontDescriptor();
-
+
try
{
Reference<container::XHierarchicalNameAccess> xFont (
@@ -1079,7 +1079,7 @@ void PaneStyleContainer::ProcessPaneStyle(
return;
::boost::shared_ptr<PaneStyle> pStyle (new PaneStyle());
-
+
rValues[0] >>= pStyle->msStyleName;
OUString sParentStyleName;
@@ -1221,7 +1221,7 @@ void ViewStyleContainer::Read (
const Reference<container::XHierarchicalNameAccess>& rxThemeRoot)
{
(void)rReadContext;
-
+
Reference<container::XNameAccess> xViewStyleList (
PresenterConfigurationAccess::GetConfigurationNode(
rxThemeRoot,
@@ -1244,7 +1244,7 @@ void ViewStyleContainer::ProcessViewStyle(
const Reference<beans::XPropertySet>& rxProperties)
{
::boost::shared_ptr<ViewStyle> pStyle (new ViewStyle());
-
+
PresenterConfigurationAccess::GetProperty(rxProperties, A2S("StyleName"))
>>= pStyle->msStyleName;
@@ -1284,7 +1284,7 @@ void ViewStyleContainer::ProcessViewStyle(
SharedBitmapDescriptor()));
if (pBackground.get() != NULL && pBackground->GetNormalBitmap().is())
pStyle->mpBackground = pBackground;
-
+
push_back(pStyle);
}