~ubuntu-branches/debian/sid/filezilla/sid

« back to all changes in this revision

Viewing changes to src/interface/settingsdialog.h

  • Committer: Bazaar Package Importer
  • Author(s): Adam Cécile (Le_Vert)
  • Date: 2008-07-05 21:00:24 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20080705210024-mvzp21zlyheschi6
Tags: 3.0.11.1-1
* wxWidgets 2.8 just entered unstable ! Upload to unstable.
* New upstream release.
* Bump Standards-Version to 3.8.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
 
6
6
class COptions;
7
7
class COptionsPage;
 
8
class CMainFrame;
8
9
class CSettingsDialog : public wxDialogEx
9
10
{
10
11
public:
11
12
        CSettingsDialog();
12
13
        virtual ~CSettingsDialog();
13
14
 
14
 
        bool Create(wxWindow* parent);
 
15
        bool Create(CMainFrame* pMainFrame);
15
16
        bool LoadSettings();
16
17
 
 
18
        CMainFrame* m_pMainFrame;
 
19
 
17
20
protected:
18
21
        bool LoadPages();
19
22