Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-ports-gnome
Path: blob/main/deskutils/easystroke/files/patch-actions.h
16147 views
1
Fix build with libsigc++ 2.4+ (group was removed).
2
3
https://aur.archlinux.org/cgit/aur.git/commit/sigc.patch?h=easystroke-git&id=3d16f0584c8cf0ade6c181cb56c12d7abe2e17b7
4
5
--- actions.h.orig 2013-03-27 15:52:38 UTC
6
+++ actions.h
7
@@ -31,6 +31,11 @@ class TreeViewMulti : public Gtk::TreeView {
8
virtual void on_drag_begin(const Glib::RefPtr<Gdk::DragContext> &context);
9
public:
10
TreeViewMulti();
11
+ bool negate_pending(const Glib::RefPtr<Gtk::TreeModel>& model,
12
+ const Gtk::TreeModel::Path& path,
13
+ bool path_currently_selected) {
14
+ return !pending;
15
+ }
16
};
17
18
class Actions {
19
20