summaryrefslogtreecommitdiffstats
path: root/src/main.cpp
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2007-03-01 07:24:10 +0000
committergouldtj <gouldtj@users.sourceforge.net>2007-03-01 07:24:10 +0000
commit176a06b3c801d810dcf5f23bae2a64247c12ae18 (patch)
tree2b1b0d21f221d3ea78d9b12a8238700c0639ee38 /src/main.cpp
parentr14649@tres: ted | 2007-02-28 23:21:44 -0800 (diff)
downloadinkscape-176a06b3c801d810dcf5f23bae2a64247c12ae18.tar.gz
inkscape-176a06b3c801d810dcf5f23bae2a64247c12ae18.zip
r14651@tres: ted | 2007-02-28 23:23:41 -0800
Wow, lost namespacing too. Err, SVK. (bzr r2484)
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/main.cpp b/src/main.cpp
index d3433756c..c6892a5aa 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -674,7 +674,7 @@ sp_main_gui(int argc, char const **argv)
}
}
- Glib::signal_idle().connect(sigc::ptr_fun(&CmdLineAction::idle));
+ Glib::signal_idle().connect(sigc::ptr_fun(&Inkscape::CmdLineAction::idle));
main_instance.run();
#ifdef WIN32
@@ -756,8 +756,6 @@ sp_main_console(int argc, char const **argv)
} else if (sp_query_x || sp_query_y) {
do_query_dimension (doc, false, sp_query_x? NR::X : NR::Y, sp_query_id);
}
-
- //CmdLineAction::doList(doc);
}
fl = g_slist_remove(fl, fl->data);
@@ -1409,7 +1407,7 @@ sp_process_args(poptContext ctx)
gchar const *arg = poptGetOptArg(ctx);
if (arg != NULL) {
// printf("Adding in: %s\n", arg);
- new CmdLineAction(a, arg);
+ new Inkscape::CmdLineAction(a, arg);
}
break;
}