Skip to content

Commit

Permalink
Fix ObjectCreator build
Browse files Browse the repository at this point in the history
  • Loading branch information
akrieger committed Oct 4, 2022
1 parent b90005e commit 8446d9c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions object_creator/flowlayout.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
****************************************************************************/

#include "flowlayout.h"
#include <QtWidgets>
#include <QtWidgets/QtWidgets>

creator::FlowLayout::FlowLayout( QWidget *parent, int margin, int hSpacing, int vSpacing )
: QLayout( parent ), m_hSpace( hSpacing ), m_vSpace( vSpacing ) {
Expand Down Expand Up @@ -188,4 +188,4 @@ int creator::FlowLayout::smartSpacing( QStyle::PixelMetric pm ) const {
} else{
return static_cast<QLayout *>( parent )->spacing();
}
}
}
4 changes: 2 additions & 2 deletions object_creator/simple_property_widget.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#include "simple_property_widget.h"
#include <QtWidgets>
#include <QtWidgets/QtWidgets>

creator::simple_property_widget::simple_property_widget( QWidget* parent, QString propertyText,
property_type prop_type, QObject* to_notify ) : QFrame( parent ) {
Expand Down Expand Up @@ -167,4 +167,4 @@ QEvent::Type creator::property_changed::registeredType()
eventType = static_cast<QEvent::Type>( generatedType );
}
return eventType;
}
}

0 comments on commit 8446d9c

Please sign in to comment.