mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-21 23:09:40 +00:00
Cosmetics and constify.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@30309 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
4594b1425b
commit
c0ac23512e
@ -247,7 +247,7 @@ void ConverterCache::init()
|
||||
}
|
||||
|
||||
|
||||
void ConverterCache::writeIndex()
|
||||
void ConverterCache::writeIndex() const
|
||||
{
|
||||
pimpl_->writeIndex();
|
||||
}
|
||||
|
@ -56,7 +56,7 @@ public:
|
||||
static void init();
|
||||
|
||||
/// Writes the index list. This must be called on exit.
|
||||
void writeIndex();
|
||||
void writeIndex() const;
|
||||
|
||||
/**
|
||||
* Add \c converted_file (\c orig_from converted to \c to_format) to
|
||||
|
@ -88,9 +88,8 @@ void GuiInfo::on_nameLE_textChanged(QString const &)
|
||||
void GuiInfo::applyView()
|
||||
{
|
||||
InsetInfo const * ii = dynamic_cast<InsetInfo const *>(inset(INFO_CODE));
|
||||
if (!ii) {
|
||||
if (!ii)
|
||||
return;
|
||||
}
|
||||
|
||||
dialogToParams();
|
||||
docstring const argument = qstring_to_ucs4(type_ + ' ' + name_);
|
||||
|
Loading…
x
Reference in New Issue
Block a user