diff options
author | Darrell Anderson <[email protected]> | 2013-03-03 21:11:48 -0600 |
---|---|---|
committer | Darrell Anderson <[email protected]> | 2013-03-03 21:11:48 -0600 |
commit | ed9739fcff88bdf26974f4a80cd8df6de410d01a (patch) | |
tree | 9fdb071e18d9cc6b40d61ada8ad8e212293c944f /src | |
parent | 79751823a7e899821a14fd08c673ca0655ca4b51 (diff) | |
parent | 902e15edcfaf6389f515bf9634ba2d29a08e87eb (diff) | |
download | qt3-ed9739fcff88bdf26974f4a80cd8df6de410d01a.tar.gz qt3-ed9739fcff88bdf26974f4a80cd8df6de410d01a.zip |
Merge branch 'master' of http://scm.trinitydesktop.org/scm/git/qt3
Diffstat (limited to 'src')
-rw-r--r-- | src/kernel/qwidget_x11.cpp | 2 |
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 ) |