diff options
| author | su_v <suv-sf@users.sf.net> | 2016-04-09 02:22:41 +0000 |
|---|---|---|
| committer | Marc Jeanmougin <marcjeanmougin@free.fr> | 2016-04-09 02:22:41 +0000 |
| commit | 364d0165d1251b22b20e190f7e7c58c5fe72fe88 (patch) | |
| tree | d66a318252f70cab3fd41ef5d79f0e68a1b4e50b /src/ui/clipboard.cpp | |
| parent | Provide tooltip for Selection set dialog tree area. (diff) | |
| download | inkscape-364d0165d1251b22b20e190f7e7c58c5fe72fe88.tar.gz inkscape-364d0165d1251b22b20e190f7e7c58c5fe72fe88.zip | |
GTK3 fix
Fixed bugs:
- https://launchpad.net/bugs/1567485
(bzr r14768)
Diffstat (limited to 'src/ui/clipboard.cpp')
| -rw-r--r-- | src/ui/clipboard.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/ui/clipboard.cpp b/src/ui/clipboard.cpp index 4099bd631..d581dbf7e 100644 --- a/src/ui/clipboard.cpp +++ b/src/ui/clipboard.cpp @@ -1300,7 +1300,11 @@ Geom::Scale ClipboardManagerImpl::_getScale(SPDesktop *desktop, Geom::Point cons */ Glib::ustring ClipboardManagerImpl::_getBestTarget() { +#if WITH_GTKMM_3_0 + std::vector<Glib::ustring> targets = _clipboard->wait_for_targets(); +#else std::list<Glib::ustring> targets = _clipboard->wait_for_targets(); +#endif // clipboard target debugging snippet /* |
