summaryrefslogtreecommitdiff
path: root/noncore/settings
authormickeyl <mickeyl>2005-05-19 11:59:50 (UTC)
committer mickeyl <mickeyl>2005-05-19 11:59:50 (UTC)
commitcdecf5d75233150cba06094262158fb218e9bf03 (patch) (side-by-side diff)
tree7cd9a17fc2eb820638e73945454b02c07a927520 /noncore/settings
parented7ba8b228d3d0ffae9c9b68900b7f723d7ade4a (diff)
downloadopie-cdecf5d75233150cba06094262158fb218e9bf03.zip
opie-cdecf5d75233150cba06094262158fb218e9bf03.tar.gz
opie-cdecf5d75233150cba06094262158fb218e9bf03.tar.bz2
use OPcmciaSystem
Diffstat (limited to 'noncore/settings') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/sysinfo/devicesinfo.cpp31
1 files changed, 7 insertions, 24 deletions
diff --git a/noncore/settings/sysinfo/devicesinfo.cpp b/noncore/settings/sysinfo/devicesinfo.cpp
index 7e8aee8..945edea 100644
--- a/noncore/settings/sysinfo/devicesinfo.cpp
+++ b/noncore/settings/sysinfo/devicesinfo.cpp
@@ -30,6 +30,7 @@ _;:,     .>    :=|. This program is free software; you can
/* OPIE */
#include <opie2/odebug.h>
#include <opie2/oinputsystem.h>
+#include <opie2/opcmciasystem.h>
#include <opie2/olayout.h>
#include <opie2/olistview.h>
#include <qpe/qpeapplication.h>
@@ -185,8 +186,7 @@ void InputCategory::populate()
OInputSystem::DeviceIterator it = sys->iterator();
while ( it.current() )
{
- OInputDevice* dev = it.current();
- new InputDevice( this, dev->identity() );
+ new InputDevice( this, it.current()->identity() );
++it;
}
}
@@ -204,29 +204,12 @@ CardsCategory::~CardsCategory()
void CardsCategory::populate()
{
odebug << "CardsCategory::populate()" << oendl;
- QString fileName;
- if ( QFile::exists( "/var/run/stab" ) ) { fileName = "/var/run/stab"; }
- else if ( QFile::exists( "/var/state/pcmcia/stab" ) ) { fileName = "/var/state/pcmcia/stab"; }
- else { fileName = "/var/lib/pcmcia/stab"; }
- QFile cardinfofile( fileName );
- if ( !cardinfofile.exists() || !cardinfofile.open( IO_ReadOnly ) )
- {
- new CardDevice( this, "ERROR: pcmcia info file not found or unaccessible" );
- return;
- }
- QTextStream cardinfo( &cardinfofile );
- while ( !cardinfo.atEnd() )
+ OPcmciaSystem* sys = OPcmciaSystem::instance();
+ OPcmciaSystem::CardIterator it = sys->iterator();
+ while ( it.current() )
{
- QString line = cardinfo.readLine();
- odebug << "got line '" << line << "'" << oendl;
- if ( line.startsWith( "Socket" ) )
- {
- new CardDevice( this, line );
- }
- else
- {
- continue;
- }
+ new CardDevice( this, (const char*) it.currentKey() );
+ ++it;
}
}