diff options
Diffstat (limited to 'kaddressbook/common')
-rw-r--r-- | kaddressbook/common/filter.cpp | 6 | ||||
-rw-r--r-- | kaddressbook/common/filter.h | 4 | ||||
-rw-r--r-- | kaddressbook/common/kabprefs.cpp | 4 | ||||
-rw-r--r-- | kaddressbook/common/kabprefs.h | 4 | ||||
-rw-r--r-- | kaddressbook/common/locationmap.cpp | 6 | ||||
-rw-r--r-- | kaddressbook/common/locationmap.h | 7 |
6 files changed, 16 insertions, 15 deletions
diff --git a/kaddressbook/common/filter.cpp b/kaddressbook/common/filter.cpp index 13e5f5fc7..932f6f108 100644 --- a/kaddressbook/common/filter.cpp +++ b/kaddressbook/common/filter.cpp @@ -17,8 +17,8 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. As a special exception, permission is given to link this program - with any edition of Qt, and distribute the resulting executable, - without including the source code for Qt in the source distribution. + with any edition of TQt, and distribute the resulting executable, + without including the source code for TQt in the source distribution. */ #include <kconfig.h> @@ -29,7 +29,7 @@ #include "filter.h" Filter::Filter() - : mName( TQString::null ), mMatchRule( Matching ), mEnabled( true ), + : mName( TQString() ), mMatchRule( Matching ), mEnabled( true ), mInternal( false ), mIsEmpty( true ) { } diff --git a/kaddressbook/common/filter.h b/kaddressbook/common/filter.h index 9f66699e0..cb13ce536 100644 --- a/kaddressbook/common/filter.h +++ b/kaddressbook/common/filter.h @@ -17,8 +17,8 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. As a special exception, permission is given to link this program - with any edition of Qt, and distribute the resulting executable, - without including the source code for Qt in the source distribution. + with any edition of TQt, and distribute the resulting executable, + without including the source code for TQt in the source distribution. */ #ifndef FILTER_H diff --git a/kaddressbook/common/kabprefs.cpp b/kaddressbook/common/kabprefs.cpp index cacb2dfd1..18180b801 100644 --- a/kaddressbook/common/kabprefs.cpp +++ b/kaddressbook/common/kabprefs.cpp @@ -17,8 +17,8 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. As a special exception, permission is given to link this program - with any edition of Qt, and distribute the resulting executable, - without including the source code for Qt in the source distribution. + with any edition of TQt, and distribute the resulting executable, + without including the source code for TQt in the source distribution. */ #include <kconfig.h> diff --git a/kaddressbook/common/kabprefs.h b/kaddressbook/common/kabprefs.h index 5c7c8c0c7..bab2cb70b 100644 --- a/kaddressbook/common/kabprefs.h +++ b/kaddressbook/common/kabprefs.h @@ -17,8 +17,8 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. As a special exception, permission is given to link this program - with any edition of Qt, and distribute the resulting executable, - without including the source code for Qt in the source distribution. + with any edition of TQt, and distribute the resulting executable, + without including the source code for TQt in the source distribution. */ #ifndef KABPREFS_H diff --git a/kaddressbook/common/locationmap.cpp b/kaddressbook/common/locationmap.cpp index 5788e6fcd..716e1764b 100644 --- a/kaddressbook/common/locationmap.cpp +++ b/kaddressbook/common/locationmap.cpp @@ -17,8 +17,8 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. As a special exception, permission is given to link this program - with any edition of Qt, and distribute the resulting executable, - without including the source code for Qt in the source distribution. + with any edition of TQt, and distribute the resulting executable, + without including the source code for TQt in the source distribution. */ #include <kapplication.h> @@ -75,7 +75,7 @@ TQString LocationMap::createUrl( const KABC::Address &addr ) TQString urlTemplate = KABPrefs::instance()->locationMapURL().arg( KGlobal::locale()->country() ); if ( urlTemplate.isEmpty() ) { KMessageBox::error( 0, i18n( "No service provider available for map lookup!\nPlease add one in the configuration dialog." ) ); - return TQString::null; + return TQString(); } #if KDE_VERSION >= 319 diff --git a/kaddressbook/common/locationmap.h b/kaddressbook/common/locationmap.h index e8a790360..c244ce720 100644 --- a/kaddressbook/common/locationmap.h +++ b/kaddressbook/common/locationmap.h @@ -17,8 +17,8 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. As a special exception, permission is given to link this program - with any edition of Qt, and distribute the resulting executable, - without including the source code for Qt in the source distribution. + with any edition of TQt, and distribute the resulting executable, + without including the source code for TQt in the source distribution. */ #ifndef LOCATIONMAP_H @@ -28,9 +28,10 @@ #include <tqobject.h> #include <tqstring.h> -class LocationMap : public QObject +class LocationMap : public TQObject { Q_OBJECT + TQ_OBJECT public: static LocationMap *instance(); |