Replace TRUE/FALSE with boolean values true/false

Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
pull/12/head
Michele Calgaro 12 months ago
parent 8f1aef64b2
commit 54ee84e58e
Signed by: MicheleC
GPG Key ID: 2A75B7CA8ADED5CF

@ -31,7 +31,7 @@ class ui_NetParamsEdit : public netProperties
public:
ui_NetParamsEdit(TQWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
ui_NetParamsEdit(TQWidget* parent = 0, const char* name = 0, bool modal = false, WFlags fl = 0 );
~ui_NetParamsEdit();
/*$PUBLIC_FUNCTIONS$*/
//void setWepEnabled( bool w );

@ -33,7 +33,7 @@ class ui_NetParamsWizard : public NetParamsWizard
public:
ui_NetParamsWizard(TQWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
ui_NetParamsWizard(TQWidget* parent = 0, const char* name = 0, bool modal = false, WFlags fl = 0 );
~ui_NetParamsWizard();
/*$PUBLIC_FUNCTIONS$*/
void setWepEnabled( bool w );

@ -97,7 +97,7 @@ int WATools::rxpackets( const char* _ifname ) ///returns number of packets recei
//////////////////////
///// WIRELESS EXTENSIONS CALLS
bool WATools::isWireless( const char* _ifname ) /// returns TRUE if the specified interface supports Wireless Extensions
bool WATools::isWireless( const char* _ifname ) /// returns true if the specified interface supports Wireless Extensions
{
static iwreq req;
memset( &req, 0, sizeof(req) );

@ -42,7 +42,7 @@ class WirelessAssistant : public mainWindow
public:
/*$PUBLIC_FUNCTIONS$*/
WirelessAssistant(TQWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
WirelessAssistant(TQWidget* parent = 0, const char* name = 0, bool modal = false, WFlags fl = 0 );
~WirelessAssistant();
static TQString getVal(const TQString & str, const TQString & rxs);

Loading…
Cancel
Save