author | llornkcor <llornkcor> | 2002-02-24 17:05:29 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2002-02-24 17:05:29 (UTC) |
commit | f39b6cfe0cccca9dac39b4b15cfe076426d5a4c5 (patch) (unidiff) | |
tree | e0cd32c7d9d5673ca0ef317a52f1ce9cae1957c4 | |
parent | 3008905fb88af28835417f722642d93bd1417f69 (diff) | |
download | opie-f39b6cfe0cccca9dac39b4b15cfe076426d5a4c5.zip opie-f39b6cfe0cccca9dac39b4b15cfe076426d5a4c5.tar.gz opie-f39b6cfe0cccca9dac39b4b15cfe076426d5a4c5.tar.bz2 |
changed how view as text was being executed
-rw-r--r-- | noncore/unsupported/filebrowser/filebrowser.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/noncore/unsupported/filebrowser/filebrowser.cpp b/noncore/unsupported/filebrowser/filebrowser.cpp index eaf5eeb..10dff07 100644 --- a/noncore/unsupported/filebrowser/filebrowser.cpp +++ b/noncore/unsupported/filebrowser/filebrowser.cpp | |||
@@ -26,8 +26,10 @@ | |||
26 | #include <qpe/mimetype.h> | 26 | #include <qpe/mimetype.h> |
27 | #include <qpe/applnk.h> | 27 | #include <qpe/applnk.h> |
28 | 28 | ||
29 | #include <qcopchannel_qws.h> | 29 | #include <qcopchannel_qws.h> |
30 | #include <qcopenvelope_qws.h> | ||
31 | |||
30 | #include <qmessagebox.h> | 32 | #include <qmessagebox.h> |
31 | #include <qdir.h> | 33 | #include <qdir.h> |
32 | #include <qregexp.h> | 34 | #include <qregexp.h> |
33 | #include <qheader.h> | 35 | #include <qheader.h> |
@@ -545,9 +547,11 @@ void FileView::newFolder() | |||
545 | 547 | ||
546 | void FileView::viewAsText() | 548 | void FileView::viewAsText() |
547 | { | 549 | { |
548 | FileItem * i = (FileItem *) currentItem(); | 550 | FileItem * i = (FileItem *) currentItem(); |
549 | Global::execute( "textedit -f ", i->getFilePath() ); | 551 | QCopEnvelope e("QPE/Application/textedit","setDocument(QString)"); |
552 | e << i->getFilePath(); | ||
553 | // Global::execute( "textedit -f ", i->getFilePath() ); | ||
550 | } | 554 | } |
551 | 555 | ||
552 | void FileView::itemClicked( QListViewItem * i) | 556 | void FileView::itemClicked( QListViewItem * i) |
553 | { | 557 | { |