summaryrefslogtreecommitdiffstats
path: root/vcl/source
diff options
context:
space:
mode:
authorWastack <btomi96@gmail.com>2016-03-11 00:43:10 +0100
committerStephan Bergmann <sbergman@redhat.com>2016-03-11 08:54:33 +0000
commit7a0b8decb7d81fefced39ee04368dd0112e8ac28 (patch)
tree6ee2eb9a840abf90c1150e473db6d99d75d18c04 /vcl/source
parenttdf#97966: Remove 'static' keywords (diff)
downloadcore-7a0b8decb7d81fefced39ee04368dd0112e8ac28.tar.gz
core-7a0b8decb7d81fefced39ee04368dd0112e8ac28.zip
tdf#97966: Remove 'static' keywords
Change-Id: Id70f9e55fb4ad7d3a501399b055208ea10369c82 Reviewed-on: https://gerrit.libreoffice.org/23131 Reviewed-by: Stephan Bergmann <sbergman@redhat.com> Tested-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'vcl/source')
-rw-r--r--vcl/source/app/brand.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/source/app/brand.cxx b/vcl/source/app/brand.cxx
index 5a7bd2d04b8b..236ddead72da 100644
--- a/vcl/source/app/brand.cxx
+++ b/vcl/source/app/brand.cxx
@@ -29,7 +29,7 @@
#include <vcl/svgdata.hxx>
namespace {
- static bool loadPng( const OUString & rPath, BitmapEx &rBitmap)
+ bool loadPng( const OUString & rPath, BitmapEx &rBitmap)
{
INetURLObject aObj( rPath );
SvFileStream aStrm( aObj.PathToFileName(), STREAM_STD_READ );
@@ -41,7 +41,7 @@ namespace {
else
return false;
}
- static bool tryLoadPng( const OUString& rBaseDir, const OUString& rName, BitmapEx& rBitmap )
+ bool tryLoadPng( const OUString& rBaseDir, const OUString& rName, BitmapEx& rBitmap )
{
return loadPng( rBaseDir + "/" LIBO_ETC_FOLDER + rName, rBitmap);
}