mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-09 21:22:39 -05:00
Theme Editor: Switched back to Lorenzo Bettini's find/replace dialog (with some modifications) as he changed the license to LGPL v2.1
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27528 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
b21b771420
commit
e6fd3d0318
19 changed files with 1552 additions and 374 deletions
26
utils/themeeditor/qtfindreplacedialog/finddialog.cpp
Normal file
26
utils/themeeditor/qtfindreplacedialog/finddialog.cpp
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
/*
|
||||
* Copyright (C) 2009 Lorenzo Bettini <http://www.lorenzobettini.it>
|
||||
* See COPYING file that comes with this distribution
|
||||
*/
|
||||
|
||||
#include "finddialog.h"
|
||||
#include "ui_findreplacedialog.h"
|
||||
|
||||
FindDialog::FindDialog(QWidget *parent) :
|
||||
FindReplaceDialog(parent)
|
||||
{
|
||||
ui->findReplaceForm->hideReplaceWidgets();
|
||||
setWindowTitle(tr("Find"));
|
||||
}
|
||||
|
||||
FindDialog::~FindDialog()
|
||||
{
|
||||
}
|
||||
|
||||
void FindDialog::writeSettings(QSettings &settings, const QString &prefix) {
|
||||
FindReplaceDialog::writeSettings(settings, prefix);
|
||||
}
|
||||
|
||||
void FindDialog::readSettings(QSettings &settings, const QString &prefix) {
|
||||
FindReplaceDialog::readSettings(settings, prefix);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue