summary refs log tree commit diff stats
path: root/tests/rodfiles
diff options
context:
space:
mode:
authorAdam Strzelecki <ono@java.pl>2015-09-04 23:04:32 +0200
committerAdam Strzelecki <ono@java.pl>2015-09-04 23:04:32 +0200
commite80465dacf50f260abec30ae57d37b298c93fd83 (patch)
tree393394f8353a4adb49f95e6f13da1fd41681b7b3 /tests/rodfiles
parentac9c1cd6b980d4f00eeb52d1109d8e2c8cd21213 (diff)
downloadNim-e80465dacf50f260abec30ae57d37b298c93fd83.tar.gz
tests: Trim .nim files trailing whitespace
via OSX: find . -name '*.nim' -exec sed -i '' -E 's/[[:space:]]+$//' {} +
Diffstat (limited to 'tests/rodfiles')
-rw-r--r--tests/rodfiles/amethods.nim2
-rw-r--r--tests/rodfiles/bmethods.nim2
-rw-r--r--tests/rodfiles/bmethods2.nim2
-rw-r--r--tests/rodfiles/deadg.nim4
-rw-r--r--tests/rodfiles/gtkex1.nim28
-rw-r--r--tests/rodfiles/gtkex2.nim8
-rw-r--r--tests/rodfiles/hallo2.nim2
7 files changed, 24 insertions, 24 deletions
diff --git a/tests/rodfiles/amethods.nim b/tests/rodfiles/amethods.nim
index c51d27d24..ecd36d491 100644
--- a/tests/rodfiles/amethods.nim
+++ b/tests/rodfiles/amethods.nim
@@ -4,7 +4,7 @@ type
 
 proc newBaseClass*: ref TBaseClass =
   new result
-  
+
 method echoType*(x: ref TBaseClass) =
   echo "base class"
 
diff --git a/tests/rodfiles/bmethods.nim b/tests/rodfiles/bmethods.nim
index 995942ad6..c77941e4a 100644
--- a/tests/rodfiles/bmethods.nim
+++ b/tests/rodfiles/bmethods.nim
@@ -12,7 +12,7 @@ type
 
 proc newDerivedClass: ref TDerivedClass =
   new result
-  
+
 method echoType*(x: ref TDerivedClass) =
   echo "derived class"
 
diff --git a/tests/rodfiles/bmethods2.nim b/tests/rodfiles/bmethods2.nim
index ac24a2201..c9d25eee4 100644
--- a/tests/rodfiles/bmethods2.nim
+++ b/tests/rodfiles/bmethods2.nim
@@ -12,7 +12,7 @@ type
 
 proc newDerivedClass: ref TDerivedClass =
   new result
-  
+
 method echoType*(x: ref TDerivedClass) =
   echo "derived class 2"
 
diff --git a/tests/rodfiles/deadg.nim b/tests/rodfiles/deadg.nim
index 97bfbed4f..587608e14 100644
--- a/tests/rodfiles/deadg.nim
+++ b/tests/rodfiles/deadg.nim
@@ -3,8 +3,8 @@
 
 proc p1*(x, y: int): int =
   result = x + y
-  
+
 proc p2*(x, y: string): string =
   result = x & y
-  
+
 
diff --git a/tests/rodfiles/gtkex1.nim b/tests/rodfiles/gtkex1.nim
index 8f4db4a40..156ba5322 100644
--- a/tests/rodfiles/gtkex1.nim
+++ b/tests/rodfiles/gtkex1.nim
@@ -1,14 +1,14 @@
-import 

-  cairo, glib2, gtk2

-

-proc destroy(widget: pWidget, data: pgpointer) {.cdecl.} =

-  main_quit()

-

-var

-  window: pWidget

-nimrod_init()

-window = window_new(WINDOW_TOPLEVEL)

-discard signal_connect(window, "destroy",

-                       SIGNAL_FUNC(gtkex1.destroy), nil)

-show(window)

-main()

+import
+  cairo, glib2, gtk2
+
+proc destroy(widget: pWidget, data: pgpointer) {.cdecl.} =
+  main_quit()
+
+var
+  window: pWidget
+nimrod_init()
+window = window_new(WINDOW_TOPLEVEL)
+discard signal_connect(window, "destroy",
+                       SIGNAL_FUNC(gtkex1.destroy), nil)
+show(window)
+main()
diff --git a/tests/rodfiles/gtkex2.nim b/tests/rodfiles/gtkex2.nim
index 3d181ba12..70926bd50 100644
--- a/tests/rodfiles/gtkex2.nim
+++ b/tests/rodfiles/gtkex2.nim
@@ -1,11 +1,11 @@
 
-import 
+import
   glib2, gtk2
 
-proc destroy(widget: pWidget, data: pgpointer){.cdecl.} = 
+proc destroy(widget: pWidget, data: pgpointer){.cdecl.} =
   main_quit()
 
-var 
+var
   window: PWidget
   button: PWidget
 
@@ -14,7 +14,7 @@ window = window_new(WINDOW_TOPLEVEL)
 button = button_new("Click me")
 set_border_width(PContainer(Window), 5)
 add(PContainer(window), button)
-discard signal_connect(window, "destroy", 
+discard signal_connect(window, "destroy",
                            SIGNAL_FUNC(gtkex2.destroy), nil)
 show(button)
 show(window)
diff --git a/tests/rodfiles/hallo2.nim b/tests/rodfiles/hallo2.nim
index a4b3957ec..40fe64cfd 100644
--- a/tests/rodfiles/hallo2.nim
+++ b/tests/rodfiles/hallo2.nim
@@ -12,6 +12,6 @@ type
 proc newNode(data: string): ref TNode =
   new(result)
   result.data = data
-  
+
 echo newNode("Hello World").data