author | mickeyl <mickeyl> | 2004-04-02 14:00:27 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2004-04-02 14:00:27 (UTC) |
commit | b48839f984a7940d54eb600bddcf174e9bc86f5d (patch) (unidiff) | |
tree | 24b8a3c22b5479bdd3b8cec7e6203078aea17fbd | |
parent | 96105800596dfbd6b828ef47dd7774769f1e3ef3 (diff) | |
download | opie-b48839f984a7940d54eb600bddcf174e9bc86f5d.zip opie-b48839f984a7940d54eb600bddcf174e9bc86f5d.tar.gz opie-b48839f984a7940d54eb600bddcf174e9bc86f5d.tar.bz2 |
reduce unnecessary nesting
improve plugin names
-rw-r--r-- | config.in | 5 | ||||
-rw-r--r-- | core/pim/today/plugins/mail/config.in | 2 | ||||
-rw-r--r-- | core/pim/today/plugins/todolist/config.in | 6 |
3 files changed, 9 insertions, 4 deletions
@@ -194,21 +194,22 @@ menu "Input methods" | |||
194 | endmenu | 194 | endmenu |
195 | 195 | ||
196 | menu "Pim" | 196 | menu "Pim" |
197 | source core/pim/config.in | 197 | source core/pim/config.in |
198 | menu "Today Plugins" | 198 | comment "Today Plugins ---" |
199 | source noncore/todayplugins/config.in | 199 | source noncore/todayplugins/config.in |
200 | source core/pim/today/plugins/config.in | 200 | source core/pim/today/plugins/config.in |
201 | endmenu | ||
202 | endmenu | 201 | endmenu |
203 | 202 | ||
204 | menu "Settings" | 203 | menu "Settings" |
205 | source core/settings/config.in | 204 | source core/settings/config.in |
206 | source noncore/settings/config.in | 205 | source noncore/settings/config.in |
207 | endmenu | 206 | endmenu |
208 | 207 | ||
209 | menu "Theming" | 208 | menu "Theming" |
209 | comment "Decorations ---" | ||
210 | source noncore/decorations/config.in | 210 | source noncore/decorations/config.in |
211 | comment "Styles ---" | ||
211 | source noncore/styles/config.in | 212 | source noncore/styles/config.in |
212 | endmenu | 213 | endmenu |
213 | 214 | ||
214 | menu "Tools" | 215 | menu "Tools" |
diff --git a/core/pim/today/plugins/mail/config.in b/core/pim/today/plugins/mail/config.in index 4a115bd..e6106ae 100644 --- a/core/pim/today/plugins/mail/config.in +++ b/core/pim/today/plugins/mail/config.in | |||
@@ -1,6 +1,6 @@ | |||
1 | config TODAY_MAIL | 1 | config TODAY_MAIL |
2 | boolean "mail" | 2 | boolean "opie-today-mailplugin" |
3 | default "y" | 3 | default "y" |
4 | depends ( LIBQPE || LIBQPE-X11 ) && LIBOPIE2CORE && LIBOPIE2PIM && LIBMAILWRAPPER | 4 | depends ( LIBQPE || LIBQPE-X11 ) && LIBOPIE2CORE && LIBOPIE2PIM && LIBMAILWRAPPER |
5 | 5 | ||
6 | comment "opie-today-mailplugin requires libopie2core, libopie2pim, and libmailwrapper" | 6 | comment "opie-today-mailplugin requires libopie2core, libopie2pim, and libmailwrapper" |
diff --git a/core/pim/today/plugins/todolist/config.in b/core/pim/today/plugins/todolist/config.in index 2a61045..fc3380d 100644 --- a/core/pim/today/plugins/todolist/config.in +++ b/core/pim/today/plugins/todolist/config.in | |||
@@ -1,4 +1,8 @@ | |||
1 | config TODAY_TODOLIST | 1 | config TODAY_TODOLIST |
2 | boolean "todolist" | 2 | boolean "opie-today-todolistplugin" |
3 | default "y" | 3 | default "y" |
4 | depends ( LIBQPE || LIBQPE-X11 ) && LIBOPIE2CORE && LIBOPIE2UI && LIBOPIE2PIM | 4 | depends ( LIBQPE || LIBQPE-X11 ) && LIBOPIE2CORE && LIBOPIE2UI && LIBOPIE2PIM |
5 | |||
6 | comment "opie-today-todolistplugin requires libopie2core, libopie2ui, libopie2pim" | ||
7 | depends !( ( LIBQPE || LIBQPE-X11 ) && LIBOPIE2CORE && LIBOPIE2UI && LIBOPIE2PIM ) | ||
8 | |||