diff options
| author | alexhenrie24 <alexhenrie24@gmail.com> | 2016-07-18 21:12:31 +0000 |
|---|---|---|
| committer | Marc Jeanmougin <marcjeanmougin@free.fr> | 2016-07-18 21:12:31 +0000 |
| commit | 54767ee48ab88045f8d0f242286d633a6845f99d (patch) | |
| tree | 305e9e7961ed27e2fb806e8e3c75f121cfe98c8d /src/ui/dialog/layer-properties.cpp | |
| parent | Translations: Update German .po file (diff) | |
| parent | [Bug #1524838] Disambiguate sigc::ptr_fun to fix C++14 compilation. (diff) | |
| download | inkscape-54767ee48ab88045f8d0f242286d633a6845f99d.tar.gz inkscape-54767ee48ab88045f8d0f242286d633a6845f99d.zip | |
Disambiguate sigc::ptr_fun to fix C++14 compilation.
Fixed bugs:
- https://launchpad.net/bugs/1524838
(bzr r15017)
Diffstat (limited to 'src/ui/dialog/layer-properties.cpp')
| -rw-r--r-- | src/ui/dialog/layer-properties.cpp | 2 |
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 ) ); |
