diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2014-08-16 22:54:10 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2014-08-16 22:54:10 +0900 |
commit | 9e0468a85f814ff0e09a199367a716356d4dfe56 (patch) | |
tree | 3cd8a8871879b8435df3481598fe2f0a0f293a6b | |
parent | 0cfd6fce4bc5a2b109f36403b99d09ae8e41ffde (diff) | |
download | kftpgrabber-9e0468a85f814ff0e09a199367a716356d4dfe56.tar.gz kftpgrabber-9e0468a85f814ff0e09a199367a716356d4dfe56.zip |
Fixed TQLayout warning message on start up. This relates to bug 1947.
-rw-r--r-- | kftpgrabber/src/widgets/browser/view.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kftpgrabber/src/widgets/browser/view.cpp b/kftpgrabber/src/widgets/browser/view.cpp index 43fb3e2..f4b1393 100644 --- a/kftpgrabber/src/widgets/browser/view.cpp +++ b/kftpgrabber/src/widgets/browser/view.cpp @@ -166,7 +166,7 @@ void View::init() m_splitter->setSizePolicy(TQSizePolicy(TQSizePolicy::Expanding, TQSizePolicy::Expanding)); // Create a status bar - TQHBoxLayout *statusLayout = new TQHBoxLayout(this); + TQHBoxLayout *statusLayout = new TQHBoxLayout(); m_connDurationMsg = new TQLabel(this); m_connDurationMsg->setAlignment(AlignAuto | AlignVCenter | AlignHCenter | ExpandTabs); |