Skip to content
Snippets Groups Projects
Commit 4c29edfd authored by Mirko Wächter's avatar Mirko Wächter
Browse files

icon

parent b22e2b14
No related branches found
No related tags found
No related merge requests found
......@@ -90,7 +90,7 @@ void DebugDrawerViewerWidgetController::onConnectComponent()
}
SoNode *DebugDrawerViewerWidgetController::getScene()
SoNode* DebugDrawerViewerWidgetController::getScene()
{
return rootVisu;
}
......@@ -109,8 +109,14 @@ void armarx::DebugDrawerViewerWidgetController::onExitComponent()
void armarx::DebugDrawerViewerWidgetController::on_btnClearAll_clicked()
{
ARMARX_INFO << "Clearing visu";
if(debugDrawer)
if (debugDrawer)
{
debugDrawer->clearAll();
}
}
QIcon armarx::DebugDrawerViewerWidgetController::getWidgetIcon() const
{
return QIcon(":icons/Outline-3D-DebugDrawer.png");
}
......@@ -53,7 +53,7 @@ namespace armarx
*/
class ARMARXCOMPONENT_IMPORT_EXPORT
DebugDrawerViewerWidgetController:
public armarx::ArmarXComponentWidgetController
public armarx::ArmarXComponentWidgetController
{
Q_OBJECT
......@@ -121,6 +121,10 @@ namespace armarx
private slots:
void on_btnClearAll_clicked();
// ArmarXWidgetController interface
public:
QIcon getWidgetIcon() const;
};
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment