зеркало из https://github.com/mozilla/pjs.git
fix char*/PRUnichar* problem
This commit is contained in:
Родитель
9f8f18ff1a
Коммит
c2a67b6bb2
|
@ -714,10 +714,10 @@ nsInstall::FinalizeInstall(PRInt32* aReturn)
|
||||||
if (ie == NULL)
|
if (ie == NULL)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
char *objString = ie->toString();
|
PRUnichar *objString = ie->toString();
|
||||||
|
|
||||||
if (mNotifier)
|
if (mNotifier)
|
||||||
mNotifier->FinalizeProgress(nsAutoString(objString).GetUnicode(),
|
mNotifier->FinalizeProgress(objString,
|
||||||
i, mInstalledFiles->GetSize());
|
i, mInstalledFiles->GetSize());
|
||||||
|
|
||||||
if (objString)
|
if (objString)
|
||||||
|
@ -1671,12 +1671,12 @@ nsInstall::ScheduleForInstall(nsInstallObject* ob)
|
||||||
{
|
{
|
||||||
PRInt32 error = nsInstall::SUCCESS;
|
PRInt32 error = nsInstall::SUCCESS;
|
||||||
|
|
||||||
char *objString = ob->toString();
|
PRUnichar *objString = ob->toString();
|
||||||
|
|
||||||
// flash current item
|
// flash current item
|
||||||
|
|
||||||
if (mNotifier)
|
if (mNotifier)
|
||||||
mNotifier->ItemScheduled(nsAutoString(objString).GetUnicode());
|
mNotifier->ItemScheduled(objString);
|
||||||
|
|
||||||
|
|
||||||
// do any unpacking or other set-up
|
// do any unpacking or other set-up
|
||||||
|
|
Загрузка…
Ссылка в новой задаче