summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--noncore/graphics/opie-eye/gui/filesystem.cpp7
-rw-r--r--noncore/graphics/opie-eye/gui/filesystem.h1
2 files changed, 7 insertions, 1 deletions
diff --git a/noncore/graphics/opie-eye/gui/filesystem.cpp b/noncore/graphics/opie-eye/gui/filesystem.cpp
index 6f1c64a..8efcdf7 100644
--- a/noncore/graphics/opie-eye/gui/filesystem.cpp
+++ b/noncore/graphics/opie-eye/gui/filesystem.cpp
@@ -26,7 +26,7 @@ PFileSystem::PFileSystem( QToolBar* bar)
26 this, SLOT( changed() ) ); 26 this, SLOT( changed() ) );
27 changed(); 27 changed();
28 28
29 setPopup( m_pop ); 29 connect(this,SIGNAL(pressed()),SLOT(slotPopUp()));
30} 30}
31 31
32PFileSystem::~PFileSystem() { 32PFileSystem::~PFileSystem() {
@@ -55,6 +55,11 @@ void PFileSystem::changed() {
55 } 55 }
56} 56}
57 57
58void PFileSystem::slotPopUp() {
59 m_pop->exec(QCursor::pos());
60 setDown(false);
61}
62
58void PFileSystem::slotSelectDir( int id ) { 63void PFileSystem::slotSelectDir( int id ) {
59 emit changeDir( m_dev[m_pop->text(id )] ); 64 emit changeDir( m_dev[m_pop->text(id )] );
60} 65}
diff --git a/noncore/graphics/opie-eye/gui/filesystem.h b/noncore/graphics/opie-eye/gui/filesystem.h
index a29ad87..dbd9d4a 100644
--- a/noncore/graphics/opie-eye/gui/filesystem.h
+++ b/noncore/graphics/opie-eye/gui/filesystem.h
@@ -21,6 +21,7 @@ signals:
21 void changeDir( const QString& ); 21 void changeDir( const QString& );
22 22
23private slots: 23private slots:
24 void slotPopUp();
24 void slotSelectDir( int ); 25 void slotSelectDir( int );
25 void changed(); 26 void changed();
26 27