Files
qt-creator/src/plugins/git/git.pro
hjk b8fe25db25 Vcs: Merge IVersionControl and VcsBasePlugin hierarchies
They were 1:1 in parallel, with quite a bit of function call
ping-pong inbetween, for code-sharing-by-inheritance. Merge
them by making VcsBasePlugin inherit IVersionControl and
merge the derived classes below.

Size of this patch is hard to avoid as all seven systems have to
move simultaneously. Non-necessary potential follow-up cleanup
have been left out on purpose.

Change-Id: Icb71e4182af3db21069cc637e7ae87ffa3829791
Reviewed-by: Orgad Shaneh <orgads@gmail.com>
2020-01-31 12:36:23 +00:00

65 lines
1.3 KiB
Prolog

include(../../qtcreatorplugin.pri)
DEFINES += QT_NO_FOREACH
HEADERS += gitplugin.h \
gitconstants.h \
gitclient.h \
changeselectiondialog.h \
commitdata.h \
settingspage.h \
giteditor.h \
annotationhighlighter.h \
gitsubmiteditorwidget.h \
gitsubmiteditor.h \
gitsettings.h \
branchmodel.h \
stashdialog.h \
gitutils.h \
remotemodel.h \
remotedialog.h \
branchadddialog.h \
logchangedialog.h \
mergetool.h \
branchcheckoutdialog.h \
githighlighters.h \
gitgrep.h \
branchview.h
SOURCES += gitplugin.cpp \
gitclient.cpp \
changeselectiondialog.cpp \
commitdata.cpp \
settingspage.cpp \
giteditor.cpp \
annotationhighlighter.cpp \
gitsubmiteditorwidget.cpp \
gitsubmiteditor.cpp \
gitsettings.cpp \
branchmodel.cpp \
stashdialog.cpp \
gitutils.cpp \
remotemodel.cpp \
remotedialog.cpp \
branchadddialog.cpp \
logchangedialog.cpp \
mergetool.cpp \
branchcheckoutdialog.cpp \
githighlighters.cpp \
gitgrep.cpp \
branchview.cpp
FORMS += changeselectiondialog.ui \
settingspage.ui \
gitsubmitpanel.ui \
stashdialog.ui \
remotedialog.ui \
remoteadditiondialog.ui \
branchadddialog.ui \
branchcheckoutdialog.ui
RESOURCES += \
git.qrc
include(gerrit/gerrit.pri)