summaryrefslogtreecommitdiff
path: root/sd
diff options
context:
space:
mode:
authorWastack <btomi96@gmail.com>2016-03-31 08:45:27 +0200
committerStephan Bergmann <sbergman@redhat.com>2016-04-01 06:46:02 +0000
commiteea3f508c35f8f391825761ab6e1f3fbfb2fd0c1 (patch)
treed956fb94b7d9cf4b978eb1a9aca2910fca93d384 /sd
parent1271eadfac7e77ff7b249e64be3857ffdc0a261c (diff)
tdf#97966 Drop 'static' keywords
Including no keywords from extern "C" blocks Change-Id: I87f2ed75888b51ec9e0cb75566bf7c2351b479b4 Reviewed-on: https://gerrit.libreoffice.org/23675 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'sd')
-rw-r--r--sd/source/ui/framework/tools/FrameworkHelper.cxx2
-rw-r--r--sd/source/ui/sidebar/RecentlyUsedMasterPages.cxx4
2 files changed, 3 insertions, 3 deletions
diff --git a/sd/source/ui/framework/tools/FrameworkHelper.cxx b/sd/source/ui/framework/tools/FrameworkHelper.cxx
index 5c8f09f3cd6a..6b08f37548be 100644
--- a/sd/source/ui/framework/tools/FrameworkHelper.cxx
+++ b/sd/source/ui/framework/tools/FrameworkHelper.cxx
@@ -231,7 +231,7 @@ const OUString FrameworkHelper::msConfigurationControllerService("com.sun.star.d
//----- helper ----------------------------------------------------------------
namespace
{
- static ::std::shared_ptr< ViewShell > lcl_getViewShell( const Reference< XResource >& i_rViewShellWrapper )
+ ::std::shared_ptr< ViewShell > lcl_getViewShell( const Reference< XResource >& i_rViewShellWrapper )
{
::std::shared_ptr< ViewShell > pViewShell;
if ( !i_rViewShellWrapper.is() )
diff --git a/sd/source/ui/sidebar/RecentlyUsedMasterPages.cxx b/sd/source/ui/sidebar/RecentlyUsedMasterPages.cxx
index 0a0283bee857..789f5874f53a 100644
--- a/sd/source/ui/sidebar/RecentlyUsedMasterPages.cxx
+++ b/sd/source/ui/sidebar/RecentlyUsedMasterPages.cxx
@@ -48,11 +48,11 @@ using namespace ::com::sun::star::uno;
namespace {
-static OUString GetPathToImpressConfigurationRoot()
+OUString GetPathToImpressConfigurationRoot()
{
return OUString("/org.openoffice.Office.Impress/");
}
-static OUString GetPathToSetNode()
+OUString GetPathToSetNode()
{
return OUString("MultiPaneGUI/ToolPanel/RecentlyUsedMasterPages");
}