We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4671135 commit 2c19dffCopy full SHA for 2c19dff
grafica_fltk/button_fltk.cpp
@@ -1,5 +1,6 @@
1
// http://www3.telus.net/public/robark/
2
3
+#include <string>
4
#include <FL/Fl.H>
5
#include <FL/Fl_Window.H>
6
#include <FL/Fl_Button.H> // useremo anche un bottone!
@@ -23,7 +24,7 @@ void button_callback(Fl_Widget * o, void *) {
23
24
25
26
int main() {
- const std::string titolo_finestra = "Finestra";
27
+ const string titolo_finestra = "Finestra";
28
29
// La creazione dei widget in questo esempio avviene con i costruttori.
30
Fl_Window finestra(300, 200, titolo_finestra.c_str());
0 commit comments