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 | |||
@@ -29,2 +29,4 @@ | |||
29 | #include <qcopchannel_qws.h> | 29 | #include <qcopchannel_qws.h> |
30 | #include <qcopenvelope_qws.h> | ||
31 | |||
30 | #include <qmessagebox.h> | 32 | #include <qmessagebox.h> |
@@ -548,3 +550,5 @@ void FileView::viewAsText() | |||
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 | } |