mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-09-08 02:54:56 -06:00
Docking: Fixed for C++11
git-svn-id: svn://ultimatepp.org/upp/trunk@7109 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
parent
0d769a5c41
commit
3a0cbf860b
2 changed files with 2 additions and 2 deletions
|
|
@ -309,7 +309,7 @@ void DockCont::TabClosed(Value v)
|
|||
RefreshLayout();
|
||||
}
|
||||
|
||||
void DockCont::TabsClosed(Vector<Value> vv)
|
||||
void DockCont::TabsClosed(ValueArray vv)
|
||||
{
|
||||
for (int i = vv.GetCount()-1; i >= 0 ; --i)
|
||||
TabClosed0(vv[i]);
|
||||
|
|
|
|||
|
|
@ -101,7 +101,7 @@ private:
|
|||
void TabContext(int ix);
|
||||
void TabClosed0(Value v);
|
||||
void TabClosed(Value v);
|
||||
void TabsClosed(Vector<Value> vv);
|
||||
void TabsClosed(ValueArray vv);
|
||||
// Menus/Buttons
|
||||
void Float();
|
||||
void Dock(int align);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue