author | sandman <sandman> | 2002-11-01 12:55:33 (UTC) |
---|---|---|
committer | sandman <sandman> | 2002-11-01 12:55:33 (UTC) |
commit | 14bd24ba233e370b44ec23cab2733289a3387ca7 (patch) (unidiff) | |
tree | 5dc1bd3b37521f8817e0cef9fb19446b8d8e09f1 | |
parent | 2c809a930ac38a95727c777f52e6673e316d25f2 (diff) | |
download | opie-14bd24ba233e370b44ec23cab2733289a3387ca7.zip opie-14bd24ba233e370b44ec23cab2733289a3387ca7.tar.gz opie-14bd24ba233e370b44ec23cab2733289a3387ca7.tar.bz2 |
Config ignores comment lines now (all lines that start with a '#'). This is
necessary to load some pixmap themes from KDE and shouldn't change anything
else ('#' not at the beginning of a line are not treated as a comment)
-rw-r--r-- | library/config.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/library/config.cpp b/library/config.cpp index e07eecb..1121cd4 100644 --- a/library/config.cpp +++ b/library/config.cpp | |||
@@ -535,4 +535,8 @@ bool Config::parse( const QString &l ) | |||
535 | { | 535 | { |
536 | QString line = l.stripWhiteSpace(); | 536 | QString line = l.stripWhiteSpace(); |
537 | |||
538 | if ( line [0] == QChar ( '#' )) | ||
539 | return true; // ignore comments | ||
540 | |||
537 | if ( line[ 0 ] == QChar( '[' ) ) { | 541 | if ( line[ 0 ] == QChar( '[' ) ) { |
538 | QString gname = line; | 542 | QString gname = line; |