[polari] actions: Rename 'message-user' to 'show-message-user-dialog'



commit b8cd95265f8ad87e330547c9780cf3d061009889
Author: Florian Müllner <fmuellner gnome org>
Date:   Fri Sep 6 18:15:11 2013 +0200

    actions: Rename 'message-user' to 'show-message-user-dialog'
    
    We will soon use the same split as 'join-room'/'join-room-dialog'.

 src/application.js |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/src/application.js b/src/application.js
index c0a448b..cc0b204 100644
--- a/src/application.js
+++ b/src/application.js
@@ -73,8 +73,8 @@ const Application = new Lang.Class({
             activate: Lang.bind(this, this._onShowJoinDialog),
             create_hook: Lang.bind(this, this._accountActionsCreateHook),
             accel: '<Primary>n' },
-          { name: 'message-user',
-            activate: Lang.bind(this, this._onMessageUser) },
+          { name: 'show-message-user-dialog',
+            activate: Lang.bind(this, this._onShowMessageUserDialog) },
           { name: 'join-room',
             activate: Lang.bind(this, this._onJoinRoom),
             parameter_type: GLib.VariantType.new('(ssu)') },
@@ -215,7 +215,7 @@ const Application = new Lang.Class({
         this._window.showJoinRoomDialog();
     },
 
-    _onMessageUser: function() {
+    _onShowMessageUserDialog: function() {
         log('Activated action "Message user"');
     },
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]