diff options
Diffstat (limited to 'bibletime/frontend/cprofilemgr.cpp')
-rw-r--r-- | bibletime/frontend/cprofilemgr.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bibletime/frontend/cprofilemgr.cpp b/bibletime/frontend/cprofilemgr.cpp index 0e516ee..5ecd8f7 100644 --- a/bibletime/frontend/cprofilemgr.cpp +++ b/bibletime/frontend/cprofilemgr.cpp @@ -11,7 +11,7 @@ #include "cprofilemgr.h" -//Qt includes +//TQt includes #include <tqdir.h> #include <tqfile.h> #include <tqptrlist.h> @@ -51,7 +51,7 @@ const TQPtrList<CProfile>& CProfileMgr::profiles() { /** Creates a new profile with the name "name" (first parameter). @return The profile object */ CProfile* CProfileMgr::create( const TQString name ) { - CProfile* p = new CProfile(TQString::null, name); + CProfile* p = new CProfile(TQString(), name); m_profiles.append(p); return p; @@ -97,7 +97,7 @@ CProfile* CProfileMgr::profile(const TQString& name) { /** Returns the startup profile if it exists, otherwise return 0. */ CProfile* CProfileMgr::startupProfile() { if (!m_startupProfile) { - m_startupProfile = new CProfile(TQString::null, "_startup_"); + m_startupProfile = new CProfile(TQString(), "_startup_"); } return m_startupProfile; |