summaryrefslogtreecommitdiff
path: root/fluid
diff options
context:
space:
mode:
authorAlbrecht Schlosser <albrechts.fltk@online.de>2014-10-30 17:24:57 +0000
committerAlbrecht Schlosser <albrechts.fltk@online.de>2014-10-30 17:24:57 +0000
commitfd04b88260f200d360179f448c5f67553845696b (patch)
tree762f007d3c932e19840a558f3c011a4bafb81813 /fluid
parent3e1da3012a2e722b3bf13217d2013a4895892a68 (diff)
Fix regression introduced in svn r10331.
Didn't build in Windows IDE projects because of missing snprintf(). git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@10420 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'fluid')
-rw-r--r--fluid/about_panel.fl7
-rw-r--r--fluid/about_panel.h1
2 files changed, 5 insertions, 3 deletions
diff --git a/fluid/about_panel.fl b/fluid/about_panel.fl
index 96dfb1fe1..8aca2e1b9 100644
--- a/fluid/about_panel.fl
+++ b/fluid/about_panel.fl
@@ -28,8 +28,9 @@ decl {void show_help(const char *name);} {public local
Function {make_about_panel()} {open
} {
Fl_Window about_panel {
- label {About FLUID} open
- xywh {513 213 345 180} type Double color 50 selection_color 47 hotspot non_modal visible
+ label {About FLUID} open selected
+ xywh {340 195 345 180} type Double color 50 selection_color 47 hotspot
+ code0 {\#include "../src/flstring.h"} non_modal visible
} {
Fl_Box {} {
image {icons/fluid-96.xpm} xywh {10 10 115 120}
@@ -45,7 +46,7 @@ Version x.x.x}
}
Fl_Box {} {
label {Copyright 1998-2014 by
-Bill Spitzak and others} selected
+Bill Spitzak and others}
xywh {135 90 200 45} align 148
}
Fl_Button {} {
diff --git a/fluid/about_panel.h b/fluid/about_panel.h
index b41275472..e8c2c8c55 100644
--- a/fluid/about_panel.h
+++ b/fluid/about_panel.h
@@ -23,6 +23,7 @@
#include <FL/Fl.H>
extern void show_help(const char *name);
#include <FL/Fl_Double_Window.H>
+#include "../src/flstring.h"
extern Fl_Double_Window *about_panel;
#include <FL/Fl_Box.H>
#include <FL/Fl_Button.H>