diff options
author | Wastack <btomi96@gmail.com> | 2016-03-31 08:48:33 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-04-01 06:46:47 +0000 |
commit | 84fd42c1f58627f3e03ee6062fa2812a4890d941 (patch) | |
tree | 3efa54d897e832904b5441654b7c6f4fe24faebc /vcl/unx/gtk/salprn-gtk.cxx | |
parent | 9af411abce1e22d55b73d5bbac3b7a6a8535eb3b (diff) |
tdf#97966 Drop 'static' keywords
Including no keywords from extern "C" blocks
Change-Id: I7769c9d2a131d7389ef6ab08c0fbd12bc624778c
Reviewed-on: https://gerrit.libreoffice.org/23678
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'vcl/unx/gtk/salprn-gtk.cxx')
-rw-r--r-- | vcl/unx/gtk/salprn-gtk.cxx | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/vcl/unx/gtk/salprn-gtk.cxx b/vcl/unx/gtk/salprn-gtk.cxx index 6ea55a5f21d9..3a37197ffa6d 100644 --- a/vcl/unx/gtk/salprn-gtk.cxx +++ b/vcl/unx/gtk/salprn-gtk.cxx @@ -147,14 +147,14 @@ GtkSalPrinter_Impl::~GtkSalPrinter_Impl() namespace { -static GtkInstance const& +GtkInstance const& lcl_getGtkSalInstance() { // we _know_ this is GtkInstance return *static_cast<GtkInstance*>(GetGtkSalData()->m_pInstance); } -static bool +bool lcl_useSystemPrintDialog() { return officecfg::Office::Common::Misc::UseSystemPrintDialog::get() @@ -312,7 +312,7 @@ GtkSalPrinter::EndJob() namespace { -static void +void lcl_setHelpText( GtkWidget* const io_pWidget, const uno::Sequence<OUString>& i_rHelpTexts, @@ -323,7 +323,7 @@ lcl_setHelpText( OUStringToOString(i_rHelpTexts.getConstArray()[i_nIndex], RTL_TEXTENCODING_UTF8).getStr()); } -static GtkWidget* +GtkWidget* lcl_makeFrame( GtkWidget* const i_pChild, const OUString &i_rText, @@ -352,7 +352,7 @@ lcl_makeFrame( return pFrame; } -static void +void lcl_extractHelpTextsOrIds( const beans::PropertyValue& rEntry, uno::Sequence<OUString>& rHelpStrings) @@ -368,7 +368,7 @@ lcl_extractHelpTextsOrIds( } } -static GtkWidget* +GtkWidget* lcl_combo_box_text_new() { #if GTK_CHECK_VERSION(3,0,0) @@ -378,7 +378,7 @@ lcl_combo_box_text_new() #endif } -static void +void lcl_combo_box_text_append(GtkWidget* const pWidget, gchar const* const pText) { #if GTK_CHECK_VERSION(3,0,0) |