diff options
author | Christian Wieninger <winni@debian.(none)> | 2007-11-28 19:13:15 +0100 |
---|---|---|
committer | Christian Wieninger <winni@debian.(none)> | 2007-11-28 19:13:15 +0100 |
commit | 4209a6c4eba71b44ee52930107891ed6f95757a4 (patch) | |
tree | 025e8ab25d7017864333397c8ea74492d53a1c8e /epgsearchsetup.c | |
parent | edd2bf455b0315a345662067a38675faa32894fc (diff) | |
download | vdr-plugin-epgsearch-4209a6c4eba71b44ee52930107891ed6f95757a4.tar.gz vdr-plugin-epgsearch-4209a6c4eba71b44ee52930107891ed6f95757a4.tar.bz2 |
- fixed array declaration to correct size
Diffstat (limited to 'epgsearchsetup.c')
-rw-r--r-- | epgsearchsetup.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/epgsearchsetup.c b/epgsearchsetup.c index a998210..cc8035b 100644 --- a/epgsearchsetup.c +++ b/epgsearchsetup.c @@ -39,11 +39,11 @@ The project's page is at http://winni.vdr-developer.org/epgsearch const char *OkKeyMode[2]; const char *RedKeyMode[2]; const char *BlueKeyMode[2]; -const char *ProgressbarMode[4]; +const char *ProgressbarMode[3]; const char *StartMenuMode[2]; const char *AddSubtitleMode[3]; const char *FavoritesMenuMode[3]; -const char *MailMethod[3]; +const char *MailMethod[2]; const char *cMenuSetupMailNotification::HostNameChars = " abcdefghijklmnopqrstuvwxyz0123456789-._~:"; const char *cMenuSetupMailNotification::UserNameChars = " abcdefghijklmnopqrstuvwxyz0123456789-+.,:;?!$&#@~{}[]()_/"; @@ -989,3 +989,4 @@ eOSState cMenuSetupMailNotification::ProcessKey(eKeys Key) return state; } + |