summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorJan Holesovsky <kendy@collabora.com>2014-12-09 14:56:31 +0100
committerJan Holesovsky <kendy@collabora.com>2014-12-09 15:06:50 +0100
commita9585f343b1642c119721de23dccf748de3c094a (patch)
tree631cfac51d5792ad2b2adec106d6e21fee55f209 /sc
parentb1d4a2ae3d1b461bc52768ed62f354558596fa39 (diff)
No need to use a macro here.
Diffstat (limited to 'sc')
-rw-r--r--sc/source/ui/sidebar/ScPanelFactory.cxx12
1 files changed, 5 insertions, 7 deletions
diff --git a/sc/source/ui/sidebar/ScPanelFactory.cxx b/sc/source/ui/sidebar/ScPanelFactory.cxx
index 6f7fdf99c1ae..a53ae72da6a0 100644
--- a/sc/source/ui/sidebar/ScPanelFactory.cxx
+++ b/sc/source/ui/sidebar/ScPanelFactory.cxx
@@ -108,8 +108,7 @@ Reference<ui::XUIElement> SAL_CALL ScPanelFactory::createUIElement (
"PanelFactory::createUIElement called without SfxBindings",
NULL);
- #define DoesResourceEndWith(s) rsResourceURL.endsWithAsciiL(s,strlen(s))
- if (DoesResourceEndWith("/AlignmentPropertyPanel"))
+ if (rsResourceURL.endsWith("/AlignmentPropertyPanel"))
{
AlignmentPropertyPanel* pPanel = AlignmentPropertyPanel::Create( pParentWindow, xFrame, pBindings );
xElement = sfx2::sidebar::SidebarPanelBase::Create(
@@ -118,7 +117,7 @@ Reference<ui::XUIElement> SAL_CALL ScPanelFactory::createUIElement (
pPanel,
ui::LayoutSize(-1,-1,-1));
}
- else if (DoesResourceEndWith("/CellAppearancePropertyPanel"))
+ else if (rsResourceURL.endsWith("/CellAppearancePropertyPanel"))
{
CellAppearancePropertyPanel* pPanel = CellAppearancePropertyPanel::Create( pParentWindow, xFrame, pBindings );
xElement = sfx2::sidebar::SidebarPanelBase::Create(
@@ -127,7 +126,7 @@ Reference<ui::XUIElement> SAL_CALL ScPanelFactory::createUIElement (
pPanel,
ui::LayoutSize(-1,-1,-1));
}
- else if (DoesResourceEndWith("/NumberFormatPropertyPanel"))
+ else if (rsResourceURL.endsWith("/NumberFormatPropertyPanel"))
{
NumberFormatPropertyPanel* pPanel = NumberFormatPropertyPanel::Create( pParentWindow, xFrame, pBindings );
xElement = sfx2::sidebar::SidebarPanelBase::Create(
@@ -136,7 +135,7 @@ Reference<ui::XUIElement> SAL_CALL ScPanelFactory::createUIElement (
pPanel,
ui::LayoutSize(-1,-1,-1));
}
- else if (DoesResourceEndWith("/NavigatorPanel"))
+ else if (rsResourceURL.endsWith("/NavigatorPanel"))
{
vcl::Window* pPanel = new ScNavigatorDlg(pBindings, NULL, pParentWindow, false);
xElement = sfx2::sidebar::SidebarPanelBase::Create(
@@ -145,7 +144,7 @@ Reference<ui::XUIElement> SAL_CALL ScPanelFactory::createUIElement (
pPanel,
ui::LayoutSize(0,-1,-1));
}
- else if (DoesResourceEndWith("/FunctionsPanel"))
+ else if (rsResourceURL.endsWith("/FunctionsPanel"))
{
vcl::Window* pPanel = new ScFunctionDockWin(pBindings, NULL, pParentWindow, ScResId(FID_FUNCTION_BOX));
xElement = sfx2::sidebar::SidebarPanelBase::Create(
@@ -154,7 +153,6 @@ Reference<ui::XUIElement> SAL_CALL ScPanelFactory::createUIElement (
pPanel,
ui::LayoutSize(0,-1,-1));
}
-#undef DoesResourceEndWith
}
catch (const uno::RuntimeException &)
{