summaryrefslogtreecommitdiff
path: root/src/config/ConfigurationInterfaces.vala
diff options
context:
space:
mode:
authorJörg Frings-Fürst <debian@jff.email>2022-10-01 21:55:21 +0200
committerJörg Frings-Fürst <debian@jff.email>2022-10-01 21:55:21 +0200
commit0ac74d65f16aa7eb70669b07c25cb90114eb9435 (patch)
tree31cd86e358bc70e6d83955fdcc0d8e05fc32c325 /src/config/ConfigurationInterfaces.vala
parent0b99aa7b114b6c8eb0d55742c4be2f3a73f44e39 (diff)
parentf542481df58f3222143bc260feb34b5cf537d8e0 (diff)
Merge branch 'feature/upstream' into develop
Diffstat (limited to 'src/config/ConfigurationInterfaces.vala')
-rw-r--r--src/config/ConfigurationInterfaces.vala27
1 files changed, 0 insertions, 27 deletions
diff --git a/src/config/ConfigurationInterfaces.vala b/src/config/ConfigurationInterfaces.vala
index 8af5a73..a8d8192 100644
--- a/src/config/ConfigurationInterfaces.vala
+++ b/src/config/ConfigurationInterfaces.vala
@@ -90,7 +90,6 @@ public enum ConfigurableProperty {
SLIDESHOW_SHOW_TITLE,
USE_24_HOUR_TIME,
USE_LOWERCASE_FILENAMES,
- VIDEO_INTERPRETER_STATE_COOKIE,
NUM_PROPERTIES;
@@ -307,9 +306,6 @@ public enum ConfigurableProperty {
case USE_LOWERCASE_FILENAMES:
return "USE_LOWERCASE_FILENAMES";
- case VIDEO_INTERPRETER_STATE_COOKIE:
- return "VIDEO_INTERPRETER_STATE_COOKIE";
-
default:
error("unknown ConfigurableProperty enumeration value");
}
@@ -1804,29 +1800,6 @@ public abstract class ConfigurationFacade : Object {
}
//
- // video interpreter state cookie
- //
- public virtual int get_video_interpreter_state_cookie() {
- try {
- return get_engine().get_int_property(
- ConfigurableProperty.VIDEO_INTERPRETER_STATE_COOKIE);
- } catch (ConfigurationError err) {
- on_configuration_error(err);
-
- return -1;
- }
- }
-
- public virtual void set_video_interpreter_state_cookie(int state_cookie) {
- try {
- get_engine().set_int_property(ConfigurableProperty.VIDEO_INTERPRETER_STATE_COOKIE,
- state_cookie);
- } catch (ConfigurationError err) {
- on_configuration_error(err);
- }
- }
-
- //
// allow plugins to get & set arbitrary properties
//
public virtual bool get_plugin_bool(string domain, string id, string key, bool def) {