summaryrefslogtreecommitdiff
path: root/libopie2
Side-by-side diff
Diffstat (limited to 'libopie2') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/opiecore/ostorageinfo.cpp8
-rw-r--r--libopie2/opiecore/ostorageinfo.h6
2 files changed, 6 insertions, 8 deletions
diff --git a/libopie2/opiecore/ostorageinfo.cpp b/libopie2/opiecore/ostorageinfo.cpp
index cf9dc6c..6712282 100644
--- a/libopie2/opiecore/ostorageinfo.cpp
+++ b/libopie2/opiecore/ostorageinfo.cpp
@@ -38,7 +38,7 @@ OStorageInfo::~OStorageInfo()
{
}
-QString OStorageInfo::getCfPath()
+QString OStorageInfo::cfPath()const
{
QString r = "";
@@ -54,11 +54,10 @@ QString OStorageInfo::getCfPath()
}
/*!
-* @fn QString StorageInfo::getSdPath()
* @brief returns the Mount-Path of Sd Card
*
*/
-QString OStorageInfo::getSdPath()
+QString OStorageInfo::sdPath()const
{
QString r = "";
@@ -74,11 +73,10 @@ QString OStorageInfo::getSdPath()
}
/*!
-* @fn QString StorageInfo::getMmcPath()
* @brief returns the Mount-Path of Mmc Card
*
*/
-QString OStorageInfo::getMmcPath()
+QString OStorageInfo::mmcPath()const
{
QString r = "";
diff --git a/libopie2/opiecore/ostorageinfo.h b/libopie2/opiecore/ostorageinfo.h
index ba87ff4..9b61a2e 100644
--- a/libopie2/opiecore/ostorageinfo.h
+++ b/libopie2/opiecore/ostorageinfo.h
@@ -41,9 +41,9 @@ public:
OStorageInfo( QObject *parent=0 );
~OStorageInfo();
- QString getCfPath();
- QString getSdPath();
- QString getMmcPath();
+ QString cfPath()const;
+ QString sdPath()const;
+ QString mmcPath()const;
};
#endif // OSTORAGE_H