Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Marco Bubke
flatpak-qt-creator
Commits
edf04dd7
Commit
edf04dd7
authored
Jan 14, 2010
by
Tobias Hunger
Browse files
Allow access to complete map of values in PersistentSettingsReader
Reviewed-by: dt
parent
8e82a86e
Changes
2
Show whitespace changes
Inline
Side-by-side
src/plugins/projectexplorer/persistentsettings.cpp
View file @
edf04dd7
...
...
@@ -52,6 +52,11 @@ QVariant PersistentSettingsReader::restoreValue(const QString & variable) const
return
QVariant
();
}
QVariantMap
PersistentSettingsReader
::
restoreValues
()
const
{
return
m_valueMap
;
}
bool
PersistentSettingsReader
::
load
(
const
QString
&
fileName
)
{
m_valueMap
.
clear
();
...
...
src/plugins/projectexplorer/persistentsettings.h
View file @
edf04dd7
...
...
@@ -46,6 +46,7 @@ class PROJECTEXPLORER_EXPORT PersistentSettingsReader
public:
PersistentSettingsReader
();
QVariant
restoreValue
(
const
QString
&
variable
)
const
;
QVariantMap
restoreValues
()
const
;
bool
load
(
const
QString
&
fileName
);
void
setPrefix
(
const
QString
&
prefix
);
QString
prefix
()
const
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment