diff options
author | Tim Janik <timj@gtk.org> | 1998-08-18 16:58:09 +0000 |
---|---|---|
committer | Tim Janik <timj@src.gnome.org> | 1998-08-18 16:58:09 +0000 |
commit | 49dfa78e74d3f74313385b833829e84c0b01657c (patch) | |
tree | 8ab9aa8363d48037668ed014dd292d4a777b0601 /gdk/gdkwindow.c | |
parent | 1575a19c592471888d2603df65149799aadb4601 (diff) | |
download | gtk+-49dfa78e74d3f74313385b833829e84c0b01657c.tar.gz |
use g_get_current_dir() instead of getcwd().
Tue Aug 18 17:54:40 1998 Tim Janik <timj@gtk.org>
* gtk/gtkrc.c (gtk_rc_parse_file): use g_get_current_dir() instead of
getcwd().
* gdk/gdkprivate.h:
* gdk/gdkglobals.c:
* gdk/gdkwindow.c:
* gdk/gdk.c:
* gtk/gtkwindow.c:
* gtk/gtkitemfactory.c:
dropped gdk_progname, use g_get_prgname()/g_set_prgname() instead.
* gtk/gtkselection.c:
* gtk/gtkpreview.c:
* gtk/gtkobject.c:
* gtk/gtkmain.c:
* gtk/gtktypeutils.c: indentation fixes due to g_message() use.
* gdk/gdkrgb.c: exchanged occourances of g_print with g_message.
Diffstat (limited to 'gdk/gdkwindow.c')
-rw-r--r-- | gdk/gdkwindow.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdk/gdkwindow.c b/gdk/gdkwindow.c index 8c8623d4b0..bd4adfaeeb 100644 --- a/gdk/gdkwindow.c +++ b/gdk/gdkwindow.c @@ -437,7 +437,7 @@ gdk_window_new (GdkWindow *parent, if (attributes_mask & GDK_WA_TITLE) title = attributes->title; else - title = gdk_progname; + title = g_get_prgname (); XmbSetWMProperties (private->xdisplay, private->xwindow, title, title, |