summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMarkus Engel <markus.engel@tum.de>2014-03-24 20:54:07 +0000
committerMarkus Engel <markus.engel@tum.de>2014-03-24 20:54:07 +0000
commit23eef073797d1dcca437e25a248be959c3b2d121 (patch)
tree8602433e6c76f30472916df824c0c213e06d2c0b /src
parentFix for in-class initialisation of double const value. (diff)
downloadinkscape-23eef073797d1dcca437e25a248be959c3b2d121.tar.gz
inkscape-23eef073797d1dcca437e25a248be959c3b2d121.zip
Patch for base constructor calls.
(bzr r13202)
Diffstat (limited to 'src')
-rw-r--r--src/extension/error-file.cpp2
-rw-r--r--src/extension/prefdialog.cpp4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/extension/error-file.cpp b/src/extension/error-file.cpp
index 5a8bede70..f60af870f 100644
--- a/src/extension/error-file.cpp
+++ b/src/extension/error-file.cpp
@@ -39,7 +39,7 @@ namespace Extension {
probably good to check anyway).
*/
ErrorFileNotice::ErrorFileNotice (void) :
- Gtk::MessageDialog::MessageDialog(
+ Gtk::MessageDialog(
"", /* message */
false, /* use markup */
Gtk::MESSAGE_WARNING, /* dialog type */
diff --git a/src/extension/prefdialog.cpp b/src/extension/prefdialog.cpp
index f3c6508af..1b657f644 100644
--- a/src/extension/prefdialog.cpp
+++ b/src/extension/prefdialog.cpp
@@ -42,9 +42,9 @@ namespace Extension {
*/
PrefDialog::PrefDialog (Glib::ustring name, gchar const * help, Gtk::Widget * controls, Effect * effect) :
#if WITH_GTKMM_3_0
- Gtk::Dialog::Dialog(_(name.c_str()), true),
+ Gtk::Dialog(_(name.c_str()), true),
#else
- Gtk::Dialog::Dialog(_(name.c_str()), true, true),
+ Gtk::Dialog(_(name.c_str()), true, true),
#endif
_help(help),
_name(name),