CTaskBar: Fix type checking issue with GCC 6
This commit is contained in:
parent
ec05d491e1
commit
ac52348e79
@ -31,7 +31,7 @@ PROJECT_NAME = NXWidgets
|
||||
# This could be handy for archiving the generated documentation or
|
||||
# if some version control system is used.
|
||||
|
||||
PROJECT_NUMBER = "1.15"
|
||||
PROJECT_NUMBER = "1.18"
|
||||
|
||||
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
|
||||
# base path where the generated documentation will be put.
|
||||
|
@ -855,7 +855,7 @@ NXWidgets::CNxTkWindow *CTaskbar::openFramedWindow(void)
|
||||
if (!window)
|
||||
{
|
||||
delete control;
|
||||
return false;
|
||||
return (NXWidgets::CNxTkWindow *)0;
|
||||
}
|
||||
|
||||
// Open (and initialize) the window
|
||||
@ -865,7 +865,6 @@ NXWidgets::CNxTkWindow *CTaskbar::openFramedWindow(void)
|
||||
{
|
||||
delete window;
|
||||
window = (NXWidgets::CNxTkWindow *)0;
|
||||
return false;
|
||||
}
|
||||
|
||||
return window;
|
||||
|
Loading…
Reference in New Issue
Block a user