diff options
author | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2005-12-31 10:31:40 +0100 |
---|---|---|
committer | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2005-12-31 10:31:40 +0100 |
commit | fb3cd1e9f1a985126d0c6a54197ed2ae48a255dd (patch) | |
tree | acd2f17f8524bb2ad1eebd6314d1d1dec1a94a76 | |
parent | 4f4537f806270faa410627bab63d038f01c36348 (diff) |
make text_sizes static to fix compile error on SuSE
probabely gcc40 problem (reported by Kingsley Burlinson).
-rw-r--r-- | src/flpsed.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/flpsed.cxx b/src/flpsed.cxx index 51d44b1..dae4677 100644 --- a/src/flpsed.cxx +++ b/src/flpsed.cxx @@ -218,7 +218,7 @@ void about_cb() { Fl_Choice *size_c; Fl_Button *color_b; -struct { +static struct { char *label; int size; } text_sizes[] = { |