1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-03-15 07:29:15 +01:00

OP-1474 Uncrustify

This commit is contained in:
Stefan Karlsson 2014-09-22 22:05:20 +02:00
parent 508112d5a3
commit 9166363f09
3 changed files with 5 additions and 4 deletions

View File

@ -45,7 +45,7 @@ void ModelUavoProxy::sendPathPlan()
{
modelToObjects();
PathPlan *pathPlan = PathPlan::GetInstance(objMngr);
PathPlan *pathPlan = PathPlan::GetInstance(objMngr);
const int waypointCount = pathPlan->getWaypointCount();
const int actionCount = pathPlan->getPathActionCount();
@ -98,6 +98,7 @@ void ModelUavoProxy::sendPathPlan()
void ModelUavoProxy::receivePathPlan()
{
QProgressDialog progress(tr("Receiving the path plan from the board... "), "", 0, 0);
progress.setWindowModality(Qt::WindowModal);
progress.setCancelButton(NULL);
progress.show();

View File

@ -36,7 +36,7 @@
#include "mixercurvepoint.h"
#include "mixercurvewidget.h"
MixerNode::MixerNode(MixerCurveWidget *graphWidget, QGraphicsItem* graphItem)
MixerNode::MixerNode(MixerCurveWidget *graphWidget, QGraphicsItem *graphItem)
: m_graph(graphWidget), m_graphItem(graphItem)
{
setFlag(ItemIsMovable);

View File

@ -45,7 +45,7 @@ class UAVOBJECTWIDGETUTILS_EXPORT MixerNode : public QObject, public QGraphicsIt
Q_OBJECT
Q_INTERFACES(QGraphicsItem)
public:
MixerNode(MixerCurveWidget *graphWidget, QGraphicsItem* graphItem);
MixerNode(MixerCurveWidget *graphWidget, QGraphicsItem *graphItem);
void addEdge(Edge *edge);
QList<Edge *> edges() const;
@ -103,7 +103,7 @@ private:
QList<Edge *> m_edgeList;
QPointF m_newPos;
MixerCurveWidget *m_graph;
QGraphicsItem* m_graphItem;
QGraphicsItem *m_graphItem;
qreal m_alpha;
QColor m_positiveColor;