diff options
author | Timothy Pearson <[email protected]> | 2013-02-22 11:44:51 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-02-22 11:44:51 -0600 |
commit | f74503ce1b2872712090c76ed8715419eef8aa36 (patch) | |
tree | 9f3d9437af22b9f1c6bd6bb3f4e615ecefa6ea3e /tderesources/birthdays/resourcekabc.cpp | |
parent | 7c63b8ac46d958513d807b3f25af33f44fba17a0 (diff) | |
download | tdepim-f74503ce1b2872712090c76ed8715419eef8aa36.tar.gz tdepim-f74503ce1b2872712090c76ed8715419eef8aa36.zip |
Fix FTBFS
Diffstat (limited to 'tderesources/birthdays/resourcekabc.cpp')
-rw-r--r-- | tderesources/birthdays/resourcekabc.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tderesources/birthdays/resourcekabc.cpp b/tderesources/birthdays/resourcekabc.cpp index 6b8d31705..68ef63390 100644 --- a/tderesources/birthdays/resourcekabc.cpp +++ b/tderesources/birthdays/resourcekabc.cpp @@ -62,11 +62,11 @@ extern "C" { TDEGlobal::locale()->insertCatalogue( "kres_birthday" ); TDEGlobal::locale()->insertCatalogue( "libkcal" ); - return new KRES::PluginFactory<ResourceKABC,ResourceKABCConfig>(); + return new KRES::PluginFactory<ResourceTDEABC,ResourceTDEABCConfig>(); } } -ResourceTDEABC::ResourceKABC( const TDEConfig* config ) +ResourceTDEABC::ResourceTDEABC( const TDEConfig* config ) : ResourceCalendar( config ), mCalendar( TQString::fromLatin1( "UTC" ) ), mAlarmDays( 0 ), mAlarm( true ), mUseCategories( false ) { @@ -79,14 +79,14 @@ ResourceTDEABC::ResourceKABC( const TDEConfig* config ) init(); } -ResourceTDEABC::ResourceKABC() +ResourceTDEABC::ResourceTDEABC() : ResourceCalendar( 0 ), mCalendar( TQString::fromLatin1( "UTC" ) ), mAlarmDays( 0 ), mAlarm( true ), mUseCategories( false ) { init(); } -ResourceTDEABC::~ResourceKABC() +ResourceTDEABC::~ResourceTDEABC() { delete mLock; } |