This commit is contained in:
Roy Qu 2023-01-11 16:23:19 +08:00
parent 1761c66456
commit feb93ced5a
6 changed files with 5 additions and 5 deletions

View File

@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#include "SearchBase.h"
#include "baseseacher.h"
namespace QSynedit {
BaseSearcher::BaseSearcher(QObject *parent) : QObject(parent)

View File

@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#include "Search.h"
#include "basicsearcher.h"
namespace QSynedit {

View File

@ -16,7 +16,7 @@
*/
#ifndef SYNSEARCH_H
#define SYNSEARCH_H
#include "SearchBase.h"
#include "baseseacher.h"
namespace QSynedit {

View File

@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#include "SearchRegex.h"
#include "regexsearcher.h"
#include <QRegExp>

View File

@ -16,7 +16,7 @@
*/
#ifndef SYNSEARCHREGEX_H
#define SYNSEARCHREGEX_H
#include "SearchBase.h"
#include "baseseacher.h"
#include <QRegularExpression>