summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarrell Anderson <humanreadable@yahoo.com>2013-03-03 21:11:48 -0600
committerDarrell Anderson <humanreadable@yahoo.com>2013-03-03 21:11:48 -0600
commited9739fcff88bdf26974f4a80cd8df6de410d01a (patch)
tree9fdb071e18d9cc6b40d61ada8ad8e212293c944f
parent79751823a7e899821a14fd08c673ca0655ca4b51 (diff)
parent902e15edcfaf6389f515bf9634ba2d29a08e87eb (diff)
downloadqt3-ed9739fcff88bdf26974f4a80cd8df6de410d01a.tar.gz
qt3-ed9739fcff88bdf26974f4a80cd8df6de410d01a.zip
Merge branch 'master' of http://scm.trinitydesktop.org/scm/git/qt3
-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 )