diff options
Diffstat (limited to 'src/plugins/find/searchresultwindow.h')
-rw-r--r-- | src/plugins/find/searchresultwindow.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/plugins/find/searchresultwindow.h b/src/plugins/find/searchresultwindow.h index 146b82b1cd..5715032476 100644 --- a/src/plugins/find/searchresultwindow.h +++ b/src/plugins/find/searchresultwindow.h @@ -110,7 +110,7 @@ public slots: signals: void activated(const Find::SearchResultItem &item); - void replaceButtonClicked(const QString &replaceText, const QList<Find::SearchResultItem> &checkedItems); + void replaceButtonClicked(const QString &replaceText, const QList<Find::SearchResultItem> &checkedItems, bool preserveCase); void cancelled(); void paused(bool paused); void visibilityChanged(bool visible); @@ -157,7 +157,11 @@ public: void goToPrev(); bool canNavigate() const; - void setTextEditorFont(const QFont &font); + void setTextEditorFont(const QFont &font, + const QColor &textForegroundColor, + const QColor &textBackgroundColor, + const QColor &highlightForegroundColor, + const QColor &highlightBackgroundColor); void openNewSearchPanel(); // The search result window owns the returned SearchResult |