summaryrefslogtreecommitdiff
path: root/sfx2/source/doc/printhelper.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sfx2/source/doc/printhelper.cxx')
-rw-r--r--sfx2/source/doc/printhelper.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sfx2/source/doc/printhelper.cxx b/sfx2/source/doc/printhelper.cxx
index 1bdf74f8f4e0..522b6db3272b 100644
--- a/sfx2/source/doc/printhelper.cxx
+++ b/sfx2/source/doc/printhelper.cxx
@@ -79,7 +79,7 @@ struct IMPL_PrintListener_DataContainer : public SfxListener
const SfxHint& aHint ) override ;
};
-awt::Size impl_Size_Object2Struct( const Size& aSize )
+static awt::Size impl_Size_Object2Struct( const Size& aSize )
{
awt::Size aReturnValue;
aReturnValue.Width = aSize.Width() ;
@@ -87,7 +87,7 @@ awt::Size impl_Size_Object2Struct( const Size& aSize )
return aReturnValue ;
}
-Size impl_Size_Struct2Object( const awt::Size& aSize )
+static Size impl_Size_Struct2Object( const awt::Size& aSize )
{
Size aReturnValue;
aReturnValue.setWidth( aSize.Width ) ;