diff options
author | Jörg Frings-Fürst <jff@merkur> | 2014-07-23 11:40:09 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <jff@merkur> | 2014-07-23 11:40:09 +0200 |
commit | 6dbb3a7c8f19291de04fc898cef243164fba1ee6 (patch) | |
tree | 773ada7d8adb1d3e3ffdd39a3c32f6ea116be867 /src/actionGroups | |
parent | 4aad8c4dc20299a461cadfce208ef42ea7758c81 (diff) | |
parent | 6edfb34cb3eee958e392a433ae9ac4f240279d09 (diff) |
Merge tag 'upstream/0.5.5'
Upstream version 0.5.5
Diffstat (limited to 'src/actionGroups')
-rw-r--r-- | src/actionGroups/clipboardGroup.vala | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/actionGroups/clipboardGroup.vala b/src/actionGroups/clipboardGroup.vala index 836c927..c104d62 100644 --- a/src/actionGroups/clipboardGroup.vala +++ b/src/actionGroups/clipboardGroup.vala @@ -79,7 +79,7 @@ public class ClipboardGroup : ActionGroup { /// The maximum remembered items of the clipboard. ///////////////////////////////////////////////////////////////////// - private const int max_items = 6; + private static const int max_items = 6; private Gee.ArrayList<ClipboardItem?> items; @@ -98,7 +98,7 @@ public class ClipboardGroup : ActionGroup { private void add_item(Gtk.Clipboard c, Gtk.SelectionData contents) { var new_item = new ClipboardItem(contents); - if (this.items.size == this.max_items) + if (this.items.size == ClipboardGroup.max_items) this.items.remove_at(0); this.items.add(new_item); |