Use Q_FUNC_INFO for message

This commit is contained in:
ballessay 2017-04-26 01:28:36 +02:00 committed by C. Balles
parent 312cc9b912
commit ab28142ec5
2 changed files with 3 additions and 3 deletions

View File

@ -58,7 +58,7 @@ void Notepad::setup()
void Notepad::refresh()
{
// TODO: implement
eprintf("%s - not implemented\n", __PRETTY_FUNCTION__);
eprintf("%s - not implemented\n", Q_FUNC_INFO);
}
void Notepad::setText(const QString &str)

View File

@ -101,13 +101,13 @@ SdbDock::~SdbDock()
void SdbDock::setup()
{
// TODO: implement
eprintf("%s - not implemented\n", __PRETTY_FUNCTION__);
eprintf("%s - not implemented\n", Q_FUNC_INFO);
}
void SdbDock::refresh()
{
// TODO: implement
eprintf("%s - not implemented\n", __PRETTY_FUNCTION__);
eprintf("%s - not implemented\n", Q_FUNC_INFO);
}
void SdbDock::on_lockButton_clicked()