summaryrefslogtreecommitdiff
path: root/src/actions/action.vala
diff options
context:
space:
mode:
authorJörg Frings-Fürst <debian@jff.email>2021-08-03 20:24:02 +0200
committerJörg Frings-Fürst <debian@jff.email>2021-08-03 20:24:02 +0200
commit38bebbbddf1b2e8620c6b3c2101f689c0296a1fc (patch)
treebf635aab914c9de931bc7cb0b4faf929a7186582 /src/actions/action.vala
parente62a1c4bd7e6073de5aef7a262d838b0df46d504 (diff)
New upstream version 0.7.3upstream/0.7.3upstream
Diffstat (limited to 'src/actions/action.vala')
-rw-r--r--src/actions/action.vala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/actions/action.vala b/src/actions/action.vala
index ee13b39..d90c408 100644
--- a/src/actions/action.vala
+++ b/src/actions/action.vala
@@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
-// Copyright 2011-2018 Simon Schneegans
+// Copyright 2011-2021 Simon Schneegans
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
@@ -69,7 +69,7 @@ public abstract class Action : GLib.Object {
/// C'tor, initializes all members.
/////////////////////////////////////////////////////////////////////
- public Action(string name, string icon, bool is_quickaction) {
+ private Action(string name, string icon, bool is_quickaction) {
GLib.Object(name : name, icon : icon, is_quickaction : is_quickaction);
}