From ee0d2d2220f02c6a759723ace7331c09dea5bd7f Mon Sep 17 00:00:00 2001 From: Chocobo1 Date: Wed, 24 Jul 2019 23:01:26 +0800 Subject: [PATCH] Move fspathedit_p to private folder --- src/gui/CMakeLists.txt | 4 ++-- src/gui/fspathedit.cpp | 2 +- src/gui/gui.pri | 4 ++-- src/gui/{ => private}/fspathedit_p.cpp | 0 src/gui/{ => private}/fspathedit_p.h | 0 5 files changed, 5 insertions(+), 5 deletions(-) rename src/gui/{ => private}/fspathedit_p.cpp (100%) rename src/gui/{ => private}/fspathedit_p.h (100%) diff --git a/src/gui/CMakeLists.txt b/src/gui/CMakeLists.txt index cea242ac6..dc67cad88 100644 --- a/src/gui/CMakeLists.txt +++ b/src/gui/CMakeLists.txt @@ -25,7 +25,6 @@ deletionconfirmationdialog.h downloadfromurldialog.h executionlogwidget.h fspathedit.h -fspathedit_p.h hidabletabwidget.h ipsubnetwhitelistoptionsdialog.h lineedit.h @@ -34,6 +33,7 @@ mainwindow.h optionsdialog.h previewlistdelegate.h previewselectdialog.h +private/fspathedit_p.h private/tristatewidget.h raisedmessagebox.h scanfoldersdelegate.h @@ -77,7 +77,6 @@ cookiesmodel.cpp downloadfromurldialog.cpp executionlogwidget.cpp fspathedit.cpp -fspathedit_p.cpp hidabletabwidget.cpp ipsubnetwhitelistoptionsdialog.cpp lineedit.cpp @@ -86,6 +85,7 @@ mainwindow.cpp optionsdialog.cpp previewlistdelegate.cpp previewselectdialog.cpp +private/fspathedit_p.cpp private/tristatewidget.cpp raisedmessagebox.cpp scanfoldersdelegate.cpp diff --git a/src/gui/fspathedit.cpp b/src/gui/fspathedit.cpp index fd4467183..9d6dfcce4 100644 --- a/src/gui/fspathedit.cpp +++ b/src/gui/fspathedit.cpp @@ -39,7 +39,7 @@ #include #include "base/utils/fs.h" -#include "fspathedit_p.h" +#include "private/fspathedit_p.h" namespace { diff --git a/src/gui/gui.pri b/src/gui/gui.pri index ea1d09ea3..78b0d838a 100644 --- a/src/gui/gui.pri +++ b/src/gui/gui.pri @@ -19,7 +19,6 @@ HEADERS += \ $$PWD/downloadfromurldialog.h \ $$PWD/executionlogwidget.h \ $$PWD/fspathedit.h \ - $$PWD/fspathedit_p.h \ $$PWD/hidabletabwidget.h \ $$PWD/ipsubnetwhitelistoptionsdialog.h \ $$PWD/lineedit.h \ @@ -28,6 +27,7 @@ HEADERS += \ $$PWD/optionsdialog.h \ $$PWD/previewlistdelegate.h \ $$PWD/previewselectdialog.h \ + $$PWD/private/fspathedit_p.h \ $$PWD/private/tristatewidget.h \ $$PWD/raisedmessagebox.h \ $$PWD/rss/articlelistwidget.h \ @@ -82,7 +82,6 @@ SOURCES += \ $$PWD/downloadfromurldialog.cpp \ $$PWD/executionlogwidget.cpp \ $$PWD/fspathedit.cpp \ - $$PWD/fspathedit_p.cpp \ $$PWD/hidabletabwidget.cpp \ $$PWD/ipsubnetwhitelistoptionsdialog.cpp \ $$PWD/lineedit.cpp \ @@ -91,6 +90,7 @@ SOURCES += \ $$PWD/optionsdialog.cpp \ $$PWD/previewlistdelegate.cpp \ $$PWD/previewselectdialog.cpp \ + $$PWD/private/fspathedit_p.cpp \ $$PWD/private/tristatewidget.cpp \ $$PWD/raisedmessagebox.cpp \ $$PWD/rss/articlelistwidget.cpp \ diff --git a/src/gui/fspathedit_p.cpp b/src/gui/private/fspathedit_p.cpp similarity index 100% rename from src/gui/fspathedit_p.cpp rename to src/gui/private/fspathedit_p.cpp diff --git a/src/gui/fspathedit_p.h b/src/gui/private/fspathedit_p.h similarity index 100% rename from src/gui/fspathedit_p.h rename to src/gui/private/fspathedit_p.h