From 3b862595de9ef4965ddbd82bb71d090e983ff2fc Mon Sep 17 00:00:00 2001 From: "cbiesinger%web.de" Date: Wed, 28 Aug 2002 12:55:29 +0000 Subject: [PATCH] bug 164527 r=timeless sr=bz moa=ben remove unused function git-svn-id: svn://10.0.0.236/trunk@128335 18797224-902f-48f8-a5cc-f745e15eee43 --- .../resources/content/profileSelection.js | 24 ------------------- 1 file changed, 24 deletions(-) diff --git a/mozilla/profile/resources/content/profileSelection.js b/mozilla/profile/resources/content/profileSelection.js index d4edc3e786b..c6b8057533a 100644 --- a/mozilla/profile/resources/content/profileSelection.js +++ b/mozilla/profile/resources/content/profileSelection.js @@ -236,30 +236,6 @@ function onExit() return true; } -function foo() -{ - if( !set ) { - if( profileManagerMode == "manager" ) - oldCaptionManager = document.getElementById( "caption" ).firstChild.nodeValue; - else - oldCaptionSelection = document.getElementById( "caption" ).firstChild.nodeValue; - ChangeCaption( "What Is Mozollia?" ); // DO NOT LOCALIZE! - set = true; - } - else { - var tempCaption = document.getElementById( "caption" ).firstChild.nodeValue; - if( profileManagerMode == "manager" ) { - ChangeCaption( oldCaptionManager ); - oldCaptionManager = tempCaption; - } - else { - ChangeCaption( oldCaptionSelection ) - oldCaptionSelection = tempCaption; - } - set = false; - } -} - function SetUpOKCancelButtons() { doSetOKCancel( onStart, onExit, null, null );