mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-22 05:16:21 +00:00
Get rid of a Qt-generated stderr message
The stderr message "Object::disconnect: Unexpected null parameter" often appeared when closing and opening buffers. GuiView::on_currentWorkAreaChanged should not pass a null pointer to Object::disconnect.
This commit is contained in:
parent
9d05ac5c91
commit
1451c7cf66
@ -1022,8 +1022,9 @@ void GuiView::updateWindowTitle(GuiWorkArea * wa)
|
||||
|
||||
void GuiView::on_currentWorkAreaChanged(GuiWorkArea * wa)
|
||||
{
|
||||
QObject::disconnect(d.current_work_area_, SIGNAL(busy(bool)),
|
||||
this, SLOT(setBusy(bool)));
|
||||
if (d.current_work_area_)
|
||||
QObject::disconnect(d.current_work_area_, SIGNAL(busy(bool)),
|
||||
this, SLOT(setBusy(bool)));
|
||||
disconnectBuffer();
|
||||
disconnectBufferView();
|
||||
connectBufferView(wa->bufferView());
|
||||
|
Loading…
Reference in New Issue
Block a user