Fix crash when changing background color of a Text Document

When changing a text documents background color (using the Application
Settings dialog) Qucs crashed. This was due to the changed inheritance
of TextDoc, from QTextEdit to QPlainTextEdit, which was not updated
here.
This commit is contained in:
in3otd 2016-02-07 09:57:29 +01:00
parent 8bf669f762
commit cc226d7054

View File

@ -488,7 +488,7 @@ void QucsSettingsDialog::slotApply()
int No=0;
QWidget *w;
while((w=App->DocumentTab->page(No++)) != 0)
if(w->inherits("QTextEdit"))
if(w->inherits("QPlainTextEdit"))
((TextDoc*)w)->viewport()->setPaletteBackgroundColor(
QucsSettings.BGColor);
else