summaryrefslogtreecommitdiffstats
path: root/src/inkscape-application.cpp
diff options
context:
space:
mode:
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);
}