fix a compiler error in text_editor.cpp
This commit is contained in:
parent
822a762804
commit
87698de126
@ -1708,7 +1708,7 @@ namespace nana{ namespace widgets
|
|||||||
//Check and make the crtpos available
|
//Check and make the crtpos available
|
||||||
if (crtpos.y < impl_->textbase.lines())
|
if (crtpos.y < impl_->textbase.lines())
|
||||||
{
|
{
|
||||||
crtpos.x = (std::min)(impl_->textbase.getline(crtpos.y).size(), crtpos.x);
|
crtpos.x = (std::min)(static_cast<decltype(crtpos.x)>(impl_->textbase.getline(crtpos.y).size()), crtpos.x);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user