<feed xmlns='http://www.w3.org/2005/Atom'>
<title>kconfig.git/src/gui/kconfigskeleton.h, branch v5.61.0</title>
<subtitle>hurd kconfig.git</subtitle>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/'/>
<entry>
<title>Use override</title>
<updated>2018-05-04T11:59:17+00:00</updated>
<author>
<name>Laurent Montel</name>
<email>montel@kde.org</email>
</author>
<published>2018-05-04T11:59:17+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/commit/?id=3985f2a051914af249f219b79a8e062016f299cc'/>
<id>3985f2a051914af249f219b79a8e062016f299cc</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>API dox: note CamelCase includes by @class tag with more classes</title>
<updated>2017-05-25T01:03:18+00:00</updated>
<author>
<name>Friedrich W. H. Kossebau</name>
<email>kossebau@kde.org</email>
</author>
<published>2017-05-25T01:03:18+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/commit/?id=029b4b6140cdccc0cad41f0bfaddce1392df2ee6'/>
<id>029b4b6140cdccc0cad41f0bfaddce1392df2ee6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Prefer nullptr over Q_NULLPTR</title>
<updated>2017-01-16T17:17:34+00:00</updated>
<author>
<name>Kevin Funk</name>
<email>kfunk@kde.org</email>
</author>
<published>2017-01-16T17:17:34+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/commit/?id=2034e3ce7593f04d251b634bfe2d71b30f15ea3a'/>
<id>2034e3ce7593f04d251b634bfe2d71b30f15ea3a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Use Q_DECL_OVERRIDE where possible</title>
<updated>2015-02-12T12:54:33+00:00</updated>
<author>
<name>Kevin Funk</name>
<email>kfunk@kde.org</email>
</author>
<published>2015-02-11T23:17:57+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/commit/?id=28ddbf8138c865e19e8836b49af74f9d3bc20401'/>
<id>28ddbf8138c865e19e8836b49af74f9d3bc20401</id>
<content type='text'>
With -Winconsistent-missing-override (Clang), headers from KConfig are
throwing a lot of warnings.

REVIEW: 122539
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
With -Winconsistent-missing-override (Clang), headers from KConfig are
throwing a lot of warnings.

REVIEW: 122539
</pre>
</div>
</content>
</entry>
<entry>
<title>Simple Cleanups</title>
<updated>2014-06-12T22:14:16+00:00</updated>
<author>
<name>Thomas Braxton</name>
<email>kde.braxton@gmail.com</email>
</author>
<published>2014-06-11T13:40:44+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/commit/?id=ac6703215ba5e152379173ba503f5ba3bd7e8a85'/>
<id>ac6703215ba5e152379173ba503f5ba3bd7e8a85</id>
<content type='text'>
- use Q_NULLPTR instead of 0 or NULL
- simplify some foreach loops
- use QStringLiteral in a few places
- added a few consts

REVIEW: 118666
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- use Q_NULLPTR instead of 0 or NULL
- simplify some foreach loops
- use QStringLiteral in a few places
- added a few consts

REVIEW: 118666
</pre>
</div>
</content>
</entry>
<entry>
<title>Stop re-loading values inside KCoreConfigSkeleton::save().</title>
<updated>2014-03-28T16:08:05+00:00</updated>
<author>
<name>Matthew Dawson</name>
<email>matthew@mjdsystems.ca</email>
</author>
<published>2014-03-28T15:59:51+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/commit/?id=4846b50aea0bc2262238963a85ab3556c22412e4'/>
<id>4846b50aea0bc2262238963a85ab3556c22412e4</id>
<content type='text'>
The extra load of values in KCoreConfigSkeleton is not documented anywhere
that it happens, and in normal circumstances re-loading new values isn't
expecterd during a save operation.

Update various mentions of readConfig/writeConfig to read/save.

Update documentation to match the new names of functions.

Rename writeConfig() to save() and usrWriteConfig() to usrSave()

Rename functions to match the new naming conventions.  Also create old deprecated
instances of both functions to ensure that old code continues to operate
correctly.  Also make save() non-virtual, for the same reasons read() is
now non-virtual.

Rename usrReadConfig to usrRead, to be consistent with the new name for readConfig.

Rename usrReadConfig to usrRead, and mark the former as deprecated.  To maintain
compatibility, usrRead still calls usrReadConfig in its default implementation.
usrReadConfig remains empty.

REVIEW: 117010
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The extra load of values in KCoreConfigSkeleton is not documented anywhere
that it happens, and in normal circumstances re-loading new values isn't
expecterd during a save operation.

Update various mentions of readConfig/writeConfig to read/save.

Update documentation to match the new names of functions.

Rename writeConfig() to save() and usrWriteConfig() to usrSave()

Rename functions to match the new naming conventions.  Also create old deprecated
instances of both functions to ensure that old code continues to operate
correctly.  Also make save() non-virtual, for the same reasons read() is
now non-virtual.

Rename usrReadConfig to usrRead, to be consistent with the new name for readConfig.

Rename usrReadConfig to usrRead, and mark the former as deprecated.  To maintain
compatibility, usrRead still calls usrReadConfig in its default implementation.
usrReadConfig remains empty.

REVIEW: 117010
</pre>
</div>
</content>
</entry>
<entry>
<title>Code reformatted using kde-dev-scripts/astyle-kdelibs.</title>
<updated>2013-12-18T08:53:59+00:00</updated>
<author>
<name>David Faure</name>
<email>faure@kde.org</email>
</author>
<published>2013-12-18T08:53:59+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/commit/?id=159963832457e6307282308455330acc7b5bd153'/>
<id>159963832457e6307282308455330acc7b5bd153</id>
<content type='text'>
Use git blame -w 867e7a5 to show authorship as it was before this commit.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Use git blame -w 867e7a5 to show authorship as it was before this commit.
</pre>
</div>
</content>
</entry>
<entry>
<title>Move kconfig code to the root directory.</title>
<updated>2013-12-18T00:45:18+00:00</updated>
<author>
<name>Jenkins CI</name>
<email>null@kde.org</email>
</author>
<published>2013-12-18T00:45:18+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/commit/?id=867e7a50e6396338ab4fe9aa22ad141e4cd344d2'/>
<id>867e7a50e6396338ab4fe9aa22ad141e4cd344d2</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
