summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarrell Anderson <darrella@hushmail.com>2013-03-03 17:43:29 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-03-03 17:43:29 -0600
commit902e15edcfaf6389f515bf9634ba2d29a08e87eb (patch)
treebdf738d290f4a1c5e79776d8b409d679e6f9db02
parentd10d2321a34ab6c157bdf2a2e900c0ee52f1bd79 (diff)
downloadqt3-902e15edcfaf6389f515bf9634ba2d29a08e87eb.tar.gz
qt3-902e15edcfaf6389f515bf9634ba2d29a08e87eb.zip
Add more information to help debugging
-rw-r--r--src/kernel/qwidget_x11.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kernel/qwidget_x11.cpp b/src/kernel/qwidget_x11.cpp
index b4133d0..34acfa5 100644
--- a/src/kernel/qwidget_x11.cpp
+++ b/src/kernel/qwidget_x11.cpp
@@ -2223,7 +2223,7 @@ void QWidget::setMinimumSize( int minw, int minh )
{
#if defined(QT_CHECK_RANGE)
if ( minw < 0 || minh < 0 )
- qWarning("QWidget::setMinimumSize: The smallest allowed size is (0,0)");
+ qWarning("QWidget::setMinimumSize: minw=%d, minh=%d. The smallest allowed size is (0,0)", minw, minh);
#endif
createExtra();
if ( extra->minw == minw && extra->minh == minh )