forked from qt-creator/qt-creator
VcsBase: Move vcsconfigurationpage into wizard subfolder
I will try to move all the wizard code that is still relevant there and then get rid of the rest. Change-Id: I3963f53fd39ef0f84c71218eb59b05213121cc90 Reviewed-by: Orgad Shaneh <orgads@gmail.com> Reviewed-by: Tobias Hunger <tobias.hunger@theqtcompany.com>
This commit is contained in:
@@ -38,7 +38,7 @@
|
|||||||
#include <coreplugin/iversioncontrol.h>
|
#include <coreplugin/iversioncontrol.h>
|
||||||
#include <vcsbase/vcscommand.h>
|
#include <vcsbase/vcscommand.h>
|
||||||
#include <vcsbase/vcsbaseconstants.h>
|
#include <vcsbase/vcsbaseconstants.h>
|
||||||
#include <vcsbase/vcsconfigurationpage.h>
|
#include <vcsbase/wizard/vcsconfigurationpage.h>
|
||||||
|
|
||||||
#include <QDebug>
|
#include <QDebug>
|
||||||
|
|
||||||
|
@@ -35,7 +35,7 @@
|
|||||||
#include <coreplugin/iversioncontrol.h>
|
#include <coreplugin/iversioncontrol.h>
|
||||||
#include <vcsbase/vcscommand.h>
|
#include <vcsbase/vcscommand.h>
|
||||||
#include <vcsbase/vcsbaseconstants.h>
|
#include <vcsbase/vcsbaseconstants.h>
|
||||||
#include <vcsbase/vcsconfigurationpage.h>
|
#include <vcsbase/wizard/vcsconfigurationpage.h>
|
||||||
#include <utils/qtcassert.h>
|
#include <utils/qtcassert.h>
|
||||||
|
|
||||||
using namespace VcsBase;
|
using namespace VcsBase;
|
||||||
|
@@ -35,7 +35,7 @@
|
|||||||
#include "gitversioncontrol.h"
|
#include "gitversioncontrol.h"
|
||||||
|
|
||||||
#include <vcsbase/vcsbaseconstants.h>
|
#include <vcsbase/vcsbaseconstants.h>
|
||||||
#include <vcsbase/vcsconfigurationpage.h>
|
#include <vcsbase/wizard/vcsconfigurationpage.h>
|
||||||
#include <utils/qtcassert.h>
|
#include <utils/qtcassert.h>
|
||||||
|
|
||||||
using namespace VcsBase;
|
using namespace VcsBase;
|
||||||
|
@@ -36,7 +36,7 @@
|
|||||||
#include <coreplugin/iversioncontrol.h>
|
#include <coreplugin/iversioncontrol.h>
|
||||||
#include <vcsbase/vcscommand.h>
|
#include <vcsbase/vcscommand.h>
|
||||||
#include <vcsbase/vcsbaseconstants.h>
|
#include <vcsbase/vcsbaseconstants.h>
|
||||||
#include <vcsbase/vcsconfigurationpage.h>
|
#include <vcsbase/wizard/vcsconfigurationpage.h>
|
||||||
|
|
||||||
using namespace VcsBase;
|
using namespace VcsBase;
|
||||||
|
|
||||||
|
@@ -37,7 +37,7 @@
|
|||||||
#include <coreplugin/iversioncontrol.h>
|
#include <coreplugin/iversioncontrol.h>
|
||||||
#include <vcsbase/vcscommand.h>
|
#include <vcsbase/vcscommand.h>
|
||||||
#include <vcsbase/vcsbaseconstants.h>
|
#include <vcsbase/vcsbaseconstants.h>
|
||||||
#include <vcsbase/vcsconfigurationpage.h>
|
#include <vcsbase/wizard/vcsconfigurationpage.h>
|
||||||
#include <utils/qtcassert.h>
|
#include <utils/qtcassert.h>
|
||||||
|
|
||||||
using namespace Utils;
|
using namespace Utils;
|
||||||
|
@@ -2,7 +2,7 @@ DEFINES += VCSBASE_LIBRARY
|
|||||||
include(../../qtcreatorplugin.pri)
|
include(../../qtcreatorplugin.pri)
|
||||||
HEADERS += vcsbase_global.h \
|
HEADERS += vcsbase_global.h \
|
||||||
vcsbaseconstants.h \
|
vcsbaseconstants.h \
|
||||||
vcsconfigurationpage.h \
|
wizard/vcsconfigurationpage.h \
|
||||||
vcsplugin.h \
|
vcsplugin.h \
|
||||||
corelistener.h \
|
corelistener.h \
|
||||||
vcsbaseplugin.h \
|
vcsbaseplugin.h \
|
||||||
@@ -33,7 +33,7 @@ HEADERS += vcsbase_global.h \
|
|||||||
|
|
||||||
SOURCES += vcsplugin.cpp \
|
SOURCES += vcsplugin.cpp \
|
||||||
vcsbaseplugin.cpp \
|
vcsbaseplugin.cpp \
|
||||||
vcsconfigurationpage.cpp \
|
wizard/vcsconfigurationpage.cpp \
|
||||||
corelistener.cpp \
|
corelistener.cpp \
|
||||||
baseannotationhighlighter.cpp \
|
baseannotationhighlighter.cpp \
|
||||||
diffhighlighter.cpp \
|
diffhighlighter.cpp \
|
||||||
|
@@ -72,8 +72,6 @@ QtcPlugin {
|
|||||||
"vcsbasesubmiteditor.h",
|
"vcsbasesubmiteditor.h",
|
||||||
"vcscommand.cpp",
|
"vcscommand.cpp",
|
||||||
"vcscommand.h",
|
"vcscommand.h",
|
||||||
"vcsconfigurationpage.cpp",
|
|
||||||
"vcsconfigurationpage.h",
|
|
||||||
"vcsoutputwindow.cpp",
|
"vcsoutputwindow.cpp",
|
||||||
"vcsoutputwindow.h",
|
"vcsoutputwindow.h",
|
||||||
"vcsplugin.cpp",
|
"vcsplugin.cpp",
|
||||||
@@ -81,5 +79,7 @@ QtcPlugin {
|
|||||||
"images/diff.png",
|
"images/diff.png",
|
||||||
"images/removesubmitfield.png",
|
"images/removesubmitfield.png",
|
||||||
"images/submit.png",
|
"images/submit.png",
|
||||||
|
"wizard/vcsconfigurationpage.cpp",
|
||||||
|
"wizard/vcsconfigurationpage.h",
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@@ -30,7 +30,7 @@
|
|||||||
|
|
||||||
#include "vcsconfigurationpage.h"
|
#include "vcsconfigurationpage.h"
|
||||||
|
|
||||||
#include "vcsbaseconstants.h"
|
#include "../vcsbaseconstants.h"
|
||||||
|
|
||||||
#include <coreplugin/icore.h>
|
#include <coreplugin/icore.h>
|
||||||
#include <coreplugin/iversioncontrol.h>
|
#include <coreplugin/iversioncontrol.h>
|
@@ -31,7 +31,7 @@
|
|||||||
#ifndef VCSCONFIGURATIONPAGE_H
|
#ifndef VCSCONFIGURATIONPAGE_H
|
||||||
#define VCSCONFIGURATIONPAGE_H
|
#define VCSCONFIGURATIONPAGE_H
|
||||||
|
|
||||||
#include "vcsbase_global.h"
|
#include "../vcsbase_global.h"
|
||||||
|
|
||||||
#include <QWizardPage>
|
#include <QWizardPage>
|
||||||
|
|
Reference in New Issue
Block a user