diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2019-05-15 17:31:40 +0200 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2019-05-15 17:31:45 +0200 |
commit | cfe2d7cb5fc738f6daa4f76869ae81de25ff4a08 (patch) | |
tree | 6890b24ceb586b7f65e891591c7095ba3639f65a | |
parent | 0228e7e696f1a49495e9ec091fb5e8e22b21b3f8 (diff) | |
download | kdpkg-cfe2d7cb5fc738f6daa4f76869ae81de25ff4a08.tar.gz kdpkg-cfe2d7cb5fc738f6daa4f76869ae81de25ff4a08.zip |
Fix loading of package contents when package is selected through dialog box.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
-rw-r--r-- | kdpkg/kdpkg.cpp | 2 |
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; |