diff options
author | Arturo Espinosa <unammx@src.gnome.org> | 1997-12-30 03:47:51 +0000 |
---|---|---|
committer | Arturo Espinosa <unammx@src.gnome.org> | 1997-12-30 03:47:51 +0000 |
commit | aacb5bd1e3479aca57fcaa5d0bd3556a61b43f38 (patch) | |
tree | a377eed8e007a34a4a5ae84a73a8f8b8e22e0851 | |
parent | fb51b7a6c586f9e319eae5f99765dbfd70838127 (diff) | |
download | gtk+-aacb5bd1e3479aca57fcaa5d0bd3556a61b43f38.tar.gz |
Small typo fix
-rw-r--r-- | gdk/gdkgc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdk/gdkgc.c b/gdk/gdkgc.c index 9724eafc20..826b0829be 100644 --- a/gdk/gdkgc.c +++ b/gdk/gdkgc.c @@ -652,5 +652,5 @@ gdk_gc_copy (GdkGC *dst_gc, GdkGC *src_gc) src_private = (GdkGCPrivate *) src_gc; dst_private = (GdkGCPrivate *) dst_gc; - XcopyGC (src_private->xdisplay, src_private->xgc, 0xffff, dst_private->xgc); + XCopyGC (src_private->xdisplay, src_private->xgc, 0xffff, dst_private->xgc); } |