summaryrefslogtreecommitdiffstats
path: root/kdpkg
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2019-05-15 17:31:40 +0200
committerSlávek Banko <slavek.banko@axis.cz>2019-05-15 17:32:22 +0200
commit9c10e9cc9647afac817b430271981fb6cae469e5 (patch)
tree6287aca9c661479cea24e7f937a6697c4f7fcbe9 /kdpkg
parentb3ea5c93ad8862a3dfd1bb101b8629a82f40ed2d (diff)
downloadkdpkg-9c10e9cc9647afac817b430271981fb6cae469e5.tar.gz
kdpkg-9c10e9cc9647afac817b430271981fb6cae469e5.zip
Fix loading of package contents when package is selected through dialog box.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz> (cherry picked from commit cfe2d7cb5fc738f6daa4f76869ae81de25ff4a08)
Diffstat (limited to 'kdpkg')
-rw-r--r--kdpkg/kdpkg.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/kdpkg/kdpkg.cpp b/kdpkg/kdpkg.cpp
index 8fd1e41..9c8f815 100644
--- a/kdpkg/kdpkg.cpp
+++ b/kdpkg/kdpkg.cpp
@@ -60,7 +60,7 @@ kdpkg::kdpkg( const TQString &url, TQWidget *parent, const char *name, const TQS
// show files
- this->shell->setCommand("dpkg -c "+url);
+ this->shell->setCommand("dpkg -c "+path);
this->shell->start(true);
TQStringList files = TQStringList::split( "\n", this->shell->getBuffer().stripWhiteSpace() );
TQString tmp;