From b7ed07c2430525d3c3c4668d890a1550ec4330ea Mon Sep 17 00:00:00 2001 From: "mscott%netscape.com" Date: Sat, 26 Apr 2003 00:50:11 +0000 Subject: [PATCH] change a MOZ_PHOENIX ifdef to a MOZ_XUL_APP ifdef because we don't want thunderbird migrating 4.x profiles either. --- profile/src/nsProfile.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/profile/src/nsProfile.cpp b/profile/src/nsProfile.cpp index a76edd7ea50..72b7b85b721 100644 --- a/profile/src/nsProfile.cpp +++ b/profile/src/nsProfile.cpp @@ -886,7 +886,7 @@ nsProfile::ProcessArgs(nsICmdLineService *cmdLineArgs, NS_ASSERTION(NS_SUCCEEDED(rv),"failed to determine if we should force migration"); } -#ifndef MOZ_PHOENIX // The phoenix doesn't use old profiles. +#ifndef MOZ_XUL_APP // The phoenix/thunderbird doesn't use old profiles. // Start Migaration activity rv = cmdLineArgs->GetCmdLineValue(INSTALLER_CMD_LINE_ARG, getter_Copies(cmdResult)); @@ -928,7 +928,7 @@ nsProfile::ProcessArgs(nsICmdLineService *cmdLineArgs, } } -#endif // MOZ_PHOENIX +#endif // MOZ_XUL_APP #ifdef DEBUG_profile_verbose printf("Profile Manager : Command Line Options : End\n");