summaryrefslogtreecommitdiffstats
path: root/Tests/FindGTK2/gtkmm/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/FindGTK2/gtkmm/main.cpp')
-rw-r--r--Tests/FindGTK2/gtkmm/main.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/Tests/FindGTK2/gtkmm/main.cpp b/Tests/FindGTK2/gtkmm/main.cpp
index 566a4bd..1637da2 100644
--- a/Tests/FindGTK2/gtkmm/main.cpp
+++ b/Tests/FindGTK2/gtkmm/main.cpp
@@ -1,13 +1,13 @@
#include "helloworld.h"
#include <gtkmm.h>
-int main(int argc, char *argv[])
+int main(int argc, char* argv[])
{
- Gtk::Main kit(argc, argv);
+ Gtk::Main kit(argc, argv);
- HelloWorld helloworld;
- //Shows the window and returns when it is closed.
- Gtk::Main::run(helloworld);
+ HelloWorld helloworld;
+ // Shows the window and returns when it is closed.
+ Gtk::Main::run(helloworld);
- return 0;
+ return 0;
}