gtk2passwordapp 5.2.1 → 6.0.210202

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,22 +0,0 @@
1
- Such::Parts.make('AbButtons', 'Box', :a_Button, :b_Button)
2
- Such::Parts.make('AbcButtons', 'Box', :a_Button, :b_Button, :c_Button)
3
- Such::Parts.make('PromptedEntryLabel', 'Box', :prompt_Label, :prompted_Entry, :prompted_Label)
4
- Such::Parts.make('PromptedEntry', 'Box', :prompt_Label, :prompted_Entry)
5
- Such::Parts.make('PromptedLabel', 'Box', :prompt_Label, :prompted_Label)
6
- Such::Parts.make('PromptedCombo', 'Box', :prompt_Label, :prompted_ComboBoxText)
7
-
8
- module Such
9
- class AbButtons
10
- def labels(a, b)
11
- self.a_Button.label = Gtk2PasswordApp::CONFIG[a]
12
- self.b_Button.label = Gtk2PasswordApp::CONFIG[b]
13
- end
14
- end
15
- class AbcButtons
16
- def labels(a, b, c)
17
- self.a_Button.label = Gtk2PasswordApp::CONFIG[a]
18
- self.b_Button.label = Gtk2PasswordApp::CONFIG[b]
19
- self.c_Button.label = Gtk2PasswordApp::CONFIG[c]
20
- end
21
- end
22
- end