mirror of
https://github.com/levinsv/pgadmin3.git
synced 2026-05-17 22:02:41 -06:00
fix warning for mingw32
This commit is contained in:
parent
7db41df697
commit
0f91ec5e67
12 changed files with 55 additions and 33 deletions
|
|
@ -315,12 +315,16 @@ wxString ctlSQLGrid::GetExportLine(int row, wxArrayInt cols)
|
|||
if (text.Length() != 0) {
|
||||
text.Replace(wxT("'"), wxT("''"));
|
||||
}
|
||||
else text = wxT("null");
|
||||
else
|
||||
text = wxT("null");
|
||||
|
||||
}
|
||||
if (generatesql == 3) if (text == "null") str.Append(cname).Append(" is "); else
|
||||
str.Append(cname).Append("=");
|
||||
|
||||
if (generatesql == 3) {
|
||||
if (text == "null")
|
||||
str.Append(cname).Append(" is ");
|
||||
else
|
||||
str.Append(cname).Append("=");
|
||||
}
|
||||
|
||||
if (needQuote)
|
||||
str.Append(qtsimbol);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue