Moved LoggedProcess to separate files

Added message box when attempting to push or pull when no remote url has been set


FossilOrigin-Name: 3adc2a837ceb5080094dede9f0f3bdeb0e0429f0
This commit is contained in:
kostas
2012-05-12 10:43:40 +00:00
parent a2b91c8a58
commit 42ff9851f5
8 changed files with 124 additions and 95 deletions

View File

@ -1,46 +1,48 @@
#-------------------------------------------------
#
# Project created by QtCreator 2011-08-01T00:17:18
#
#-------------------------------------------------
QT += core gui
TARGET = Fuel
TEMPLATE = app
# OSX Icon
ICON = icons/fuel.icns
# Win Icon
RC_FILE = fuel.rc
SOURCES += main.cpp\
MainWindow.cpp \
CommitDialog.cpp \
FileActionDialog.cpp \
SettingsDialog.cpp \
Utils.cpp \
FileTableView.cpp \
CloneDialog.cpp
HEADERS += MainWindow.h \
CommitDialog.h \
FileActionDialog.h \
SettingsDialog.h \
Utils.h \
FileTableView.h \
CloneDialog.h
FORMS += MainWindow.ui \
CommitDialog.ui \
FileActionDialog.ui \
SettingsDialog.ui \
CloneDialog.ui
RESOURCES += \
resources.qrc
win32 {
LIBS += -luser32 -lshell32
}
#-------------------------------------------------
#
# Project created by QtCreator 2011-08-01T00:17:18
#
#-------------------------------------------------
QT += core gui
TARGET = Fuel
TEMPLATE = app
# OSX Icon
ICON = icons/fuel.icns
# Win Icon
RC_FILE = fuel.rc
SOURCES += main.cpp\
MainWindow.cpp \
CommitDialog.cpp \
FileActionDialog.cpp \
SettingsDialog.cpp \
Utils.cpp \
FileTableView.cpp \
CloneDialog.cpp \
LoggedProcess.cpp
HEADERS += MainWindow.h \
CommitDialog.h \
FileActionDialog.h \
SettingsDialog.h \
Utils.h \
FileTableView.h \
CloneDialog.h \
LoggedProcess.h
FORMS += MainWindow.ui \
CommitDialog.ui \
FileActionDialog.ui \
SettingsDialog.ui \
CloneDialog.ui
RESOURCES += \
resources.qrc
win32 {
LIBS += -luser32 -lshell32
}