mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-12 22:52:28 -05:00
more Unicode fixes for rutil, thanx to preglow. Also made Theme Preview window modeless
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12785 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
410af8955f
commit
c9cafd846f
12 changed files with 114 additions and 62 deletions
|
|
@ -488,14 +488,14 @@ int Uninstall(const wxString dir, bool isFullUninstall) {
|
|||
// If we're running on the device, let's not delete our own
|
||||
// installation, eh?
|
||||
if (gv->portable &&
|
||||
FilesToRemove->Item(i).StartsWith(wxT(PATH_SEP
|
||||
"RockboxUtility")) )
|
||||
FilesToRemove->Item(i).StartsWith(PATH_SEP
|
||||
wxT("RockboxUtility")) )
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
wxString* buf2 = new wxString;
|
||||
buf.Printf("%s%s", dir.c_str() , FilesToRemove->Item(i).c_str() );
|
||||
buf.Printf(wxT("%s%s"), dir.c_str() , FilesToRemove->Item(i).c_str() );
|
||||
buf2->Format(wxT("Deleting %s"), buf.c_str());
|
||||
|
||||
if (! progress->Update((i + 1) * 100 / totalfiles, *buf2) )
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue