Changeset 43 for trunk/src/main.cxx
- Timestamp:
- 04/12/06 13:51:22 (3 years ago)
- Files:
-
- 1 modified
-
trunk/src/main.cxx (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/main.cxx
r33 r43 16 16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 17 17 18 #include <config.h> 19 #include <stdlib.h> 20 #include <gettext.h> 18 21 #include <gtk/gtk.h> 19 22 #include <IMainView.h> … … 28 31 // Initialize the GTK library. 29 32 gtk_init (&argc, &argv); 33 g_set_application_name (_("PDF Viewer")); 30 34 // Create the main presenter. 31 35 MainPter *mainPter = new MainPter (); … … 41 45 delete mainPter; 42 46 // All done!. 43 return 0;47 return EXIT_SUCCESS; 44 48 }
