author | alwin <alwin> | 2005-03-12 02:19:00 (UTC) |
---|---|---|
committer | alwin <alwin> | 2005-03-12 02:19:00 (UTC) |
commit | 9815fc1551763226f974f8ea8eab6d0b031e0be3 (patch) (unidiff) | |
tree | 29c9319a44a4e89b204b63f91a13e280646d9b72 | |
parent | 4c3ce64f6816353f5b8bc268c126d7c53d18ce46 (diff) | |
download | opie-9815fc1551763226f974f8ea8eab6d0b031e0be3.zip opie-9815fc1551763226f974f8ea8eab6d0b031e0be3.tar.gz opie-9815fc1551763226f974f8ea8eab6d0b031e0be3.tar.bz2 |
pixmap corrected
-rw-r--r-- | core/pim/today/plugins/mail/mailplugin.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/core/pim/today/plugins/mail/mailplugin.cpp b/core/pim/today/plugins/mail/mailplugin.cpp index f590ebb..4cfb26c 100644 --- a/core/pim/today/plugins/mail/mailplugin.cpp +++ b/core/pim/today/plugins/mail/mailplugin.cpp | |||
@@ -1,13 +1,12 @@ | |||
1 | /* | 1 | /* |
2 | * mailplugin.cpp | 2 | * mailplugin.cpp |
3 | * | 3 | * |
4 | * copyright : (c) 2002,2003,2004 by Maximilian Reiß | 4 | * copyright : (c) 2002,2003,2004 by Maximilian Rei� * email : harlekin@handhelds.org |
5 | * email : harlekin@handhelds.org | ||
6 | * | 5 | * |
7 | */ | 6 | */ |
8 | /*************************************************************************** | 7 | /*************************************************************************** |
9 | * * | 8 | * * |
10 | * This program is free software; you can redistribute it and/or modify * | 9 | * This program is free software; you can redistribute it and/or modify * |
11 | * it under the terms of the GNU General Public License as published by * | 10 | * it under the terms of the GNU General Public License as published by * |
12 | * the Free Software Foundation; either version 2 of the License, or * | 11 | * the Free Software Foundation; either version 2 of the License, or * |
13 | * (at your option) any later version. * | 12 | * (at your option) any later version. * |
@@ -28,17 +27,17 @@ QString MailPlugin::pluginName() const { | |||
28 | return QObject::tr( "Mail plugin" ); | 27 | return QObject::tr( "Mail plugin" ); |
29 | } | 28 | } |
30 | 29 | ||
31 | double MailPlugin::versionNumber() const { | 30 | double MailPlugin::versionNumber() const { |
32 | return 0.6; | 31 | return 0.6; |
33 | } | 32 | } |
34 | 33 | ||
35 | QString MailPlugin::pixmapNameWidget() const { | 34 | QString MailPlugin::pixmapNameWidget() const { |
36 | return "opiemail/desktopicon"; | 35 | return "mail/desktopicon"; |
37 | } | 36 | } |
38 | 37 | ||
39 | QWidget* MailPlugin::widget( QWidget * wid ) { | 38 | QWidget* MailPlugin::widget( QWidget * wid ) { |
40 | m_widget = new MailPluginWidget( wid, "Datebook" ); | 39 | m_widget = new MailPluginWidget( wid, "Datebook" ); |
41 | return m_widget; | 40 | return m_widget; |
42 | } | 41 | } |
43 | 42 | ||
44 | 43 | ||