forked from qt-creator/qt-creator
Debugger: Add core function returning string list settings.
Change-Id: I03caaf59bf6d41845b3f68194701579d7383e638 Reviewed-by: hjk <hjk121@nokiamail.com>
This commit is contained in:
@@ -1191,6 +1191,7 @@ public slots:
|
||||
SavedAction *action(int code) const;
|
||||
bool boolSetting(int code) const;
|
||||
QString stringSetting(int code) const;
|
||||
QStringList stringListSetting(int code) const;
|
||||
|
||||
void showModuleSymbols(const QString &moduleName, const Symbols &symbols);
|
||||
void showModuleSections(const QString &moduleName, const Sections §ions);
|
||||
@@ -3307,6 +3308,11 @@ QString DebuggerPluginPrivate::stringSetting(int code) const
|
||||
return m_debuggerSettings->item(code)->value().toString();
|
||||
}
|
||||
|
||||
QStringList DebuggerPluginPrivate::stringListSetting(int code) const
|
||||
{
|
||||
return m_debuggerSettings->item(code)->value().toStringList();
|
||||
}
|
||||
|
||||
void DebuggerPluginPrivate::showModuleSymbols(const QString &moduleName,
|
||||
const Symbols &symbols)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user