#include <qsettings_p.h>
Inheritance diagram for QSettingsKey:


Definition at line 73 of file qsettings_p.h.
Public Member Functions | |
| QSettingsKey (const QString &key, Qt::CaseSensitivity cs) | |
| QString | originalCaseKey () const |
Private Attributes | |
| QString | theOriginalKey |
| QSettingsKey::QSettingsKey | ( | const QString & | key, | |
| Qt::CaseSensitivity | cs | |||
| ) | [inline] |
Definition at line 76 of file qsettings_p.h.
References Qt::CaseInsensitive, QString::operator=(), and QString::toLower().
00077 : QString(key), theOriginalKey(key) 00078 { 00079 if (cs == Qt::CaseInsensitive) 00080 QString::operator=(toLower()); 00081 }
Here is the call graph for this function:

| QString QSettingsKey::originalCaseKey | ( | ) | const [inline] |
Definition at line 83 of file qsettings_p.h.
References theOriginalKey.
Referenced by QConfFileSettingsPrivate::readIniSection().
00083 { return theOriginalKey; }
QString QSettingsKey::theOriginalKey [private] |
1.5.1