From kde-commits Sat Oct 06 16:48:33 2007 From: Andras Mantia Date: Sat, 06 Oct 2007 16:48:33 +0000 To: kde-commits Subject: branches/KDE/3.5/kdewebdev/kommander Message-Id: <1191689313.390702.30412.nullmailer () svn ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=119168932404537 SVN commit 722109 by amantia: Use icon instead of "..." in the file selector BUG: 109985 M +1 -0 ChangeLog M +2 -1 widgets/fileselector.cpp --- branches/KDE/3.5/kdewebdev/kommander/ChangeLog #722108:722109 @@ -4,6 +4,7 @@ o don't crash if opening a file the second time when the first try failed [#141110] o don't close the dialogs with ESC (just like in real applications) o fix ExecButton.setEnabled() [#113624] + o use icon instead of "..." in the file selector [#109985] Thu Sep 14 20:01:18 2006 - Michal Rudolf (actually imported from a work branch on Sep 29, 2007 by Andras Mantia ) --- branches/KDE/3.5/kdewebdev/kommander/widgets/fileselector.cpp #722108:722109 @@ -20,6 +20,7 @@ #include #include #include +#include /* QT INCLUDES */ #include @@ -43,7 +44,7 @@ m_lineEdit = new KLineEdit(this); - m_selectButton = new KPushButton("...", this); + m_selectButton = new KPushButton(BarIconSet("fileopen"), "", this); m_boxLayout = new QHBoxLayout(this, 0, 11); m_boxLayout->addWidget(m_lineEdit);