aboutsummaryrefslogtreecommitdiffstats
path: root/community/gnome-authenticator/0001-Remove-init_template-calls.patch
diff options
context:
space:
mode:
Diffstat (limited to 'community/gnome-authenticator/0001-Remove-init_template-calls.patch')
-rw-r--r--community/gnome-authenticator/0001-Remove-init_template-calls.patch118
1 files changed, 0 insertions, 118 deletions
diff --git a/community/gnome-authenticator/0001-Remove-init_template-calls.patch b/community/gnome-authenticator/0001-Remove-init_template-calls.patch
deleted file mode 100644
index c4d55295c20..00000000000
--- a/community/gnome-authenticator/0001-Remove-init_template-calls.patch
+++ /dev/null
@@ -1,118 +0,0 @@
-From 4604cc68b2e7d8a16e3787b4148b031d69bf865b Mon Sep 17 00:00:00 2001
-From: Adam Plumb <adamplumb@gmail.com>
-Date: Fri, 6 Aug 2021 18:21:33 -0400
-Subject: [PATCH] Remove init_template calls
-
----
- src/Authenticator/widgets/accounts/add.py | 2 --
- src/Authenticator/widgets/accounts/edit.py | 1 -
- src/Authenticator/widgets/accounts/list.py | 1 -
- src/Authenticator/widgets/accounts/row.py | 1 -
- src/Authenticator/widgets/provider_image.py | 1 -
- src/Authenticator/widgets/settings.py | 2 --
- src/Authenticator/widgets/window.py | 1 -
- 7 files changed, 9 deletions(-)
-
-diff --git a/src/Authenticator/widgets/accounts/add.py b/src/Authenticator/widgets/accounts/add.py
-index 98e4d24..97f69e9 100644
---- a/src/Authenticator/widgets/accounts/add.py
-+++ b/src/Authenticator/widgets/accounts/add.py
-@@ -38,7 +38,6 @@ class AddAccountWindow(Gtk.Window):
-
- def __init__(self):
- super(AddAccountWindow, self).__init__()
-- self.init_template('AddAccountWindow')
- self.add_events(Gdk.EventMask.ENTER_NOTIFY_MASK)
- self.__init_widgets()
-
-@@ -95,7 +94,6 @@ class AccountConfig(Gtk.Overlay):
-
- def __init__(self, **kwargs):
- super(AccountConfig, self).__init__()
-- self.init_template('AccountConfig')
-
- self.props.is_edit = kwargs.get("edit", False)
- self._account = kwargs.get("account", None)
-diff --git a/src/Authenticator/widgets/accounts/edit.py b/src/Authenticator/widgets/accounts/edit.py
-index a047178..7b7d8b2 100644
---- a/src/Authenticator/widgets/accounts/edit.py
-+++ b/src/Authenticator/widgets/accounts/edit.py
-@@ -36,7 +36,6 @@ class EditAccountWindow(Gtk.Window):
-
- def __init__(self, account):
- super(EditAccountWindow, self).__init__()
-- self.init_template('EditAccountWindow')
-
- self._account = account
- self.__init_widgets()
-diff --git a/src/Authenticator/widgets/accounts/list.py b/src/Authenticator/widgets/accounts/list.py
-index f7cece8..ee81e24 100644
---- a/src/Authenticator/widgets/accounts/list.py
-+++ b/src/Authenticator/widgets/accounts/list.py
-@@ -40,7 +40,6 @@ class AccountsWidget(Gtk.Box):
-
- def __init__(self):
- super(AccountsWidget, self).__init__()
-- self.init_template('AccountsWidget')
-
- self._providers = []
- self._to_delete = []
-diff --git a/src/Authenticator/widgets/accounts/row.py b/src/Authenticator/widgets/accounts/row.py
-index 2f660b3..18dd24f 100644
---- a/src/Authenticator/widgets/accounts/row.py
-+++ b/src/Authenticator/widgets/accounts/row.py
-@@ -61,7 +61,6 @@ class AccountRow(Gtk.ListBoxRow):
- :param account: Account
- """
- super(AccountRow, self).__init__()
-- self.init_template('AccountRow')
- self._account = account
-
- self._account.connect("otp_updated", self._on_pin_updated)
-diff --git a/src/Authenticator/widgets/provider_image.py b/src/Authenticator/widgets/provider_image.py
-index 36237a9..32710c8 100644
---- a/src/Authenticator/widgets/provider_image.py
-+++ b/src/Authenticator/widgets/provider_image.py
-@@ -78,7 +78,6 @@ class ProviderImage(Gtk.Stack):
-
- def __init__(self, provider=None, image_size=48):
- super(ProviderImage, self).__init__()
-- self.init_template('ProviderImage')
- self.provider = provider if provider else Provider()
-
- self.image_size = image_size
-diff --git a/src/Authenticator/widgets/settings.py b/src/Authenticator/widgets/settings.py
-index 4920390..49a98a9 100644
---- a/src/Authenticator/widgets/settings.py
-+++ b/src/Authenticator/widgets/settings.py
-@@ -37,7 +37,6 @@ class SettingsWindow(Handy.PreferencesWindow):
-
- def __init__(self):
- super(SettingsWindow, self).__init__()
-- self.init_template('SettingsWindow')
-
- self.__init_widgets()
- self.__bind_signals()
-@@ -150,7 +149,6 @@ class PasswordWidget(Gtk.Box):
- def __init__(self):
- super(PasswordWidget, self).__init__()
- self.parent = None
-- self.init_template('PasswordWidget')
-
- def reset_widgets(self):
- """Reset widgets state."""
-diff --git a/src/Authenticator/widgets/window.py b/src/Authenticator/widgets/window.py
-index ec6f6f7..b3336a3 100644
---- a/src/Authenticator/widgets/window.py
-+++ b/src/Authenticator/widgets/window.py
-@@ -52,7 +52,6 @@ class Window(Gtk.ApplicationWindow):
-
- def __init__(self):
- super(Window, self).__init__()
-- self.init_template('Window')
-
- self.connect("notify::view", self.__state_changed)
-
---
-2.32.0
-