Coding style fixes.

This commit is contained in:
Felix Geyer 2012-05-15 17:48:48 +02:00
parent 0c7e1f1a6b
commit b90807c4d3
7 changed files with 10 additions and 12 deletions

View file

@ -50,4 +50,3 @@ QLabel* EditWidget::headlineLabel()
{ {
return m_ui->headerLabel; return m_ui->headerLabel;
} }

View file

@ -21,8 +21,7 @@
#include <QtCore/QScopedPointer> #include <QtCore/QScopedPointer>
#include <QtGui/QLabel> #include <QtGui/QLabel>
#include <gui/DialogyWidget.h> #include "gui/DialogyWidget.h"
namespace Ui { namespace Ui {
class EditWidget; class EditWidget;

View file

@ -34,7 +34,7 @@ namespace QTest {
QByteArray ba = "Uuid("; QByteArray ba = "Uuid(";
ba += uuid.toBase64().toAscii().constData(); ba += uuid.toBase64().toAscii().constData();
ba += ")"; ba += ")";
return qstrdup(ba.data()); return qstrdup(ba.constData());
} }
template<> template<>