diff options
Diffstat (limited to 'kontact/src/aboutdialog.cpp')
-rw-r--r-- | kontact/src/aboutdialog.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kontact/src/aboutdialog.cpp b/kontact/src/aboutdialog.cpp index e671ddeb1..e7fef654a 100644 --- a/kontact/src/aboutdialog.cpp +++ b/kontact/src/aboutdialog.cpp @@ -18,8 +18,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 "aboutdialog.h" @@ -68,7 +68,7 @@ void AboutDialog::addAboutData( const TQString &title, const TQString &icon, TQPixmap pixmap = KGlobal::iconLoader()->loadIcon( icon, KIcon::Desktop, 48 ); - TQFrame *topFrame = addPage( title, TQString::null, pixmap ); + TQFrame *topFrame = addPage( title, TQString(), pixmap ); TQBoxLayout *topLayout = new TQVBoxLayout( topFrame ); @@ -165,7 +165,7 @@ void AboutDialog::addLicenseText( const KAboutData *about ) TQString title = i18n( "%1 License" ).arg( about->programName() ); - TQFrame *topFrame = addPage( title, TQString::null, pixmap ); + TQFrame *topFrame = addPage( title, TQString(), pixmap ); TQBoxLayout *topLayout = new TQVBoxLayout( topFrame ); KTextBrowser *textBrowser = new KTextBrowser( topFrame ); |