mirror of
https://github.com/levinsv/pgadmin3.git
synced 2026-05-16 14:15:50 -06:00
fix issue #48
При обработке заголовка файла бекапа, не все данные обрабатывались правильно. Мелкие исправления в dlgTransformText.
This commit is contained in:
parent
7dea1432fc
commit
3a01ed237b
3 changed files with 18 additions and 1 deletions
|
|
@ -359,11 +359,12 @@ void dlgTransformText::AppendTextControl(ctlStyledText* ctrl, const wxString app
|
|||
limitChar -= appendtext.length();
|
||||
else
|
||||
isLimit = true;
|
||||
if (!isLimit) ctrl->AppendText(appendtext);
|
||||
}
|
||||
else {
|
||||
strResult.Append(appendtext);
|
||||
ctrl->AppendText(appendtext);
|
||||
}
|
||||
if (!isLimit) ctrl->AppendText(appendtext);
|
||||
}
|
||||
wxJSONValue dlgTransformText::FillConfig() {
|
||||
wxString s;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue