diff options
Diffstat (limited to 'kdat/LoggerWidget.cpp')
-rw-r--r-- | kdat/LoggerWidget.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kdat/LoggerWidget.cpp b/kdat/LoggerWidget.cpp index a5c097a..3505dfb 100644 --- a/kdat/LoggerWidget.cpp +++ b/kdat/LoggerWidget.cpp @@ -17,7 +17,7 @@ // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA #include <tqlabel.h> -#include <layout.h> +#include <tqlayout.h> #include <tqmultilineedit.h> #include <kapplication.h> @@ -33,7 +33,7 @@ LoggerWidget::LoggerWidget( const TQString & title, TQWidget* parent, const char : TQWidget( parent, name ) { TQLabel* lbl1 = new TQLabel( title, this ); - lbl1->setFixedHeight( lbl1->sizeHint().height() ); + lbl1->setFixedHeight( lbl1->tqsizeHint().height() ); _mle = new TQMultiLineEdit( this ); _mle->setReadOnly( TRUE ); |