summaryrefslogtreecommitdiffstats
path: root/src/widgets
diff options
context:
space:
mode:
authorJon A. Cruz <jon@joncruz.org>2010-01-15 01:02:46 +0000
committerJon A. Cruz <jon@joncruz.org>2010-01-15 01:02:46 +0000
commit2ab01d69f9d427bdf3536e1508a465372cd040c6 (patch)
tree492bccf7855315612ecd295d84c34688c232db79 /src/widgets
parentReplace std::tr1::unordered_(map|set) with __gnu_cxx::hash_(map|set), (diff)
downloadinkscape-2ab01d69f9d427bdf3536e1508a465372cd040c6.tar.gz
inkscape-2ab01d69f9d427bdf3536e1508a465372cd040c6.zip
Warning cleanup.
(bzr r8981)
Diffstat (limited to 'src/widgets')
-rw-r--r--src/widgets/toolbox.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/widgets/toolbox.cpp b/src/widgets/toolbox.cpp
index e4a585fb3..e37e1f828 100644
--- a/src/widgets/toolbox.cpp
+++ b/src/widgets/toolbox.cpp
@@ -1135,13 +1135,13 @@ void sp_node_path_edit_nextLPEparam (GtkAction */*act*/, gpointer data) {
sp_selection_next_patheffect_param( reinterpret_cast<SPDesktop*>(data) );
}
-void toggle_edit_clip (GtkToggleAction *act, gpointer data) {
+void toggle_edit_clip (GtkToggleAction *act, gpointer /*data*/) {
Inkscape::Preferences *prefs = Inkscape::Preferences::get();
bool edit = gtk_toggle_action_get_active( act );
prefs->setBool("/tools/nodes/edit_clipping_paths", edit);
}
-void toggle_edit_mask (GtkToggleAction *act, gpointer data) {
+void toggle_edit_mask (GtkToggleAction *act, gpointer /*data*/) {
Inkscape::Preferences *prefs = Inkscape::Preferences::get();
bool edit = gtk_toggle_action_get_active( act );
prefs->setBool("/tools/nodes/edit_masks", edit);