mirror of
https://github.com/levinsv/pgadmin3.git
synced 2026-05-15 14:15:49 -06:00
fix warning for mingw32
This commit is contained in:
parent
7db41df697
commit
0f91ec5e67
12 changed files with 55 additions and 33 deletions
|
|
@ -243,7 +243,7 @@ public:
|
|||
{
|
||||
wxColor color;
|
||||
color.Set(239, 228, 176);
|
||||
if (sPos = text.Find(wxT('\n')) != wxNOT_FOUND) {
|
||||
if ((sPos = text.Find(wxT('\n'))) != wxNOT_FOUND) {
|
||||
dc.SetBrush(*wxTheBrushList->FindOrCreateBrush(color));
|
||||
multiline = true;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue