vcs: s/VCS/Vcs/

According to style guide.

Change-Id: I05c1d4f50ddbf2876ab7e0835f4abec95fd573b2
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@nokia.com>
Reviewed-by: Leena Miettinen <riitta-leena.miettinen@nokia.com>
This commit is contained in:
hjk
2012-01-07 12:31:48 +01:00
parent 641716bee3
commit 6681d3edee
167 changed files with 1588 additions and 1588 deletions

View File

@@ -47,9 +47,9 @@ QT_END_NAMESPACE
namespace Core { class IVersionControl; }
namespace VCSBase {
namespace VcsBase {
namespace Internal { class VCSBaseEditorWidgetPrivate; }
namespace Internal { class VcsBaseEditorWidgetPrivate; }
class DiffHighlighter;
class BaseAnnotationHighlighter;
@@ -63,7 +63,7 @@ enum EditorContentType
DiffOutput
};
class VCSBASE_EXPORT VCSBaseEditorParameters
class VCSBASE_EXPORT VcsBaseEditorParameters
{
public:
EditorContentType type;
@@ -84,7 +84,7 @@ public:
QByteArray chunk;
};
class VCSBASE_EXPORT VCSBaseEditorWidget : public TextEditor::BaseTextEditorWidget
class VCSBASE_EXPORT VcsBaseEditorWidget : public TextEditor::BaseTextEditorWidget
{
Q_PROPERTY(QString source READ source WRITE setSource)
Q_PROPERTY(QString diffBaseDirectory READ diffBaseDirectory WRITE setDiffBaseDirectory)
@@ -98,12 +98,12 @@ class VCSBASE_EXPORT VCSBaseEditorWidget : public TextEditor::BaseTextEditorWidg
protected:
// Initialization requires calling init() (which in turns calls
// virtual functions).
explicit VCSBaseEditorWidget(const VCSBaseEditorParameters *type,
explicit VcsBaseEditorWidget(const VcsBaseEditorParameters *type,
QWidget *parent);
public:
void init();
~VCSBaseEditorWidget();
~VcsBaseEditorWidget();
/* Force read-only: Make it a read-only, temporary file.
* Should be set to true by version control views. It is not on
@@ -149,8 +149,8 @@ public:
EditorContentType contentType() const;
// Utility to find a parameter set by type in an array.
static const VCSBaseEditorParameters *
findType(const VCSBaseEditorParameters *array, int arraySize, EditorContentType et);
static const VcsBaseEditorParameters *
findType(const VcsBaseEditorParameters *array, int arraySize, EditorContentType et);
// Utility to find the codec for a source (file or directory), querying
// the editor manager and the project managers (defaults to system codec).
@@ -161,7 +161,7 @@ public:
// Utility to return the widget from the IEditor returned by the editor
// manager which is a BaseTextEditor.
static VCSBaseEditorWidget *getVcsBaseEditor(const Core::IEditor *editor);
static VcsBaseEditorWidget *getVcsBaseEditor(const Core::IEditor *editor);
// Utility to find the line number of the current editor. Optionally,
// pass in the file name to match it. To be used when jumping to current
@@ -200,8 +200,8 @@ signals:
// for LogOutput/AnnotateOutput content types.
void describeRequested(const QString &source, const QString &change);
void annotateRevisionRequested(const QString &source, const QString &change, int lineNumber);
void diffChunkApplied(const VCSBase::DiffChunk &dc);
void diffChunkReverted(const VCSBase::DiffChunk &dc);
void diffChunkApplied(const VcsBase::DiffChunk &dc);
void diffChunkReverted(const VcsBase::DiffChunk &dc);
public slots:
// Convenience slot to set data read from stdout, will use the
@@ -264,11 +264,11 @@ private:
QAction *createAnnotateAction(const QString &change, bool previous = false);
QAction *createCopyRevisionAction(const QString &change);
Internal::VCSBaseEditorWidgetPrivate *const d;
Internal::VcsBaseEditorWidgetPrivate *const d;
};
} // namespace VCSBase
} // namespace VcsBase
Q_DECLARE_METATYPE(VCSBase::DiffChunk)
Q_DECLARE_METATYPE(VcsBase::DiffChunk)
#endif // VCSBASE_BASEEDITOR_H