aboutsummaryrefslogtreecommitdiffstats
path: root/community/gnome-authenticator/c222f505a8bf623fbf057f9e1ae0a52e9df3edb7.patch
blob: b871f64d283f125c4c2869359bf21acb8bc1ce1d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
From c222f505a8bf623fbf057f9e1ae0a52e9df3edb7 Mon Sep 17 00:00:00 2001
From: Keith Patton <k.patton@camlintechnologies.com>
Date: Wed, 13 May 2020 15:41:18 +0100
Subject: [PATCH] Removed all references to 'self.init_template'

---
 src/Authenticator/widgets/accounts/add.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 -
 6 files changed, 7 deletions(-)

diff --git a/src/Authenticator/widgets/accounts/add.py b/src/Authenticator/widgets/accounts/add.py
index 44c02d3..a0f5726 100644
--- a/src/Authenticator/widgets/accounts/add.py
+++ b/src/Authenticator/widgets/accounts/add.py
@@ -104,7 +104,6 @@ class AccountConfig(Gtk.Overlay):
 
     def __init__(self, **kwargs):
         super(AccountConfig, self).__init__()
-        self.init_template('AccountConfig')
 
         self.account_list.set_header_func(Handy.list_box_separator_header)
 
diff --git a/src/Authenticator/widgets/accounts/list.py b/src/Authenticator/widgets/accounts/list.py
index 39eb2a4..2319955 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 ebbcaff..28d210a 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 9a8dcb6..2d00456 100644
--- a/src/Authenticator/widgets/provider_image.py
+++ b/src/Authenticator/widgets/provider_image.py
@@ -78,7 +78,6 @@
 
     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 7e58b07..12b8649 100644
--- a/src/Authenticator/widgets/window.py
+++ b/src/Authenticator/widgets/window.py
@@ -53,7 +53,6 @@ class Window(Gtk.ApplicationWindow):
 
     def __init__(self):
         super(Window, self).__init__()
-        self.init_template('Window')
 
         self.connect("notify::view", self.__state_changed)
 
-- 
GitLab