[vlc-commits] commit: skins2: differentiate new and release window commands (Erwan Tulou )
git at videolan.org
git at videolan.org
Sat Jul 31 18:03:04 CEST 2010
vlc | branch: master | Erwan Tulou <erwan10 at videolan.org> | Thu Jul 29 14:19:09 2010 +0200| [e13aa916fcc3b67a01e103fa88e9d7c4143844ab] | committer: Erwan Tulou
skins2: differentiate new and release window commands
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=e13aa916fcc3b67a01e103fa88e9d7c4143844ab
---
modules/gui/skins2/commands/cmd_voutwindow.hpp | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/modules/gui/skins2/commands/cmd_voutwindow.hpp b/modules/gui/skins2/commands/cmd_voutwindow.hpp
index 25aaad8..9be0c08 100644
--- a/modules/gui/skins2/commands/cmd_voutwindow.hpp
+++ b/modules/gui/skins2/commands/cmd_voutwindow.hpp
@@ -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;
More information about the vlc-commits
mailing list