Commit e13aa916 authored by Erwan Tulou's avatar Erwan Tulou

skins2: differentiate new and release window commands

parent a2e4a085
...@@ -36,7 +36,7 @@ public: ...@@ -36,7 +36,7 @@ public:
CmdNewVoutWindow( intf_thread_t *pIntf, vout_window_t *pWnd ); CmdNewVoutWindow( intf_thread_t *pIntf, vout_window_t *pWnd );
virtual ~CmdNewVoutWindow() { } virtual ~CmdNewVoutWindow() { }
virtual void execute(); virtual void execute();
virtual string getType() const { return "new vout window"; } virtual string getType() const { return "wnd_new"; }
private: private:
vout_window_t* m_pWnd; vout_window_t* m_pWnd;
...@@ -51,7 +51,7 @@ public: ...@@ -51,7 +51,7 @@ public:
CmdReleaseVoutWindow( intf_thread_t *pIntf, vout_window_t *pWnd ); CmdReleaseVoutWindow( intf_thread_t *pIntf, vout_window_t *pWnd );
virtual ~CmdReleaseVoutWindow() { } virtual ~CmdReleaseVoutWindow() { }
virtual void execute(); virtual void execute();
virtual string getType() const { return "new vout window"; } virtual string getType() const { return "wnd_release"; }
private: private:
vout_window_t* m_pWnd; vout_window_t* m_pWnd;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment