summaryrefslogtreecommitdiffstats
path: root/src/dialogs/export.cpp
diff options
context:
space:
mode:
authorAlex Valavanis <valavanisalex@gmail.com>2012-01-01 18:55:04 +0000
committerAlex Valavanis <valavanisalex@gmail.com>2012-01-01 18:55:04 +0000
commit381781a15edf5ade382136ed3fb927f7154cc637 (patch)
tree331697cfd759fae60864ebbec41ff3e533ea7bd1 /src/dialogs/export.cpp
parent1) Fix CanvasText alignment bugs caused by static variables, uninitialized va... (diff)
downloadinkscape-381781a15edf5ade382136ed3fb927f7154cc637.tar.gz
inkscape-381781a15edf5ade382136ed3fb927f7154cc637.zip
Replace deprecated GTK_SIGNAL_FUNC macro
(bzr r10817)
Diffstat (limited to 'src/dialogs/export.cpp')
-rw-r--r--src/dialogs/export.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dialogs/export.cpp b/src/dialogs/export.cpp
index 2f1b2cd89..4cad2c8a1 100644
--- a/src/dialogs/export.cpp
+++ b/src/dialogs/export.cpp
@@ -624,7 +624,7 @@ sp_export_dialog (void)
batch_box->pack_start(*Glib::wrap(be), false, false);
gtk_widget_set_tooltip_text(be, _("Export each selected object into its own PNG file, using export hints if any (caution, overwrites without asking!)"));
batch_box->show_all();
- g_signal_connect(G_OBJECT(be), "toggled", GTK_SIGNAL_FUNC(batch_export_clicked), dlg);
+ g_signal_connect(G_OBJECT(be), "toggled", G_CALLBACK(batch_export_clicked), dlg);
vb->pack_start(*batch_box);
}