summaryrefslogtreecommitdiff
path: root/gtk/gtkmain.c
diff options
context:
space:
mode:
authorOwen Taylor <otaylor@redhat.com>1999-01-18 18:48:09 +0000
committerOwen Taylor <otaylor@src.gnome.org>1999-01-18 18:48:09 +0000
commite260fd6a2b1f36fc7cff90f9b7c21cf6f5a4cfa7 (patch)
treeab179daddaff1b111d2d8473ef7a8f609a6861fb /gtk/gtkmain.c
parentdeb20a3cd07adf8b249d32296befa524b956adb2 (diff)
downloadgtk+-e260fd6a2b1f36fc7cff90f9b7c21cf6f5a4cfa7.tar.gz
Added gtk_menu_set_title() to set the title of a menu in the torn-off
Mon Jan 18 13:25:14 1999 Owen Taylor <otaylor@redhat.com> * gtk/gtkmenu.[ch]: Added gtk_menu_set_title() to set the title of a menu in the torn-off state. * gtk/gtkthemes.c (gtk_theme_engine_get): When loading of theme engine fails, just warn and do without - don't error out. * gtk/gtkmain.c (gtk_check_version): s/to/too/.
Diffstat (limited to 'gtk/gtkmain.c')
-rw-r--r--gtk/gtkmain.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/gtk/gtkmain.c b/gtk/gtkmain.c
index 4ae4a3b52a..f573c9db11 100644
--- a/gtk/gtkmain.c
+++ b/gtk/gtkmain.c
@@ -149,17 +149,17 @@ gtk_check_version (guint required_major,
guint required_micro)
{
if (required_major > GTK_MAJOR_VERSION)
- return "Gtk+ version to old (major mismatch)";
+ return "Gtk+ version too old (major mismatch)";
if (required_major < GTK_MAJOR_VERSION)
- return "Gtk+ version to new (major mismatch)";
+ return "Gtk+ version too new (major mismatch)";
if (required_minor > GTK_MINOR_VERSION)
- return "Gtk+ version to old (minor mismatch)";
+ return "Gtk+ version too old (minor mismatch)";
if (required_minor < GTK_MINOR_VERSION)
- return "Gtk+ version to new (minor mismatch)";
+ return "Gtk+ version too new (minor mismatch)";
if (required_micro < GTK_MICRO_VERSION - GTK_BINARY_AGE)
- return "Gtk+ version to new (micro mismatch)";
+ return "Gtk+ version too new (micro mismatch)";
if (required_micro > GTK_MICRO_VERSION)
- return "Gtk+ version to old (micro mismatch)";
+ return "Gtk+ version too old (micro mismatch)";
return NULL;
}