From cfe2d7cb5fc738f6daa4f76869ae81de25ff4a08 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sl=C3=A1vek=20Banko?= Date: Wed, 15 May 2019 17:31:40 +0200 Subject: [PATCH] Fix loading of package contents when package is selected through dialog box. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Slávek Banko --- kdpkg/kdpkg.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;