[gnome-shell] mount-operation: fix indentation for some callbacks
- From: Cosimo Cecchi <cosimoc src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-shell] mount-operation: fix indentation for some callbacks
- Date: Thu, 21 Jun 2012 04:16:27 +0000 (UTC)
commit 594c3174abd58a676f8b57c941f285e74c5cc2d3
Author: Cosimo Cecchi <cosimoc gnome org>
Date: Wed Jun 20 16:14:02 2012 -0400
mount-operation: fix indentation for some callbacks
Nothing to see here, move along.
https://bugzilla.gnome.org/show_bug.cgi?id=674962
js/ui/shellMountOperation.js | 34 +++++++++++++++++-----------------
1 files changed, 17 insertions(+), 17 deletions(-)
---
diff --git a/js/ui/shellMountOperation.js b/js/ui/shellMountOperation.js
index 11cc613..dd4910a 100644
--- a/js/ui/shellMountOperation.js
+++ b/js/ui/shellMountOperation.js
@@ -132,13 +132,13 @@ const ShellMountOperation = new Lang.Class({
this._closeExistingDialog();
this._dialog = new ShellMountQuestionDialog(this._gicon);
- this._dialogId = this._dialog.connect('response',
- Lang.bind(this, function(object, choice) {
- this.mountOp.set_choice(choice);
- this.mountOp.reply(Gio.MountOperationResult.HANDLED);
+ this._dialogId = this._dialog.connect('response', Lang.bind(this,
+ function(object, choice) {
+ this.mountOp.set_choice(choice);
+ this.mountOp.reply(Gio.MountOperationResult.HANDLED);
- this.close();
- }));
+ this.close();
+ }));
this._dialog.update(message, choices);
this._dialog.open();
@@ -190,17 +190,17 @@ const ShellMountOperation = new Lang.Class({
this._processesDialog = new ShellProcessesDialog(this._gicon);
this._dialog = this._processesDialog;
- this._dialogId = this._processesDialog.connect('response',
- Lang.bind(this, function(object, choice) {
- if (choice == -1) {
- this.mountOp.reply(Gio.MountOperationResult.ABORTED);
- } else {
- this.mountOp.set_choice(choice);
- this.mountOp.reply(Gio.MountOperationResult.HANDLED);
- }
-
- this.close();
- }));
+ this._dialogId = this._processesDialog.connect('response', Lang.bind(this,
+ function(object, choice) {
+ if (choice == -1) {
+ this.mountOp.reply(Gio.MountOperationResult.ABORTED);
+ } else {
+ this.mountOp.set_choice(choice);
+ this.mountOp.reply(Gio.MountOperationResult.HANDLED);
+ }
+
+ this.close();
+ }));
this._processesDialog.open();
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]