forked from qt-creator/qt-creator
Git: Make file state resolving more accurate
Change-Id: I238ef964df126a341c87dacf9344ff1570f31845 Reviewed-by: Tobias Hunger <tobias.hunger@digia.com>
This commit is contained in:
committed by
Orgad Shaneh
parent
ae58073080
commit
2c68c80196
@@ -64,7 +64,7 @@ struct GitSubmitEditorPanelData
|
||||
QDebug operator<<(QDebug d, const GitSubmitEditorPanelData &);
|
||||
|
||||
enum FileState {
|
||||
UntrackedFile = 0,
|
||||
EmptyFileState = 0x00,
|
||||
|
||||
StagedFile = 0x01,
|
||||
ModifiedFile = 0x02,
|
||||
@@ -77,6 +77,7 @@ enum FileState {
|
||||
UnmergedUs = 0x100,
|
||||
UnmergedThem = 0x200,
|
||||
|
||||
UntrackedFile = 0x400,
|
||||
UnknownFileState = 0x800
|
||||
};
|
||||
Q_DECLARE_FLAGS(FileStates, FileState)
|
||||
|
Reference in New Issue
Block a user