summaryrefslogtreecommitdiff
path: root/noncore/graphics/opie-eye/gui/filesystem.cpp
Unidiff
Diffstat (limited to 'noncore/graphics/opie-eye/gui/filesystem.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/graphics/opie-eye/gui/filesystem.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/noncore/graphics/opie-eye/gui/filesystem.cpp b/noncore/graphics/opie-eye/gui/filesystem.cpp
index d84e9f8..9448843 100644
--- a/noncore/graphics/opie-eye/gui/filesystem.cpp
+++ b/noncore/graphics/opie-eye/gui/filesystem.cpp
@@ -7,25 +7,25 @@
7#include <qtoolbar.h> 7#include <qtoolbar.h>
8 8
9#include <opie2/oresource.h> 9#include <opie2/oresource.h>
10 10
11#include <qpe/storage.h> 11#include <qpe/storage.h>
12 12
13 13
14#include "filesystem.h" 14#include "filesystem.h"
15 15
16PFileSystem::PFileSystem( QToolBar* bar) 16PFileSystem::PFileSystem( QToolBar* bar)
17 : QToolButton( bar ) 17 : QToolButton( bar )
18{ 18{
19 setIconSet( Opie::Core::OResource::loadPixmap( "cardmon/pcmcia", Opie::Core::OResource::SmallIcon ) ); 19 setIconSet( Opie::Core::OResource::loadPixmap( "pcmcia", Opie::Core::OResource::SmallIcon ) );
20 20
21 m_pop = new QPopupMenu( this ); 21 m_pop = new QPopupMenu( this );
22 connect( m_pop, SIGNAL( activated( int ) ), 22 connect( m_pop, SIGNAL( activated( int ) ),
23 this, SLOT(slotSelectDir( int ) ) ); 23 this, SLOT(slotSelectDir( int ) ) );
24 24
25 m_storage = new StorageInfo(); 25 m_storage = new StorageInfo();
26 connect(m_storage, SIGNAL(disksChanged() ), 26 connect(m_storage, SIGNAL(disksChanged() ),
27 this, SLOT( changed() ) ); 27 this, SLOT( changed() ) );
28 changed(); 28 changed();
29 29
30 connect(this,SIGNAL(pressed()),SLOT(slotPopUp())); 30 connect(this,SIGNAL(pressed()),SLOT(slotPopUp()));
31} 31}