core: add function for clearing the status bar message
This commit is contained in:
@@ -1083,6 +1083,11 @@ void Core::ShowStatusBarMessage(const QString &s, int timeout)
|
||||
main_window_->statusBar()->showMessage(s, timeout);
|
||||
}
|
||||
|
||||
void Core::ClearStatusBarMessage()
|
||||
{
|
||||
main_window_->statusBar()->clearMessage();
|
||||
}
|
||||
|
||||
void Core::OpenRecoveryProject(const QString &filename)
|
||||
{
|
||||
OpenProjectInternal(filename, true);
|
||||
|
||||
@@ -298,6 +298,8 @@ public:
|
||||
*/
|
||||
void ShowStatusBarMessage(const QString& s, int timeout = 0);
|
||||
|
||||
void ClearStatusBarMessage();
|
||||
|
||||
void OpenRecoveryProject(const QString& filename);
|
||||
|
||||
void OpenNodeInViewer(ViewerOutput* viewer);
|
||||
|
||||
Reference in New Issue
Block a user