Changeset b826c25829b991595da1356477c09e480cb4ec23

Show
Ignore:
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:
2 modified

Legend:

Unmodified
Added
Removed
  • inc/preferencesdialog.hpp

    reac9d65 rb826c25  
    106106        }; 
    107107 
    108 v v v v v v v 
    109         PreferencesDialog(Gtk::Window& parent, const Preferences& preferences); 
    110 ************* 
    111108        class Security : public Page 
    112109        { 
    113110        public: 
    114                 Security(Config& config); 
     111                Security(const Preferences& preferences); 
    115112                ~Security(); 
    116113 
    117114                // Fetch the key components 
    118115        protected: 
    119                 virtual void on_response(int response_id); 
    120  
    121116                Gtk::VBox m_box; 
    122117 
     
    126121        }; 
    127122 
    128         PreferencesDialog(Gtk::Window& parent, Config& config); 
    129 ^ ^ ^ ^ ^ ^ ^ 
     123        PreferencesDialog(Gtk::Window& parent, const Preferences& preferences); 
    130124        ~PreferencesDialog(); 
    131125 
  • src/preferencesdialog.cpp

    reac9d65 rb826c25  
    152152} 
    153153 
    154 void Gobby::PreferencesDialog::Appearance::on_response(int response_id) 
    155 { 
    156         if(response_id == Gtk::RESPONSE_OK) 
    157         { 
    158         } 
     154Gobby::PreferencesDialog::Security::Security(const Preferences& preferences) 
     155 : Page(preferences) 
     156{ 
     157} 
     158 
     159Gobby::PreferencesDialog::Security::~Security() 
     160{ 
    159161} 
    160162