diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2020-07-01 11:08:28 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2020-07-01 13:27:53 +0200 |
commit | c4304e8ad97db57b3aaa4889be71e08d8992c189 (patch) | |
tree | 1a5225c8121ba735abc6737fb4ee9b495925af92 /libreofficekit | |
parent | 9ec43720292d4f99104742d8938beb4669ca77b3 (diff) |
Upcoming improved loplugin:staticanonymous -> redundantstatic: libreofficekit
Change-Id: I113905b8e13f65f48529969fb93e66074dc6407d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/97601
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'libreofficekit')
-rw-r--r-- | libreofficekit/qa/gtktiledviewer/gtv-calc-header-bar.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libreofficekit/qa/gtktiledviewer/gtv-calc-header-bar.cxx b/libreofficekit/qa/gtktiledviewer/gtv-calc-header-bar.cxx index 794d157667bc..dc106e58dcb4 100644 --- a/libreofficekit/qa/gtktiledviewer/gtv-calc-header-bar.cxx +++ b/libreofficekit/qa/gtktiledviewer/gtv-calc-header-bar.cxx @@ -65,8 +65,8 @@ G_DEFINE_TYPE_WITH_PRIVATE(GtvCalcHeaderBar, gtv_calc_header_bar, GTK_TYPE_DRAWI #endif #endif -static const int ROW_HEADER_WIDTH = 50; -static const int COLUMN_HEADER_HEIGHT = 20; +const int ROW_HEADER_WIDTH = 50; +const int COLUMN_HEADER_HEIGHT = 20; static GtvCalcHeaderBarPrivate& getPrivate(GtvCalcHeaderBar* headerbar) |