By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 1414
Collapse All | Expand All

(-)tqt3/src/kernel/qwidget_x11.cpp (-1 / +1 lines)
Lines 2223-2229 Link Here
2223
{
2223
{
2224
#if defined(QT_CHECK_RANGE)
2224
#if defined(QT_CHECK_RANGE)
2225
    if ( minw < 0 || minh < 0 )
2225
    if ( minw < 0 || minh < 0 )
2226
	tqWarning("TQWidget::setMinimumSize: The smallest allowed size is (0,0)");
2226
	tqWarning("TQWidget::setMinimumSize: minw=%d, minh=%d. The smallest allowed size is (0,0)", minw, minh);
2227
#endif
2227
#endif
2228
    createExtra();
2228
    createExtra();
2229
    if ( extra->minw == minw && extra->minh == minh )
2229
    if ( extra->minw == minw && extra->minh == minh )

Return to bug 1414