mirror of
https://github.com/notepad-plus-plus/notepad-plus-plus.git
synced 2025-07-23 05:45:00 +02:00
Fix compiling warning problem
This commit is contained in:
parent
c304b3b873
commit
d975bc24a1
@ -97,8 +97,8 @@ public :
|
||||
};
|
||||
|
||||
virtual void redraw(bool forceUpdate = false) const {
|
||||
_pFgColour->redraw();
|
||||
_pBgColour->redraw();
|
||||
_pFgColour->redraw(forceUpdate);
|
||||
_pBgColour->redraw(forceUpdate);
|
||||
::InvalidateRect(_hStyleInfoStaticText, NULL, TRUE);
|
||||
::UpdateWindow(_hStyleInfoStaticText);
|
||||
};
|
||||
|
@ -122,8 +122,8 @@ void SplitterContainer::redraw(bool forceUpdate) const
|
||||
{
|
||||
assert(_pWin0 != nullptr);
|
||||
assert(_pWin1 != nullptr);
|
||||
_pWin0->redraw(true);
|
||||
_pWin1->redraw(true);
|
||||
_pWin0->redraw(forceUpdate);
|
||||
_pWin1->redraw(forceUpdate);
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user