From e97df9ea192f860e6d419e500471e0e15215f47d Mon Sep 17 00:00:00 2001 From: Michael Kaply Date: Fri, 4 May 2012 08:42:51 -0500 Subject: [PATCH] Bug 278860 - missed gPromptService change to Services.prompt in previous checkin - r=mossop --- toolkit/profile/content/profileSelection.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toolkit/profile/content/profileSelection.js b/toolkit/profile/content/profileSelection.js index 81360a35ebc..85727c09acb 100644 --- a/toolkit/profile/content/profileSelection.js +++ b/toolkit/profile/content/profileSelection.js @@ -125,7 +125,7 @@ function acceptDialog() var missingTitle = gProfileManagerBundle.getString("profileMissingTitle"); var missing = gProfileManagerBundle.getFormattedString("profileMissing", [appName]); - gPromptService.alert(window, missingTitle, missing); + Services.prompt.alert(window, missingTitle, missing); return false; }