diff options
Diffstat (limited to 'libreofficekit')
-rw-r--r-- | libreofficekit/qa/gtktiledviewer/gtktiledviewer.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libreofficekit/qa/gtktiledviewer/gtktiledviewer.cxx b/libreofficekit/qa/gtktiledviewer/gtktiledviewer.cxx index 6f10935d50f1..7637a68d18ee 100644 --- a/libreofficekit/qa/gtktiledviewer/gtktiledviewer.cxx +++ b/libreofficekit/qa/gtktiledviewer/gtktiledviewer.cxx @@ -38,17 +38,17 @@ static GtkToolItem* pItalic; static GtkToolItem* pUnderline; static GtkToolItem* pStrikethrough; static GtkWidget* pScrolledWindow; -std::map<GtkToolItem*, std::string> g_aToolItemCommandNames; -std::map<std::string, GtkToolItem*> g_aCommandNameToolItems; -bool g_bToolItemBroadcast = true; +static std::map<GtkToolItem*, std::string> g_aToolItemCommandNames; +static std::map<std::string, GtkToolItem*> g_aCommandNameToolItems; +static bool g_bToolItemBroadcast = true; static GtkWidget* pVBox; static GtkComboBoxText* pPartSelector; static GtkWidget* pPartModeComboBox; /// Should the part selector avoid calling lok::Document::setPart()? static bool g_bPartSelectorBroadcast = true; -GtkWidget* pFindbar; -GtkWidget* pFindbarEntry; -GtkWidget* pFindbarLabel; +static GtkWidget* pFindbar; +static GtkWidget* pFindbarEntry; +static GtkWidget* pFindbarLabel; static void lcl_registerToolItem(GtkToolItem* pItem, const std::string& rName) { |