Compare commits

..

No commits in common. "master" and "2.13.2" have entirely different histories.

3 changed files with 11 additions and 13 deletions

View File

@ -2,7 +2,6 @@ QT += core gui
QT += KItemViews QT += KItemViews
QT += KCompletion QT += KCompletion
QT += widgets QT += widgets
QT += network
LIBS += -lqt5keychain LIBS += -lqt5keychain
@ -15,29 +14,29 @@ CONFIG += c++17
DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0 DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
SOURCES += \ SOURCES += \
downloadfile.cpp \ downloadfile.cpp \
main.cpp \ main.cpp \
mainwindow.cpp \ mainwindow.cpp \
password.cpp \ password.cpp \
tools.cpp tools.cpp
HEADERS += \ HEADERS += \
version.h\ version.h\
downloadfile.h \ downloadfile.h \
mainwindow.h \ mainwindow.h \
password.h \ password.h \
tools.h tools.h
FORMS += \ FORMS += \
about.ui \ about.ui \
configuration.ui \ configuration.ui \
mainwindow.ui mainwindow.ui
TRANSLATIONS += \ TRANSLATIONS += \
RsyncUI_fr_FR.ts RsyncUI_fr_FR.ts
INCLUDEPATH += \ INCLUDEPATH += \
/usr/include/KF5 \ /usr/include/KF5 \
/usr/include/qt5keychain \ /usr/include/qt5keychain \
# Default rules for deployment. # Default rules for deployment.
@ -53,7 +52,7 @@ INSTALLS += icon
#RESOURCES += #RESOURCES +=
DISTFILES += \ DISTFILES += \
RsyncUI.desktop RsyncUI.desktop
lang.path = /languages/fr_FR/LC_MESSAGES/ lang.path = /languages/fr_FR/LC_MESSAGES/
lang.path = /usr/share/locale/ lang.path = /usr/share/locale/

View File

@ -1060,7 +1060,6 @@ void MainWindow::on_treeWidget_itemClicked(QTreeWidgetItem *item, bool downloadD
if (this->treeviewClicked == true) if (this->treeviewClicked == true)
{ {
info(DEBUGMACRO, "double click ignored");
return; return;
} }

View File

@ -120,8 +120,8 @@ class MainWindow : public QMainWindow
QSystemTrayIcon * trayIcon; QSystemTrayIcon * trayIcon;
QString icon = "/usr/share/icons/RsyncUI.png"; QString icon = "/usr/share/icons/RsyncUI.png";
bool rescan = false; bool rescan = false;
bool stopDlAsked = false; bool stopDlAsked;
bool treeviewClicked = false; bool treeviewClicked;
bool initialization = true; bool initialization = true;
bool exiting = false; bool exiting = false;