summary refs log tree commit diff stats
path: root/examples/cross_todo/nimrod_commandline/nimtodo.nim
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2012-11-18 05:12:21 -0800
committerAraq <rumpf_a@web.de>2012-11-18 05:12:21 -0800
commit02d074882380c5ff149193368a0c1db7962e28d2 (patch)
treee9721bdf73d2b8ef3bfe6a3800f1326f182f06ee /examples/cross_todo/nimrod_commandline/nimtodo.nim
parentdb80038c378f4b63845cb1b035f2b3dfdd25c2fc (diff)
parent3c817cc85d2636c70e5636169faa4e320f3c09c1 (diff)
downloadNim-02d074882380c5ff149193368a0c1db7962e28d2.tar.gz
Merge pull request #252 from gradha/pr_correct_todo_object_inheritance
Removes 'of TObject' to finalize objects not meant for inheritance.
Diffstat (limited to 'examples/cross_todo/nimrod_commandline/nimtodo.nim')
-rw-r--r--examples/cross_todo/nimrod_commandline/nimtodo.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/cross_todo/nimrod_commandline/nimtodo.nim b/examples/cross_todo/nimrod_commandline/nimtodo.nim
index b4dac0601..0579027c5 100644
--- a/examples/cross_todo/nimrod_commandline/nimtodo.nim
+++ b/examples/cross_todo/nimrod_commandline/nimtodo.nim
@@ -42,7 +42,7 @@ type
     cmdGenerate       # Add random rows to the database, for testing.
     cmdList           # User wants to list contents.
 
-  TParamConfig = object of TObject
+  TParamConfig = object
     # Structure containing the parsed options from the commandline.
     command: TCommand         # Store the type of operation
     addPriority: int          # Only valid with cmdAdd, stores priority.