Bug 814844 - [toolbox] The _onCloseClick function in ToolbarView is never used, r=rcampbell

This commit is contained in:
Victor Porof 2012-12-20 19:20:50 +02:00
Родитель 9a72e8ff2a
Коммит 758870cc3e
1 изменённых файлов: 0 добавлений и 8 удалений

Просмотреть файл

@ -11,7 +11,6 @@
*/
function ToolbarView() {
dumpn("ToolbarView was instantiated");
this._onCloseClick = this._onCloseClick.bind(this);
this._onTogglePanesPressed = this._onTogglePanesPressed.bind(this);
this._onResumePressed = this._onResumePressed.bind(this);
this._onStepOverPressed = this._onStepOverPressed.bind(this);
@ -108,13 +107,6 @@ ToolbarView.prototype = {
this._sources.setAttribute("hidden", !aVisibleFlag);
},
/**
* Listener handling the close button click event.
*/
_onCloseClick: function DVT__onCloseClick() {
DebuggerController._shutdownDebugger();
},
/**
* Listener handling the toggle button click event.
*/