PartDesign: [skip ci] do forward declaration if possible to reduce build timw

This commit is contained in:
wmayer
2020-02-16 19:26:48 +01:00
parent 0fe8157af5
commit 44b9ed6228
2 changed files with 3 additions and 2 deletions

View File

@@ -25,6 +25,7 @@
#include "PreCompiled.h"
#ifndef _PreComp_
# include <QListWidget>
# include <QListWidgetItem>
#endif
@@ -158,7 +159,7 @@ void TaskDressUpParameters::doubleClicked(QListWidgetItem* item) {
// executed when the user selected a new item in the list
// shows the fillets as they are -> useful to switch out of selection mode
Q_UNUSED(item);
Q_UNUSED(item)
// assure we are not in selection mode
exitSelectionMode();

View File

@@ -27,12 +27,12 @@
#include <Gui/TaskView/TaskView.h>
#include <Gui/Selection.h>
#include <QListWidget>
#include "TaskFeatureParameters.h"
#include "ViewProviderDressUp.h"
class QListWidget;
class QListWidgetItem;
namespace Part {
class Feature;