Commit 8170a7c4 authored by Don Gagne's avatar Don Gagne

Remove warning

parent c3260557
...@@ -501,7 +501,8 @@ void MainWindow::_buildSimView(void) ...@@ -501,7 +501,8 @@ void MainWindow::_buildSimView(void)
void MainWindow::_showDockWidget(const QString& name, bool show) void MainWindow::_showDockWidget(const QString& name, bool show)
{ {
if (!_mapName2DockWidget.contains(name)) { if (!_mapName2DockWidget.contains(name)) {
qWarning() << "Attempt to show unknown dock widget" << name; // Don't show any sort of warning here. Dock Widgets which have been remove could still be in settings.
// Which would cause us to end up here.
return; return;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment