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
This commit is contained in:
Albrecht Schlosser 2014-10-30 17:24:57 +00:00
parent 3e1da3012a
commit fd04b88260
2 changed files with 5 additions and 3 deletions

View File

@ -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 {} {

View File

@ -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>