summaryrefslogtreecommitdiff
path: root/noncore/apps/advancedfm/advancedfmMenu.cpp
authorllornkcor <llornkcor>2002-10-10 00:31:19 (UTC)
committer llornkcor <llornkcor>2002-10-10 00:31:19 (UTC)
commit41aaa97e19b29f96fced9013a707cc6d16bc2143 (patch) (side-by-side diff)
tree13eaa232ff64d5da79594ae5dea3bc3455f88f09 /noncore/apps/advancedfm/advancedfmMenu.cpp
parent91e597f6607a1db7251c217154ab56ea94fb0bca (diff)
downloadopie-41aaa97e19b29f96fced9013a707cc6d16bc2143.zip
opie-41aaa97e19b29f96fced9013a707cc6d16bc2143.tar.gz
opie-41aaa97e19b29f96fced9013a707cc6d16bc2143.tar.bz2
menu
Diffstat (limited to 'noncore/apps/advancedfm/advancedfmMenu.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/advancedfm/advancedfmMenu.cpp10
1 files changed, 8 insertions, 2 deletions
diff --git a/noncore/apps/advancedfm/advancedfmMenu.cpp b/noncore/apps/advancedfm/advancedfmMenu.cpp
index 7ee5065..6d37904 100644
--- a/noncore/apps/advancedfm/advancedfmMenu.cpp
+++ b/noncore/apps/advancedfm/advancedfmMenu.cpp
@@ -343,21 +343,27 @@ void AdvancedFm::filePerms() {
}
void AdvancedFm::doProperties() {
+#if defined(QT_QWS_OPIE)
+
QStringList curFileList = getPath();
+
QString filePath;
if (TabWidget->currentPageIndex() == 0) {
filePath = currentDir.canonicalPath()+"/";
} else {
filePath= currentRemoteDir.canonicalPath()+"/";
}
- // qDebug("%d",curFileList.count());
- for ( QStringList::Iterator it = curFileList.begin(); it != curFileList.end(); ++it ) {
+ qDebug("%d",curFileList.count());
+
+ for ( QStringList::Iterator it = curFileList.begin(); it != curFileList.end(); ++it ) {
qDebug((filePath+*it));
DocLnk lnk( (filePath+*it));
LnkProperties prop( &lnk );
prop.showMaximized();
prop.exec();
}
+#endif
+
}
void AdvancedFm::upDir() {