⚲
Project
General
Profile
Sign in
Register
Home
Projects
Help
Search
:
Wt
All Projects
Wt
Overview
Activity
Roadmap
Issues
Wiki
Forums
Download (414 Bytes)
Bug #1816
ยป test.cpp
Max Quatember
, 04/05/2013 06:59 PM
namespace
{
class
TestDiaTitle
:
public
Wt
::
WApplication
{
public:
Wt
::
WPushButton
*
button
;
TestDiaTitle
(
const
Wt
::
WEnvironment
&
env
)
:
Wt
::
WApplication
(
env
)
{
button
=
new
Wt
::
WPushButton
(
"click"
);
root
()
->
addWidget
(
button
);
button
->
clicked
().
connect
(
[
&
](...)
{
Wt
::
WDialog
dia
;
dia
.
setWindowTitle
(
toUTF8
(
"&"
)
);
dia
.
exec
();
});
}
};
}
(1-1/1)
Loading...