diff options
author | Jörg Frings-Fürst <debian@jff.email> | 2021-08-03 20:25:35 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff.email> | 2021-08-03 20:25:35 +0200 |
commit | 7333967b198f83c33b46608cad5989137896dd8d (patch) | |
tree | b80fb3dd2fad13f239ea1fb0f252faa02165ec83 /src/actions/action.vala | |
parent | 8ef660cf7c92b3407bf2fbfb0f063b90fbe991cf (diff) | |
parent | 7ea867bbca058b7d7d229cf37c2d001522593a09 (diff) |
Merge branch 'feature/upstream' into develop
Diffstat (limited to 'src/actions/action.vala')
-rw-r--r-- | src/actions/action.vala | 4 |
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); } |