replace Option::operator {String,int} with Option::as_{string,int}
This commit is contained in:
parent
c0987ebacc
commit
20315eac85
|
@ -40,7 +40,7 @@ void cleanup_whitespaces(Buffer& buffer, Modification& modification)
|
|||
|
||||
void expand_tabulations(Buffer& buffer, Modification& modification)
|
||||
{
|
||||
const int tabstop = buffer.option_manager()["tabstop"];
|
||||
const int tabstop = buffer.option_manager()["tabstop"].as_int();
|
||||
if (modification.type == Modification::Insert and
|
||||
modification.content == "\t")
|
||||
{
|
||||
|
|
|
@ -106,7 +106,7 @@ HighlighterAndId colorize_regex_factory(Window& window,
|
|||
|
||||
void expand_tabulations(Window& window, DisplayBuffer& display_buffer)
|
||||
{
|
||||
const int tabstop = window.option_manager()["tabstop"];
|
||||
const int tabstop = window.option_manager()["tabstop"].as_int();
|
||||
for (auto atom_it = display_buffer.begin();
|
||||
atom_it != display_buffer.end(); ++atom_it)
|
||||
{
|
||||
|
|
|
@ -28,8 +28,8 @@ public:
|
|||
Option& operator=(int value) { m_value = int_to_str(value); return *this; }
|
||||
Option& operator=(const String& value) { m_value = value; return *this; }
|
||||
|
||||
operator int() const { return atoi(m_value.c_str()); }
|
||||
operator String() const { return m_value; }
|
||||
int as_int() const { return atoi(m_value.c_str()); }
|
||||
String as_string() const { return m_value; }
|
||||
private:
|
||||
String m_value;
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue
Block a user