Peter Kümmel wrote: > This is a good idea. We could make the current view a tab view, or add > an new dialog which also provides some check boxes or radio buttons for > the error levels.
that was my idea - either checkboxes or small buttons. > +void GuiProgress::dolyxerrFlush() > +{ > + appendMessage(toqstr(lyxerr_stream_.str())); > > Call appendError or the difference between messages and errors gets > lost. We could als introduce somethigk like appendLyxError function. yes somthing of this sort would be needed, curently lyxerr messages are bit wrongly formated in window. > +void GuiProgress::lyxerrConnect() > +{ > + lyxerr.setSecond(&lyxerr_stream_); > +} > > Why do you need this function? Couldn't setSecond be called in the ctor > of GuiProcess? i only want it to be initialized when once guiprogressview is showed. putting it into ctor of view is problem because we need lyxerr_stream_ in guiprogress. pavel