diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-16 09:57:26 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-16 09:57:26 -0600 |
commit | 392b293dfeaa3e4241e50b833126d0c2d598761d (patch) | |
tree | 2e113362b942a9339c055661efd21cdb626e5e1d /src/profilemanagerbase.cpp | |
parent | 1d9c18c8a07f4833695c6a2ab978698ae1cc90e7 (diff) | |
download | kvpnc-392b293dfeaa3e4241e50b833126d0c2d598761d.tar.gz kvpnc-392b293dfeaa3e4241e50b833126d0c2d598761d.zip |
Revert "Rename a number of old tq methods that are no longer tq specific"
This reverts commit 1d9c18c8a07f4833695c6a2ab978698ae1cc90e7.
Diffstat (limited to 'src/profilemanagerbase.cpp')
-rw-r--r-- | src/profilemanagerbase.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/profilemanagerbase.cpp b/src/profilemanagerbase.cpp index 03d32f4..1fdbf6c 100644 --- a/src/profilemanagerbase.cpp +++ b/src/profilemanagerbase.cpp @@ -12,7 +12,7 @@ #include "profilemanagerbase.h" #include <tqvariant.h> -#include <layout.h> +#include <tqlayout.h> #include <tqtooltip.h> #include <tqwhatsthis.h> @@ -25,11 +25,11 @@ ProfileManagerDialogBase::ProfileManagerDialogBase( TQWidget* parent, const char { if ( !name ) setName( "ProfileManagerDialogBase" ); - setSizePolicy( TQSizePolicy( (TQSizePolicy::SizeType)3, (TQSizePolicy::SizeType)3, 0, 0, sizePolicy().hasHeightForWidth() ) ); + tqsetSizePolicy( TQSizePolicy( (TQSizePolicy::SizeType)3, (TQSizePolicy::SizeType)3, 0, 0, sizePolicy().hasHeightForWidth() ) ); setMinimumSize( TQSize( 550, 450 ) ); ProfileManagerDialogBaseLayout = new TQGridLayout( this, 1, 1, 11, 6, "ProfileManagerDialogBaseLayout"); languageChange(); - resize( TQSize(622, 622).expandedTo(minimumSizeHint()) ); + resize( TQSize(622, 622).expandedTo(tqminimumSizeHint()) ); clearWState( WState_Polished ); } |