summaryrefslogtreecommitdiffstats
path: root/src/inkscape-application.cpp
diff options
context:
space:
mode:
authorTavmjong Bah <tavmjong@free.fr>2019-02-17 10:24:59 +0000
committerTavmjong Bah <tavmjong@free.fr>2019-02-17 10:24:59 +0000
commit869b6777b5f0ca8f98c8f8b20845a14c980b2b1c (patch)
tree67324cb656e7b8dbca42c0da671cf9153478bbd1 /src/inkscape-application.cpp
parentAdd document_open and document_close functions and use them in batch mode. (diff)
downloadinkscape-869b6777b5f0ca8f98c8f8b20845a14c980b2b1c.tar.gz
inkscape-869b6777b5f0ca8f98c8f8b20845a14c980b2b1c.zip
Remove unneeded comments.
Diffstat (limited to 'src/inkscape-application.cpp')
-rw-r--r--src/inkscape-application.cpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/inkscape-application.cpp b/src/inkscape-application.cpp
index bd96b5b54..6c6bd4ba4 100644
--- a/src/inkscape-application.cpp
+++ b/src/inkscape-application.cpp
@@ -414,8 +414,6 @@ ConcreteInkscapeApplication<T>::on_open(const Gio::Application::type_vec_files&
document->ensureUpToDate(); // Or queries don't work!
- // Add to our application
-
// process_file(file);
for (auto action: _command_line_actions) {
Gio::Application::activate_action( action.first, action.second );
@@ -437,9 +435,6 @@ ConcreteInkscapeApplication<T>::on_open(const Gio::Application::type_vec_files&
close_document(document);
}
-
- //Call the base class's implementation:
- // Gtk::Application::on_open(files, hint);
}
// Open document window for each file. Either this or on_activate() is called.
@@ -484,8 +479,6 @@ ConcreteInkscapeApplication<Gtk::Application>::on_open(const Gio::Application::t
document->ensureUpToDate(); // Or queries don't work!
- // Add to our application
-
// process_file(file);
for (auto action: _command_line_actions) {
Gio::Application::activate_action( action.first, action.second );
@@ -508,9 +501,6 @@ ConcreteInkscapeApplication<Gtk::Application>::on_open(const Gio::Application::t
close_document(document);
}
}
-
- //Call the base class's implementation:
- // Gtk::Application::on_open(files, hint);
}