Changeset b826c25829b991595da1356477c09e480cb4ec23
- Timestamp:
- 01/06/07 23:42:01 (6 years ago)
- Author:
- Philipp Kern <phil@…>
- Parents:
- eac9d654e2ab86596ea7589952481779a14f6844
- Children:
- 5a41a0aff9b1b43c3fdffdac6b31b3d9dbbe1fa0
- git-committer:
- Philipp Kern <phil@0x539.de> / 2007-01-06T22:42:01Z+0000
- Message:
-
[project @ Fixed conflict caused by phil's security page]
Original author: Armin Burgmeier <armin@…>
Date: 2005-07-22 14:12:02+00:00
- Files:
-
Legend:
- Unmodified
- Added
- Removed
-
|
reac9d65
|
rb826c25
|
|
| 106 | 106 | }; |
| 107 | 107 | |
| 108 | | v v v v v v v |
| 109 | | PreferencesDialog(Gtk::Window& parent, const Preferences& preferences); |
| 110 | | ************* |
| 111 | 108 | class Security : public Page |
| 112 | 109 | { |
| 113 | 110 | public: |
| 114 | | Security(Config& config); |
| | 111 | Security(const Preferences& preferences); |
| 115 | 112 | ~Security(); |
| 116 | 113 | |
| 117 | 114 | // Fetch the key components |
| 118 | 115 | protected: |
| 119 | | virtual void on_response(int response_id); |
| 120 | | |
| 121 | 116 | Gtk::VBox m_box; |
| 122 | 117 | |
| … |
… |
|
| 126 | 121 | }; |
| 127 | 122 | |
| 128 | | PreferencesDialog(Gtk::Window& parent, Config& config); |
| 129 | | ^ ^ ^ ^ ^ ^ ^ |
| | 123 | PreferencesDialog(Gtk::Window& parent, const Preferences& preferences); |
| 130 | 124 | ~PreferencesDialog(); |
| 131 | 125 | |
-
|
reac9d65
|
rb826c25
|
|
| 152 | 152 | } |
| 153 | 153 | |
| 154 | | void Gobby::PreferencesDialog::Appearance::on_response(int response_id) |
| 155 | | { |
| 156 | | if(response_id == Gtk::RESPONSE_OK) |
| 157 | | { |
| 158 | | } |
| | 154 | Gobby::PreferencesDialog::Security::Security(const Preferences& preferences) |
| | 155 | : Page(preferences) |
| | 156 | { |
| | 157 | } |
| | 158 | |
| | 159 | Gobby::PreferencesDialog::Security::~Security() |
| | 160 | { |
| 159 | 161 | } |
| 160 | 162 | |