Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
annejan committed May 18, 2015
1 parent 076d579 commit 87b82fc
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 130 deletions.
6 changes: 2 additions & 4 deletions qtpass.pro
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,7 @@ SOURCES += main.cpp\
dialog.cpp \
storemodel.cpp \
util.cpp \
usersdialog.cpp \
wizarddialog.cpp
usersdialog.cpp

HEADERS += mainwindow.h \
dialog.h \
Expand All @@ -39,8 +38,7 @@ HEADERS += mainwindow.h \

FORMS += mainwindow.ui \
dialog.ui \
usersdialog.ui \
wizarddialog.ui
usersdialog.ui

*-g++* {
QMAKE_CXXFLAGS += -std=c++11
Expand Down
2 changes: 1 addition & 1 deletion util.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -88,5 +88,5 @@ QString Util::findBinaryInPath(QString binary)

bool Util::checkConfig(QString passStore, QString passExecutable, QString gpgExecutable)
{
return !QFile(passStore).exists() || (!QFile(passExecutable).exists() && !QFile(gpgExecutable).exists());
return !QFile(passStore + ".gpg-id").exists() || (!QFile(passExecutable).exists() && !QFile(gpgExecutable).exists());
}
14 changes: 0 additions & 14 deletions wizarddialog.cpp

This file was deleted.

22 changes: 0 additions & 22 deletions wizarddialog.h

This file was deleted.

89 changes: 0 additions & 89 deletions wizarddialog.ui

This file was deleted.

0 comments on commit 87b82fc

Please sign in to comment.