fix clang compiling errors
This commit is contained in:
@@ -266,7 +266,7 @@ namespace nana
|
||||
return (this->empty() == false);
|
||||
}
|
||||
|
||||
window handle() const
|
||||
window handle() const override
|
||||
{
|
||||
return handle_;
|
||||
}
|
||||
@@ -349,7 +349,7 @@ namespace nana
|
||||
API::activate_window(handle_);
|
||||
}
|
||||
|
||||
window handle() const
|
||||
window handle() const override
|
||||
{
|
||||
return handle_;
|
||||
}
|
||||
@@ -508,7 +508,7 @@ namespace nana
|
||||
return (this->empty() == false);
|
||||
}
|
||||
|
||||
window handle() const
|
||||
window handle() const override
|
||||
{
|
||||
return handle_;
|
||||
}
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
/*
|
||||
* Graphics Gadget Implementation
|
||||
* Copyright(C) 2003-2013 Jinhao(cnjinhao@hotmail.com)
|
||||
* Nana C++ Library(http://www.nanapro.org)
|
||||
* Copyright(C) 2003-2015 Jinhao(cnjinhao@hotmail.com)
|
||||
*
|
||||
* Distributed under the Boost Software License, Version 1.0.
|
||||
* (See accompanying file LICENSE_1_0.txt or copy at
|
||||
@@ -21,8 +22,8 @@ namespace paint
|
||||
{
|
||||
namespace gadget
|
||||
{
|
||||
void close_16_pixels(nana::paint::graphics&, int x, int y, uint32_t style, const color&);
|
||||
void cross(nana::paint::graphics&, int x, int y, uint32_t size, uint32_t thickness, const nana::color&);
|
||||
void close_16_pixels(::nana::paint::graphics&, int x, int y, unsigned style, const color&);
|
||||
void cross(::nana::paint::graphics&, int x, int y, unsigned size, unsigned thickness, const nana::color&);
|
||||
|
||||
}//end namespace gadget
|
||||
|
||||
|
||||
Reference in New Issue
Block a user