author | harlekin <harlekin> | 2003-03-08 20:48:41 (UTC) |
---|---|---|
committer | harlekin <harlekin> | 2003-03-08 20:48:41 (UTC) |
commit | b445501b870dd454a5f6e5e81908fbf73f009098 (patch) (unidiff) | |
tree | 8f6cd9ad6852d419374d39ed11e101862eb596b2 | |
parent | 92ad397aace89b80aedd5c14891c2f57b9bc3a81 (diff) | |
download | opie-b445501b870dd454a5f6e5e81908fbf73f009098.zip opie-b445501b870dd454a5f6e5e81908fbf73f009098.tar.gz opie-b445501b870dd454a5f6e5e81908fbf73f009098.tar.bz2 |
update to new paths
-rw-r--r-- | core/pim/today/plugins/datebook/datebookplugin.cpp | 4 | ||||
-rw-r--r-- | core/pim/today/plugins/todolist/todoplugin.cpp | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/core/pim/today/plugins/datebook/datebookplugin.cpp b/core/pim/today/plugins/datebook/datebookplugin.cpp index 4e75a13..4e650ee 100644 --- a/core/pim/today/plugins/datebook/datebookplugin.cpp +++ b/core/pim/today/plugins/datebook/datebookplugin.cpp | |||
@@ -25,44 +25,44 @@ | |||
25 | DatebookPlugin::DatebookPlugin() { | 25 | DatebookPlugin::DatebookPlugin() { |
26 | } | 26 | } |
27 | 27 | ||
28 | DatebookPlugin::~DatebookPlugin() { | 28 | DatebookPlugin::~DatebookPlugin() { |
29 | delete (DatebookPluginWidget*)m_widget; | 29 | delete (DatebookPluginWidget*)m_widget; |
30 | } | 30 | } |
31 | 31 | ||
32 | QString DatebookPlugin::pluginName() const { | 32 | QString DatebookPlugin::pluginName() const { |
33 | return QObject::tr( "Datebook plugin"); | 33 | return QObject::tr( "Datebook plugin"); |
34 | } | 34 | } |
35 | 35 | ||
36 | double DatebookPlugin::versionNumber() const { | 36 | double DatebookPlugin::versionNumber() const { |
37 | return 1.0; | 37 | return 1.0; |
38 | } | 38 | } |
39 | 39 | ||
40 | QString DatebookPlugin::pixmapNameWidget() const { | 40 | QString DatebookPlugin::pixmapNameWidget() const { |
41 | return "DateBook"; | 41 | return "datebook/DateBook"; |
42 | } | 42 | } |
43 | 43 | ||
44 | QWidget* DatebookPlugin::widget( QWidget* wid ) { | 44 | QWidget* DatebookPlugin::widget( QWidget* wid ) { |
45 | if(!m_widget) { | 45 | if(!m_widget) { |
46 | m_widget = new DatebookPluginWidget( wid, "Datebook" ); | 46 | m_widget = new DatebookPluginWidget( wid, "Datebook" ); |
47 | } | 47 | } |
48 | return m_widget; | 48 | return m_widget; |
49 | } | 49 | } |
50 | 50 | ||
51 | QString DatebookPlugin::pixmapNameConfig() const { | 51 | QString DatebookPlugin::pixmapNameConfig() const { |
52 | return "DateBook"; | 52 | return "datebook/DateBook"; |
53 | } | 53 | } |
54 | 54 | ||
55 | TodayConfigWidget* DatebookPlugin::configWidget( QWidget* wid ) { | 55 | TodayConfigWidget* DatebookPlugin::configWidget( QWidget* wid ) { |
56 | return new DatebookPluginConfig( wid , "Datebook" ); | 56 | return new DatebookPluginConfig( wid , "Datebook" ); |
57 | } | 57 | } |
58 | 58 | ||
59 | QString DatebookPlugin::appName() const { | 59 | QString DatebookPlugin::appName() const { |
60 | return "datebook"; | 60 | return "datebook"; |
61 | } | 61 | } |
62 | 62 | ||
63 | bool DatebookPlugin::excludeFromRefresh() const { | 63 | bool DatebookPlugin::excludeFromRefresh() const { |
64 | return false; | 64 | return false; |
65 | } | 65 | } |
66 | 66 | ||
67 | void DatebookPlugin::refresh() { | 67 | void DatebookPlugin::refresh() { |
68 | if ( m_widget ) { | 68 | if ( m_widget ) { |
diff --git a/core/pim/today/plugins/todolist/todoplugin.cpp b/core/pim/today/plugins/todolist/todoplugin.cpp index bff0eba..7eeb8f1 100644 --- a/core/pim/today/plugins/todolist/todoplugin.cpp +++ b/core/pim/today/plugins/todolist/todoplugin.cpp | |||
@@ -23,44 +23,44 @@ | |||
23 | TodolistPlugin::TodolistPlugin() { | 23 | TodolistPlugin::TodolistPlugin() { |
24 | } | 24 | } |
25 | 25 | ||
26 | TodolistPlugin::~TodolistPlugin() { | 26 | TodolistPlugin::~TodolistPlugin() { |
27 | delete (TodolistPluginWidget*)m_widget; | 27 | delete (TodolistPluginWidget*)m_widget; |
28 | } | 28 | } |
29 | 29 | ||
30 | QString TodolistPlugin::pluginName() const { | 30 | QString TodolistPlugin::pluginName() const { |
31 | return QObject::tr( "Todolist plugin" ); | 31 | return QObject::tr( "Todolist plugin" ); |
32 | } | 32 | } |
33 | 33 | ||
34 | double TodolistPlugin::versionNumber() const { | 34 | double TodolistPlugin::versionNumber() const { |
35 | return 0.9; | 35 | return 0.9; |
36 | } | 36 | } |
37 | 37 | ||
38 | QString TodolistPlugin::pixmapNameWidget() const { | 38 | QString TodolistPlugin::pixmapNameWidget() const { |
39 | return "TodoList"; | 39 | return "todo/TodoList"; |
40 | } | 40 | } |
41 | 41 | ||
42 | QWidget* TodolistPlugin::widget( QWidget *wid ) { | 42 | QWidget* TodolistPlugin::widget( QWidget *wid ) { |
43 | if(!m_widget) { | 43 | if(!m_widget) { |
44 | m_widget = new TodolistPluginWidget( wid, "Todolist" ); | 44 | m_widget = new TodolistPluginWidget( wid, "Todolist" ); |
45 | } | 45 | } |
46 | return m_widget; | 46 | return m_widget; |
47 | } | 47 | } |
48 | 48 | ||
49 | QString TodolistPlugin::pixmapNameConfig() const { | 49 | QString TodolistPlugin::pixmapNameConfig() const { |
50 | return "TodoList"; | 50 | return "todo/TodoList"; |
51 | } | 51 | } |
52 | 52 | ||
53 | TodayConfigWidget* TodolistPlugin::configWidget( QWidget* wid ) { | 53 | TodayConfigWidget* TodolistPlugin::configWidget( QWidget* wid ) { |
54 | return new TodolistPluginConfig( wid , "Todolist" ); | 54 | return new TodolistPluginConfig( wid , "Todolist" ); |
55 | } | 55 | } |
56 | 56 | ||
57 | QString TodolistPlugin::appName() const { | 57 | QString TodolistPlugin::appName() const { |
58 | return "todolist"; | 58 | return "todolist"; |
59 | } | 59 | } |
60 | 60 | ||
61 | 61 | ||
62 | bool TodolistPlugin::excludeFromRefresh() const { | 62 | bool TodolistPlugin::excludeFromRefresh() const { |
63 | return false; | 63 | return false; |
64 | } | 64 | } |
65 | 65 | ||
66 | void TodolistPlugin::refresh() { | 66 | void TodolistPlugin::refresh() { |