mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 10:00:33 +00:00
Encoding::getSymbolsList(): make it const.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@22870 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
cb5859929f
commit
69d755054b
@ -341,7 +341,7 @@ docstring const Encoding::latexChar(char_type c) const
|
||||
}
|
||||
|
||||
|
||||
set<char_type> Encoding::getSymbolsList()
|
||||
set<char_type> Encoding::getSymbolsList() const
|
||||
{
|
||||
// assure the used encoding is properly initialized
|
||||
if (!complete_)
|
||||
|
@ -71,7 +71,7 @@ public:
|
||||
/// Which LaTeX package handles this encoding?
|
||||
Package package() const { return package_; }
|
||||
/// A list of all characters usable in this encoding
|
||||
std::set<char_type> getSymbolsList();
|
||||
std::set<char_type> getSymbolsList() const;
|
||||
private:
|
||||
///
|
||||
std::string Name_;
|
||||
|
Loading…
Reference in New Issue
Block a user