⚲
Project
General
Profile
Sign in
Register
Home
Projects
Help
Search
:
Wt
All Projects
Wt
Overview
Activity
Roadmap
Issues
Wiki
Forums
Download (359 Bytes)
Bug #1671
ยป test_combo.cpp
Max Quatember
, 02/05/2013 09:29 AM
#include
<Wt/WComboBox>
namespace
{
class
Combo
:
public
Wt
::
WComboBox
{
public:
Combo
()
{
//clear();
}
};
class
TestComboBoxClear
:
public
Wt
::
WApplication
{
public:
TestComboBoxClear
(
const
Wt
::
WEnvironment
&
env
)
:
Wt
::
WApplication
(
env
)
{
auto
c
=
new
Combo
;
root
()
->
addWidget
(
c
);
}
};
}
(1-1/1)
Loading...