summary refs log tree commit diff stats
path: root/lib/newwrap
diff options
context:
space:
mode:
authorAndreas Rumpf <andreas@andreas-desktop>2010-02-02 23:20:21 +0100
committerAndreas Rumpf <andreas@andreas-desktop>2010-02-02 23:20:21 +0100
commite62ef0ff60f05b1daede1033fc0204d19316b48c (patch)
tree92310f64073864a99ca28a7581aae60721a88547 /lib/newwrap
parentbdcf1ec1f78b63fa4d04e1a4599f62cc7281ed38 (diff)
downloadNim-e62ef0ff60f05b1daede1033fc0204d19316b48c.tar.gz
bugfix: rendering of case statements has been broken recently; remaining idents with wrong underscores in the wrappers
Diffstat (limited to 'lib/newwrap')
-rwxr-xr-xlib/newwrap/gtk/gdkglext.nim2
-rwxr-xr-xlib/newwrap/gtk/gtkglext.nim2
-rwxr-xr-xlib/newwrap/gtk/gtkhtml.nim2
3 files changed, 3 insertions, 3 deletions
diff --git a/lib/newwrap/gtk/gdkglext.nim b/lib/newwrap/gtk/gdkglext.nim
index 41ec0038f..4fa20b969 100755
--- a/lib/newwrap/gtk/gdkglext.nim
+++ b/lib/newwrap/gtk/gdkglext.nim
@@ -1,6 +1,6 @@
 {.deadCodeElim: on.}
 import 
-  Glib2, 2
+  Glib2, gdk2
 
 when defined(WIN32): 
   const 
diff --git a/lib/newwrap/gtk/gtkglext.nim b/lib/newwrap/gtk/gtkglext.nim
index 779c78ee1..265730b83 100755
--- a/lib/newwrap/gtk/gtkglext.nim
+++ b/lib/newwrap/gtk/gtkglext.nim
@@ -1,6 +1,6 @@
 {.deadCodeElim: on.}
 import 
-  Glib2, Gdk2, 2, GdkGLExt
+  Glib2, Gdk2, gtk2, GdkGLExt
 
 const 
   GLExtLib* = if defined(WIN32): "libgtkglext-win32-1.0-0.dll" else: "libgtkglext-x11-1.0.so"
diff --git a/lib/newwrap/gtk/gtkhtml.nim b/lib/newwrap/gtk/gtkhtml.nim
index a71a24836..59568d6d0 100755
--- a/lib/newwrap/gtk/gtkhtml.nim
+++ b/lib/newwrap/gtk/gtkhtml.nim
@@ -1,6 +1,6 @@
 {.deadCodeElim: on.}
 import 
-  2, glib2, atk, pango, gdk2pixbuf, gdk2
+  gtk2, glib2, atk, pango, gdk2pixbuf, gdk2
 
 when defined(windows): 
   {.define: WINDOWING_WIN32.}