From 69cac65817d949cda2672ec4f0aa73d5e66a0ba1 Mon Sep 17 00:00:00 2001 From: tpearson Date: Wed, 22 Jun 2011 00:30:31 +0000 Subject: TQt4 port kdenetwork This enables compilation under both Qt3 and Qt4 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdenetwork@1237912 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- filesharing/advanced/kcm_sambaconf/socketoptionsdlg.ui.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'filesharing/advanced/kcm_sambaconf/socketoptionsdlg.ui.h') diff --git a/filesharing/advanced/kcm_sambaconf/socketoptionsdlg.ui.h b/filesharing/advanced/kcm_sambaconf/socketoptionsdlg.ui.h index d403fec0..25c08453 100644 --- a/filesharing/advanced/kcm_sambaconf/socketoptionsdlg.ui.h +++ b/filesharing/advanced/kcm_sambaconf/socketoptionsdlg.ui.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ui.h extension file, included from the uic-generated form implementation. ** -** If you wish to add, delete or rename slots use Qt Designer which will +** If you wish to add, delete or rename slots use TQt Designer which will ** update this file, preserving your code. Create an init() slot in place of ** a constructor, and a destroy() slot in place of a destructor. *****************************************************************************/ @@ -62,7 +62,7 @@ SO_RCVLOWATSpin->setValue( getIntValue( s, "SO_RCVLOWAT") ); bool SocketOptionsDlg::getBoolValue( const TQString & str, const TQString & name ) { TQString s = str; - int i = s.find(name ,0,false); + int i = s.tqfind(name ,0,false); if (i > -1) { @@ -85,7 +85,7 @@ bool SocketOptionsDlg::getBoolValue( const TQString & str, const TQString & name int SocketOptionsDlg::getIntValue( const TQString & str, const TQString & name ) { TQString s = str; - int i = s.find(name ,0,false); + int i = s.tqfind(name ,0,false); if (i > -1) { @@ -94,7 +94,7 @@ int SocketOptionsDlg::getIntValue( const TQString & str, const TQString & name ) { s = s.remove(0,1); - i = s.find(" "); + i = s.tqfind(" "); if (i < 0) i = s.length(); else -- cgit v1.2.1