summaryrefslogtreecommitdiffstats
path: root/src/ui/dialog/layer-properties.cpp
diff options
context:
space:
mode:
authorAlex Henrie <alexhenrie24@gmail.com>2016-07-18 17:19:25 +0000
committerAlex Henrie <alexhenrie24@gmail.com>2016-07-18 17:19:25 +0000
commita42c66cd5a915c7ddba323af7ec714d629e6059b (patch)
tree305e9e7961ed27e2fb806e8e3c75f121cfe98c8d /src/ui/dialog/layer-properties.cpp
parentTranslations: Update German .po file (diff)
downloadinkscape-a42c66cd5a915c7ddba323af7ec714d629e6059b.tar.gz
inkscape-a42c66cd5a915c7ddba323af7ec714d629e6059b.zip
[Bug #1524838] Disambiguate sigc::ptr_fun to fix C++14 compilation.
(bzr r15016.1.1)
Diffstat (limited to 'src/ui/dialog/layer-properties.cpp')
-rw-r--r--src/ui/dialog/layer-properties.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/dialog/layer-properties.cpp b/src/ui/dialog/layer-properties.cpp
index 1b8fbb3f7..5d550ed48 100644
--- a/src/ui/dialog/layer-properties.cpp
+++ b/src/ui/dialog/layer-properties.cpp
@@ -146,7 +146,7 @@ LayerPropertiesDialog::_close()
destroy_();
Glib::signal_idle().connect(
sigc::bind_return(
- sigc::bind(sigc::ptr_fun(&::operator delete), this),
+ sigc::bind(sigc::ptr_fun<void*, void>(&::operator delete), this),
false
)
);