summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 4b4bd4f)
raw | patch | inline | side by side (parent: 4b4bd4f)
author | gouldtj <gouldtj@users.sourceforge.net> | |
Thu, 1 Mar 2007 07:24:10 +0000 (07:24 +0000) | ||
committer | gouldtj <gouldtj@users.sourceforge.net> | |
Thu, 1 Mar 2007 07:24:10 +0000 (07:24 +0000) |
Wow, lost namespacing too. Err, SVK.
src/main.cpp | patch | blob | history |
diff --git a/src/main.cpp b/src/main.cpp
index d3433756c2f6644fb7791d0e214dbb6c08f41638..c6892a5aa11343e1f09927a1c0a0c9482d42ff07 100644 (file)
--- a/src/main.cpp
+++ b/src/main.cpp
}
}
- Glib::signal_idle().connect(sigc::ptr_fun(&CmdLineAction::idle));
+ Glib::signal_idle().connect(sigc::ptr_fun(&Inkscape::CmdLineAction::idle));
main_instance.run();
#ifdef WIN32
} 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);
gchar const *arg = poptGetOptArg(ctx);
if (arg != NULL) {
// printf("Adding in: %s\n", arg);
- new CmdLineAction(a, arg);
+ new Inkscape::CmdLineAction(a, arg);
}
break;
}