summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarrell Anderson <humanreadable@yahoo.com>2013-03-03 21:12:17 -0600
committerDarrell Anderson <humanreadable@yahoo.com>2013-03-03 21:12:17 -0600
commit1b0a52a0c1285bf6237aac3fbd99eaebeca5663a (patch)
tree6d20fb4ecf82c9a954ef524e50c9cbcad44bdb29
parent85e23da660cc38aa36026664631e9effcb53726b (diff)
parent71625b1f53dd8736d537334c8ba82af310b52f52 (diff)
downloadtqt3-1b0a52a0c1285bf6237aac3fbd99eaebeca5663a.tar.gz
tqt3-1b0a52a0c1285bf6237aac3fbd99eaebeca5663a.zip
Merge branch 'master' of http://scm.trinitydesktop.org/scm/git/tqt3
-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 2aff3012..67463d0c 100644
--- a/src/kernel/qwidget_x11.cpp
+++ b/src/kernel/qwidget_x11.cpp
@@ -2223,7 +2223,7 @@ void TQWidget::setMinimumSize( int minw, int minh )
{
#if defined(QT_CHECK_RANGE)
if ( minw < 0 || minh < 0 )
- tqWarning("TQWidget::setMinimumSize: The smallest allowed size is (0,0)");
+ tqWarning("TQWidget::setMinimumSize: minw=%d, minh=%d. The smallest allowed size is (0,0)", minw, minh);
#endif
createExtra();
if ( extra->minw == minw && extra->minh == minh )