summaryrefslogtreecommitdiffstats
path: root/filesharing/advanced/kcm_sambaconf/socketoptionsdlg.ui.h
diff options
context:
space:
mode:
Diffstat (limited to 'filesharing/advanced/kcm_sambaconf/socketoptionsdlg.ui.h')
-rw-r--r--filesharing/advanced/kcm_sambaconf/socketoptionsdlg.ui.h8
1 files changed, 4 insertions, 4 deletions
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