diff options
| author | Liam P. White <inkscapebrony@gmail.com> | 2014-06-27 01:40:01 +0000 |
|---|---|---|
| committer | Liam P. White <inkscapebrony@gmail.com> | 2014-06-27 01:40:01 +0000 |
| commit | a65c95ff4739e2803e28d64b2a3b3774dd1f45aa (patch) | |
| tree | 96ea7df357bc76c5e50dc89b416a73c0646c5c82 /src/main.cpp | |
| parent | Convert accidental member accesses into static function accesses (diff) | |
| download | inkscape-a65c95ff4739e2803e28d64b2a3b3774dd1f45aa.tar.gz inkscape-a65c95ff4739e2803e28d64b2a3b3774dd1f45aa.zip | |
Move constructor/destructor into private section, remove protected section. Rename init(). Add to-do list.
(bzr r13341.5.8)
Diffstat (limited to 'src/main.cpp')
| -rw-r--r-- | src/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.cpp b/src/main.cpp index 499285a7b..2e36e3d50 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1059,7 +1059,7 @@ sp_main_gui(int argc, char const **argv) gboolean create_new = TRUE; /// \todo FIXME BROKEN - non-UTF-8 sneaks in here. - Inkscape::Application::init(argv[0], true); + Inkscape::Application::create(argv[0], true); while (fl) { if (sp_file_open((gchar *)fl->data,NULL)) { @@ -1335,7 +1335,7 @@ int sp_main_console(int argc, char const **argv) exit(0); } - Inkscape::Application::init(argv[0], false); + Inkscape::Application::create(argv[0], false); if (sp_shell) { int retVal = sp_main_shell(argv[0]); // Run as interactive shell |
