summaryrefslogtreecommitdiff
path: root/core/apps/textedit/fileBrowser.cpp
authorllornkcor <llornkcor>2002-03-24 20:47:43 (UTC)
committer llornkcor <llornkcor>2002-03-24 20:47:43 (UTC)
commite37311c84c3f14f947a4e28df809898d23cb2495 (patch) (side-by-side diff)
tree284882e817c649619df942df7c6291c98c0daadb /core/apps/textedit/fileBrowser.cpp
parentc9df42aefa24b90ddf89117cf25f6d6fcef2f1dd (diff)
downloadopie-e37311c84c3f14f947a4e28df809898d23cb2495.zip
opie-e37311c84c3f14f947a4e28df809898d23cb2495.tar.gz
opie-e37311c84c3f14f947a4e28df809898d23cb2495.tar.bz2
blah
Diffstat (limited to 'core/apps/textedit/fileBrowser.cpp') (more/less context) (show whitespace changes)
-rw-r--r--core/apps/textedit/fileBrowser.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/core/apps/textedit/fileBrowser.cpp b/core/apps/textedit/fileBrowser.cpp
index 7eac5d2..eea7144 100644
--- a/core/apps/textedit/fileBrowser.cpp
+++ b/core/apps/textedit/fileBrowser.cpp
@@ -89,25 +89,25 @@ fileBrowser::fileBrowser( QWidget* parent, const char* name, bool modal, WFlags
homeButton = new QPushButton( Resource::loadIconSet("home"),"",this,"homeButton");
homeButton->setMinimumSize( QSize( 20, 20 ) );
homeButton->setMaximumSize( QSize( 20, 20 ) );
connect(homeButton,SIGNAL(released()),this,SLOT(homeButtonPushed()) );
homeButton->setFlat(TRUE);
layout->addMultiCellWidget( homeButton, 0, 0, 7, 7 );
FileStack = new QWidgetStack( this );
ListView = new QListView( this, "ListView" );
- ListView->setMinimumSize( QSize( 100, 25 ) );
+// ListView->setMinimumSize( QSize( 100, 25 ) );
ListView->addColumn( tr( "Name" ) );
ListView->setColumnWidth(0,120);
ListView->setSorting( 2, FALSE);
ListView->addColumn( tr( "Size" ) );
ListView->setColumnWidth(1,-1);
ListView->addColumn( "Date",-1);
ListView->setColumnWidthMode(0,QListView::Manual);
ListView->setColumnAlignment(1,QListView::AlignRight);
ListView->setColumnAlignment(2,QListView::AlignRight);
ListView->setAllColumnsShowFocus( TRUE );
@@ -518,14 +518,13 @@ void fileBrowser::dirPathEditPressed() {
update();
}
void fileBrowser::fillCombo(const QString &currentPath) {
dirPathCombo->lineEdit()->setText(currentPath);
if( dirPathStringList.grep(currentPath,TRUE).isEmpty() ) {
dirPathCombo->clear();
dirPathStringList.prepend(currentPath );
dirPathCombo->insertStringList( dirPathStringList,-1);
}
-
}