]> git.sesse.net Git - vlc/commitdiff
skins2: differentiate new and release window commands
authorErwan Tulou <erwan10@videolan.org>
Thu, 29 Jul 2010 12:19:09 +0000 (14:19 +0200)
committerErwan Tulou <erwan10@videolan.org>
Sat, 31 Jul 2010 16:02:49 +0000 (18:02 +0200)
modules/gui/skins2/commands/cmd_voutwindow.hpp

index 25aaad8c53c6feda6f1ba904ee7a87e741431f44..9be0c08ec70b8440e57dfd14a61a127ccab7062b 100644 (file)
@@ -36,7 +36,7 @@ public:
     CmdNewVoutWindow( intf_thread_t *pIntf, vout_window_t *pWnd );
     virtual ~CmdNewVoutWindow() { }
     virtual void execute();
-    virtual string getType() const { return "new vout window"; }
+    virtual string getType() const { return "wnd_new"; }
 
 private:
     vout_window_t* m_pWnd;
@@ -51,7 +51,7 @@ public:
     CmdReleaseVoutWindow( intf_thread_t *pIntf, vout_window_t *pWnd );
     virtual ~CmdReleaseVoutWindow() { }
     virtual void execute();
-    virtual string getType() const { return "new vout window"; }
+    virtual string getType() const { return "wnd_release"; }
 
 private:
     vout_window_t* m_pWnd;