author | harlekin <harlekin> | 2004-01-04 01:07:38 (UTC) |
---|---|---|
committer | harlekin <harlekin> | 2004-01-04 01:07:38 (UTC) |
commit | 726450b119e6d9f2bd33f70068afc54605c134ee (patch) (side-by-side diff) | |
tree | c9068eb0d0fe1b47a81b66c059e33ca3803d1053 | |
parent | ceed1fc19ba49ffe1ed994aca0d462d28a1342b7 (diff) | |
download | opie-726450b119e6d9f2bd33f70068afc54605c134ee.zip opie-726450b119e6d9f2bd33f70068afc54605c134ee.tar.gz opie-726450b119e6d9f2bd33f70068afc54605c134ee.tar.bz2 |
also update the icon etc
-rw-r--r-- | core/pim/today/plugins/mail/mailplugin.cpp | 4 | ||||
-rw-r--r-- | core/pim/today/plugins/mail/mailplugin.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/core/pim/today/plugins/mail/mailplugin.cpp b/core/pim/today/plugins/mail/mailplugin.cpp index bf30538..7ba54ea 100644 --- a/core/pim/today/plugins/mail/mailplugin.cpp +++ b/core/pim/today/plugins/mail/mailplugin.cpp @@ -13,60 +13,60 @@ * (at your option) any later version. * * * ***************************************************************************/ #include "mailplugin.h" MailPlugin::MailPlugin() { m_widget = 0l; } MailPlugin::~MailPlugin() { delete (MailPluginWidget*)m_widget; } QString MailPlugin::pluginName() const { return QObject::tr( "Mail plugin" ); } double MailPlugin::versionNumber() const { return 0.6; } QString MailPlugin::pixmapNameWidget() const { - return "mail/desktopicon"; + return "opiemail/desktopicon"; } QWidget* MailPlugin::widget( QWidget * wid ) { if(!m_widget) { m_widget = new MailPluginWidget( wid, "Datebook" ); } return m_widget; } QString MailPlugin::pixmapNameConfig() const { return 0l; } TodayConfigWidget* MailPlugin::configWidget( QWidget* ) { return 0l; } QString MailPlugin::appName() const { - return "mail"; + return "opiemail"; } bool MailPlugin::excludeFromRefresh() const { return false; } void MailPlugin::refresh() { if ( m_widget ) { m_widget->refresh(); } } void MailPlugin::reinitialize() { } diff --git a/core/pim/today/plugins/mail/mailplugin.h b/core/pim/today/plugins/mail/mailplugin.h index 5b93314..7d6d5e8 100644 --- a/core/pim/today/plugins/mail/mailplugin.h +++ b/core/pim/today/plugins/mail/mailplugin.h @@ -1,28 +1,28 @@ /* * mailplugin.h * - * copyright : (c) 2002 by Maximilian Reiß + * copyright : (c) 2002,2004 by Maximilian Reiß * email : harlekin@handhelds.org * */ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #ifndef MAIL_PLUGIN_H #define MAIL_PLUGIN_H #include <qwidget.h> #include <qguardedptr.h> #include <opie/todayplugininterface.h> #include <opie/todayconfigwidget.h> #include "mailpluginwidget.h" |