forked from qt-creator/qt-creator
Remove excess semicolons
This commit is contained in:
committed by
Oswald Buddenhagen
parent
90848b89b6
commit
27ac02de91
@@ -124,7 +124,7 @@ private:
|
|||||||
|
|
||||||
class CMakeRunConfigurationFactory : public ProjectExplorer::IRunConfigurationFactory
|
class CMakeRunConfigurationFactory : public ProjectExplorer::IRunConfigurationFactory
|
||||||
{
|
{
|
||||||
Q_OBJECT;
|
Q_OBJECT
|
||||||
public:
|
public:
|
||||||
CMakeRunConfigurationFactory();
|
CMakeRunConfigurationFactory();
|
||||||
virtual ~CMakeRunConfigurationFactory();
|
virtual ~CMakeRunConfigurationFactory();
|
||||||
|
|||||||
@@ -83,7 +83,7 @@ public :
|
|||||||
|
|
||||||
class StyleAnimator : public QObject
|
class StyleAnimator : public QObject
|
||||||
{
|
{
|
||||||
Q_OBJECT;
|
Q_OBJECT
|
||||||
|
|
||||||
public:
|
public:
|
||||||
StyleAnimator(QObject *parent = 0) : QObject(parent) {}
|
StyleAnimator(QObject *parent = 0) : QObject(parent) {}
|
||||||
|
|||||||
@@ -70,7 +70,7 @@ public:
|
|||||||
public slots:
|
public slots:
|
||||||
void append(const QString &txt, bool doPopup = false);
|
void append(const QString &txt, bool doPopup = false);
|
||||||
|
|
||||||
private slots:;
|
private slots:
|
||||||
void diff();
|
void diff();
|
||||||
void openFiles();
|
void openFiles();
|
||||||
|
|
||||||
|
|||||||
@@ -120,7 +120,7 @@ public:
|
|||||||
public slots:
|
public slots:
|
||||||
void describe(const QString &source, const QString &n);
|
void describe(const QString &source, const QString &n);
|
||||||
|
|
||||||
private slots:;
|
private slots:
|
||||||
void openCurrentFile();
|
void openCurrentFile();
|
||||||
void addCurrentFile();
|
void addCurrentFile();
|
||||||
void deleteCurrentFile();
|
void deleteCurrentFile();
|
||||||
|
|||||||
@@ -82,8 +82,8 @@ struct VCSBASE_EXPORT VCSBaseEditorParameters {
|
|||||||
// This is for VCS that need a current directory.
|
// This is for VCS that need a current directory.
|
||||||
class VCSBASE_EXPORT VCSBaseEditor : public TextEditor::BaseTextEditor
|
class VCSBASE_EXPORT VCSBaseEditor : public TextEditor::BaseTextEditor
|
||||||
{
|
{
|
||||||
Q_PROPERTY(QString source READ source WRITE setSource);
|
Q_PROPERTY(QString source READ source WRITE setSource)
|
||||||
Q_PROPERTY(QTextCodec *codec READ codec WRITE setCodec);
|
Q_PROPERTY(QTextCodec *codec READ codec WRITE setCodec)
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
protected:
|
protected:
|
||||||
// Initialization requires calling init() (which in turns calls
|
// Initialization requires calling init() (which in turns calls
|
||||||
|
|||||||
@@ -90,8 +90,8 @@ class VCSBASE_EXPORT VCSBaseSubmitEditor : public Core::IEditor
|
|||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
Q_PROPERTY(int fileNameColumn READ fileNameColumn WRITE setFileNameColumn DESIGNABLE false)
|
Q_PROPERTY(int fileNameColumn READ fileNameColumn WRITE setFileNameColumn DESIGNABLE false)
|
||||||
Q_PROPERTY(QAbstractItemView::SelectionMode fileListSelectionMode READ fileListSelectionMode WRITE setFileListSelectionMode DESIGNABLE true)
|
Q_PROPERTY(QAbstractItemView::SelectionMode fileListSelectionMode READ fileListSelectionMode WRITE setFileListSelectionMode DESIGNABLE true)
|
||||||
Q_PROPERTY(bool lineWrap READ lineWrap WRITE setLineWrap DESIGNABLE true);
|
Q_PROPERTY(bool lineWrap READ lineWrap WRITE setLineWrap DESIGNABLE true)
|
||||||
Q_PROPERTY(int lineWrapWidth READ lineWrapWidth WRITE setLineWrapWidth DESIGNABLE true);
|
Q_PROPERTY(int lineWrapWidth READ lineWrapWidth WRITE setLineWrapWidth DESIGNABLE true)
|
||||||
public:
|
public:
|
||||||
typedef QList<int> Context;
|
typedef QList<int> Context;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user