mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
a5a9462820
The previous Fix silly typo patch didn't quite work. This one should Signed-off-by: Rick Walsh <rickmwalsh@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
31 lines
591 B
C++
31 lines
591 B
C++
#include "windowtitleupdate.h"
|
|
|
|
WindowTitleUpdate *WindowTitleUpdate::m_instance = NULL;
|
|
|
|
WindowTitleUpdate::WindowTitleUpdate(QObject *parent) : QObject(parent)
|
|
{
|
|
Q_ASSERT_X(m_instance == NULL, "WindowTitleUpdate", "WindowTitleUpdate recreated!");
|
|
|
|
m_instance = this;
|
|
}
|
|
|
|
WindowTitleUpdate *WindowTitleUpdate::instance()
|
|
{
|
|
return m_instance;
|
|
}
|
|
|
|
WindowTitleUpdate::~WindowTitleUpdate()
|
|
{
|
|
m_instance = NULL;
|
|
}
|
|
|
|
void WindowTitleUpdate::emitSignal()
|
|
{
|
|
emit updateTitle();
|
|
}
|
|
|
|
extern "C" void updateWindowTitle()
|
|
{
|
|
WindowTitleUpdate *wt = WindowTitleUpdate::instance();
|
|
wt->emitSignal();
|
|
}
|