1
0
Fork 0
forked from len0rd/rockbox

Theme Editor: Added an edit menu with a find/replace function (copied from an LGPL library)

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27137 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Robert Bieber 2010-06-26 07:59:23 +00:00
parent 5300c7014d
commit be70fd89be
12 changed files with 937 additions and 3 deletions

View file

@ -151,6 +151,12 @@ void SkinDocument::setupUI()
QObject::connect(device, SIGNAL(settingsChanged()),
this, SLOT(deviceChanged()));
/* Attaching the find/replace dialog */
findReplace = new FindReplaceDialog(this);
findReplace->setModal(false);
findReplace->setTextEdit(editor);
findReplace->hide();
settingsChanged();
}