summaryrefslogtreecommitdiffstats
path: root/src/ui/dialog/layer-properties.cpp
diff options
context:
space:
mode:
authorkamalpreetgrewal <grewalkamal005@gmail.com>2016-07-19 09:01:31 +0000
committerkamalpreetgrewal <grewalkamal005@gmail.com>2016-07-19 09:01:31 +0000
commit7bc0753c372378cf113ddcb23537a7411208600b (patch)
treee06a2c60d69c305cb71e633293b8d2e27f35c227 /src/ui/dialog/layer-properties.cpp
parentAdd CSS panel with editing support (no changes reflected yet) (diff)
parentDisambiguate sigc::ptr_fun to fix C++14 compilation. (diff)
downloadinkscape-7bc0753c372378cf113ddcb23537a7411208600b.tar.gz
inkscape-7bc0753c372378cf113ddcb23537a7411208600b.zip
Merge changes from trunk
(bzr r14949.1.53)
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
)
);