-rw-r--r-- | libopie2/opieui/fileselector/ofiledialog.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libopie2/opieui/fileselector/ofiledialog.cpp b/libopie2/opieui/fileselector/ofiledialog.cpp index 92d4271..f2a0c7b 100644 --- a/libopie2/opieui/fileselector/ofiledialog.cpp +++ b/libopie2/opieui/fileselector/ofiledialog.cpp | |||
@@ -89,34 +89,30 @@ void saveLastDir( const QString& key, const QString& file ) | |||
89 | * @param selector The selector of the OFileSelector | 89 | * @param selector The selector of the OFileSelector |
90 | * @param dirName the dir or resource to start from | 90 | * @param dirName the dir or resource to start from |
91 | * @param fileName a proposed or existing filename | 91 | * @param fileName a proposed or existing filename |
92 | * @param mimetypes The mimeTypes | 92 | * @param mimetypes The mimeTypes |
93 | */ | 93 | */ |
94 | OFileDialog::OFileDialog(const QString &caption, | 94 | OFileDialog::OFileDialog(const QString &caption, |
95 | QWidget *wid, int mode, int selector, | 95 | QWidget *wid, int mode, int selector, |
96 | const QString &dirName, | 96 | const QString &dirName, |
97 | const QString &fileName, | 97 | const QString &fileName, |
98 | const QMap<QString,QStringList>& mimetypes ) | 98 | const QMap<QString,QStringList>& mimetypes ) |
99 | : QDialog( wid, "OFileDialog", true ) | 99 | : QDialog( wid, "OFileDialog", true ) |
100 | { | 100 | { |
101 | // QVBoxLayout *lay = new QVBoxLayout(this); | ||
102 | //showMaximized(); | ||
103 | QVBoxLayout *lay = new QVBoxLayout(this ); | 101 | QVBoxLayout *lay = new QVBoxLayout(this ); |
104 | file = new OFileSelector(this , mode, selector, | 102 | file = new OFileSelector(this , mode, selector, |
105 | dirName, fileName, | 103 | dirName, fileName, |
106 | mimetypes ); | 104 | mimetypes ); |
107 | lay->addWidget( file ); | 105 | lay->addWidget( file ); |
108 | 106 | ||
109 | //lay->addWidget( file ); | ||
110 | //showFullScreen(); | ||
111 | setCaption( caption.isEmpty() ? tr("FileDialog") : caption ); | 107 | setCaption( caption.isEmpty() ? tr("FileDialog") : caption ); |
112 | connect(file, SIGNAL(fileSelected(const QString&) ), | 108 | connect(file, SIGNAL(fileSelected(const QString&) ), |
113 | this, SLOT(slotFileSelected(const QString&) ) ); | 109 | this, SLOT(slotFileSelected(const QString&) ) ); |
114 | connect(file, SIGNAL(ok() ), | 110 | connect(file, SIGNAL(ok() ), |
115 | this, SLOT(slotSelectorOk()) ) ; | 111 | this, SLOT(slotSelectorOk()) ) ; |
116 | 112 | ||
117 | connect(file, SIGNAL(dirSelected(const QString&) ), this, SLOT(slotDirSelected(const QString&) ) ); | 113 | connect(file, SIGNAL(dirSelected(const QString&) ), this, SLOT(slotDirSelected(const QString&) ) ); |
118 | } | 114 | } |
119 | /** | 115 | /** |
120 | * @returns the mimetype of the selected | 116 | * @returns the mimetype of the selected |
121 | * currently it return QString::null | 117 | * currently it return QString::null |
122 | */ | 118 | */ |