forked from qt-creator/qt-creator
Fix FakeVim tests compilation
Change-Id: I23cfa9a2ac2ae78d8faf2021d90680ac85dba341 Reviewed-by: hjk <hjk121@nokiamail.com>
This commit is contained in:
@@ -77,6 +77,26 @@ QVariant SavedAction::value() const
|
||||
return m_value;
|
||||
}
|
||||
|
||||
void SavedAction::setDefaultValue(const QVariant &value)
|
||||
{
|
||||
m_defaultValue = value;
|
||||
}
|
||||
|
||||
QVariant SavedAction::defaultValue() const
|
||||
{
|
||||
return m_defaultValue;
|
||||
}
|
||||
|
||||
void SavedAction::setSettingsKey(const QString &key)
|
||||
{
|
||||
m_settingsKey = key;
|
||||
}
|
||||
|
||||
QString SavedAction::settingsKey() const
|
||||
{
|
||||
return m_settingsKey;
|
||||
}
|
||||
|
||||
} // namespace Utils
|
||||
#endif // FAKEVIM_STANDALONE
|
||||
|
||||
|
||||
Reference in New Issue
Block a user