Changeset 45 for trunk/src/main.cxx
- Timestamp:
- 04/12/06 16:17:43 (3 years ago)
- Files:
-
- 1 modified
-
trunk/src/main.cxx (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/main.cxx
r43 r45 19 19 #include <stdlib.h> 20 20 #include <gettext.h> 21 #include <locale.h> 21 22 #include <gtk/gtk.h> 22 23 #include <IMainView.h> … … 29 30 main (int argc, char **argv) 30 31 { 32 // Enable NLS support. 33 setlocale (LC_ALL, ""); 34 bindtextdomain (PACKAGE, LOCALEDIR); 35 bind_textdomain_codeset (PACKAGE, "UTF-8"); 36 textdomain (PACKAGE); 31 37 // Initialize the GTK library. 32 38 gtk_init (&argc, &argv);
