diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-04-18 14:56:37 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-04-18 14:56:37 -0500 |
commit | a37d43794f4369915068f585f6ff4720e93dd2af (patch) | |
tree | 634c22996d6ec5c9ccc3a3c7329dfd78e99ff096 /tdecore/tdeconfigbase.cpp | |
parent | bfc7b3bdbe73a4da9387b239614a433031d75256 (diff) | |
download | tdelibs-a37d43794f4369915068f585f6ff4720e93dd2af.tar.gz tdelibs-a37d43794f4369915068f585f6ff4720e93dd2af.zip |
Allow paths to be saved without [$e] suffix on entry key
Diffstat (limited to 'tdecore/tdeconfigbase.cpp')
-rw-r--r-- | tdecore/tdeconfigbase.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tdecore/tdeconfigbase.cpp b/tdecore/tdeconfigbase.cpp index a3b15185b..e8d384dbe 100644 --- a/tdecore/tdeconfigbase.cpp +++ b/tdecore/tdeconfigbase.cpp @@ -1178,6 +1178,13 @@ void TDEConfigBase::writePathEntry( const char *pKey, const TQString & path, writeEntry(pKey, translatePath(path), bPersistent, bGlobal, bNLS, true); } +void TDEConfigBase::writePathEntry( const char *pKey, const TQString & path, + bool bPersistent, bool bGlobal, + bool bNLS, bool expand) +{ + writeEntry(pKey, translatePath(path), bPersistent, bGlobal, bNLS, expand); +} + void TDEConfigBase::writePathEntry ( const TQString& pKey, const TQStringList &list, char sep , bool bPersistent, bool bGlobal, bool bNLS ) |