fixed custom icons issue

git-svn-id: https://svn.code.sf.net/p/keepassx/code/trunk@91 b624d157-de02-0410-bad0-e51aec6abb33
This commit is contained in:
tarek_saidi
2006-06-02 19:46:10 +00:00
parent e0a8391899
commit aabc0db11d
12 changed files with 526 additions and 253 deletions

View File

@@ -29,8 +29,8 @@
#include "SettingsDlg.h"
CSettingsDlg::CSettingsDlg(QWidget* parent, const char* name, bool modal, Qt::WFlags fl)
: QDialog(parent,name, modal,fl)
CSettingsDlg::CSettingsDlg(QWidget* parent)
: QDialog(parent,Qt::Dialog)
{
setupUi(this);
connect(ButtonOK, SIGNAL( clicked() ), this, SLOT( OnOK() ) );

View File

@@ -28,7 +28,7 @@ class CSettingsDlg : public QDialog, public Ui_SettingsDialog
Q_OBJECT
public:
CSettingsDlg(QWidget* parent = 0, const char* name = 0, bool modal = FALSE, Qt::WFlags fl = 0 );
CSettingsDlg(QWidget* parent /*, Qt::WFlags fl*/);
~CSettingsDlg();
public slots: