diff options
| author | Dominik Wenger <domonoky@googlemail.com> | 2007-05-16 19:45:09 +0000 |
|---|---|---|
| committer | Dominik Wenger <domonoky@googlemail.com> | 2007-05-16 19:45:09 +0000 |
| commit | de6b78a2fa487f195d9e66b5b0d825d910caaf36 (patch) | |
| tree | 3fcecebc490786de753559a0a53df8889025a7a2 | |
| parent | 4544c437948e2f4256b6572385ad7043386b9e1b (diff) | |
| download | rockbox-de6b78a2fa487f195d9e66b5b0d825d910caaf36.zip rockbox-de6b78a2fa487f195d9e66b5b0d825d910caaf36.tar.gz rockbox-de6b78a2fa487f195d9e66b5b0d825d910caaf36.tar.bz2 rockbox-de6b78a2fa487f195d9e66b5b0d825d910caaf36.tar.xz | |
fix the recorder8mb Manual URL in rbutil
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13398 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | rbutil/rbutilFrm.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/rbutil/rbutilFrm.cpp b/rbutil/rbutilFrm.cpp index 4e5d0c8..39f8365 100644 --- a/rbutil/rbutilFrm.cpp +++ b/rbutil/rbutilFrm.cpp @@ -325,10 +325,10 @@ void rbutilFrm::OnManualUpdate(wxUpdateUIEvent& event) wxString tmp = gv->curplat; if(tmp == wxT("h120")) tmp = wxT("h100"); //h120 has the h100 manual - if(tmp == wxT("fmrecorder8mb")) tmp = wxT("fmrecorder"); + if(tmp == wxT("fmrecorder8mb")) tmp = wxT("fmrecorder"); if(tmp == wxT("ipodmini1g")) tmp = wxT("ipodmini2g"); - if(tmp == wxT("recorder8mb")) tmp = wxT("recorderg"); - + if(tmp == wxT("recorder8mb")) tmp = wxT("recorder"); + if( tmp == curManualDevice) return; |