<feed xmlns='http://www.w3.org/2005/Atom'>
<title>kconfig.git/src/core, branch v4.100.0-rc2</title>
<subtitle>hurd kconfig.git</subtitle>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/'/>
<entry>
<title>Update usage of QVariant::type() for Qt5.</title>
<updated>2014-05-26T19:04:30+00:00</updated>
<author>
<name>Thomas Braxton</name>
<email>kde.braxton@gmail.com</email>
</author>
<published>2014-05-26T18:35:13+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/commit/?id=8b88eaee8c2db96779bb9a90f52de508b271fe55'/>
<id>8b88eaee8c2db96779bb9a90f52de508b271fe55</id>
<content type='text'>
According to http://qt-project.org/doc/qt-5/qvariant.html#type the
return value of QVariant::type() should be interpreted as a
QMetaType::Type.
This also silences the compile-time warnings about 38 not being a member
of QVariant::Type.

REVIEW: 118332
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
According to http://qt-project.org/doc/qt-5/qvariant.html#type the
return value of QVariant::type() should be interpreted as a
QMetaType::Type.
This also silences the compile-time warnings about 38 not being a member
of QVariant::Type.

REVIEW: 118332
</pre>
</div>
</content>
</entry>
<entry>
<title>REVIEW: 118039</title>
<updated>2014-05-26T09:50:54+00:00</updated>
<author>
<name>Thomas Braxton</name>
<email>kde.braxton@gmail.com</email>
</author>
<published>2014-05-26T09:50:54+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/commit/?id=5f4dc2973f10cd44b2c70680fee72dd8fc545d2f'/>
<id>5f4dc2973f10cd44b2c70680fee72dd8fc545d2f</id>
<content type='text'>
Simplify KConfigGroup::readEntry/writeEntry.

KConfigGroup::readCheck/writeCheck caused some compilers to complain
since they were private functions that were being reimplemented outside
the class definition.

Updated KCONFIGGROUP_DECLARE_ENUM_QOBJECT/
deprecated global functions created in KDE4 times.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Simplify KConfigGroup::readEntry/writeEntry.

KConfigGroup::readCheck/writeCheck caused some compilers to complain
since they were private functions that were being reimplemented outside
the class definition.

Updated KCONFIGGROUP_DECLARE_ENUM_QOBJECT/
deprecated global functions created in KDE4 times.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix lupdate warnings</title>
<updated>2014-05-12T18:27:41+00:00</updated>
<author>
<name>Albert Astals Cid</name>
<email>aacid@kde.org</email>
</author>
<published>2014-05-12T18:27:41+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/commit/?id=badd2dff667bd22755efd0ec2d967476ca9eb984'/>
<id>badd2dff667bd22755efd0ec2d967476ca9eb984</id>
<content type='text'>
/home/scripty/prod/git-unstable/frameworks_kconfig/src/core/bufferfragment_p.h:37: Ignoring definition of undeclared qualified class
/home/scripty/prod/git-unstable/frameworks_kconfig/src/core/bufferfragment_p.h:37: Ignoring definition of undeclared qualified class
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
/home/scripty/prod/git-unstable/frameworks_kconfig/src/core/bufferfragment_p.h:37: Ignoring definition of undeclared qualified class
/home/scripty/prod/git-unstable/frameworks_kconfig/src/core/bufferfragment_p.h:37: Ignoring definition of undeclared qualified class
</pre>
</div>
</content>
</entry>
<entry>
<title>Revert "Store app config file in ~/.config/&lt;domain&gt;/&lt;app&gt;rc"</title>
<updated>2014-05-05T08:58:11+00:00</updated>
<author>
<name>David Faure</name>
<email>faure@kde.org</email>
</author>
<published>2014-05-05T08:58:11+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/commit/?id=6bb0a14db4ff6fba9a2bc24b4e57c1155e264df8'/>
<id>6bb0a14db4ff6fba9a2bc24b4e57c1155e264df8</id>
<content type='text'>
This reverts commit 625e124898afad04ab5c3939b1b129b6014046cd.

Let's take the time to think about a better solution, possibly.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This reverts commit 625e124898afad04ab5c3939b1b129b6014046cd.

Let's take the time to think about a better solution, possibly.
</pre>
</div>
</content>
</entry>
<entry>
<title>Store app config file in ~/.config/&lt;domain&gt;/&lt;app&gt;rc</title>
<updated>2014-05-04T21:26:03+00:00</updated>
<author>
<name>David Faure</name>
<email>faure@kde.org</email>
</author>
<published>2014-05-04T17:13:53+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/commit/?id=625e124898afad04ab5c3939b1b129b6014046cd'/>
<id>625e124898afad04ab5c3939b1b129b6014046cd</id>
<content type='text'>
Only KSharedConfig::openConfig() and KConfig default constructor are affected.

KConfig("kdeglobals"), for instance, points to ~/.config so that it can be shared.

REVIEW: 117989
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Only KSharedConfig::openConfig() and KConfig default constructor are affected.

KConfig("kdeglobals"), for instance, points to ~/.config so that it can be shared.

REVIEW: 117989
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix lupdate warning</title>
<updated>2014-05-03T15:41:19+00:00</updated>
<author>
<name>Albert Astals Cid</name>
<email>aacid@kde.org</email>
</author>
<published>2014-05-03T15:41:19+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/commit/?id=092d645a1ec63678d46631fa0dc6e7eb78cee0d3'/>
<id>092d645a1ec63678d46631fa0dc6e7eb78cee0d3</id>
<content type='text'>
kconfigini.cpp:554: Class 'KConfigIniBackend' lacks Q_OBJECT macro
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
kconfigini.cpp:554: Class 'KConfigIniBackend' lacks Q_OBJECT macro
</pre>
</div>
</content>
</entry>
<entry>
<title>SVN_SILENT made messages (.desktop file)</title>
<updated>2014-05-03T08:34:03+00:00</updated>
<author>
<name>l10n daemon script</name>
<email>scripty@kde.org</email>
</author>
<published>2014-05-03T08:34:03+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/commit/?id=90064f2e064317bba26f11bb90504bb2b556232f'/>
<id>90064f2e064317bba26f11bb90504bb2b556232f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix include path in .pri files</title>
<updated>2014-05-02T21:44:20+00:00</updated>
<author>
<name>David Faure</name>
<email>faure@kde.org</email>
</author>
<published>2014-05-02T21:44:20+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/commit/?id=3b2c72bbb11acb94b661955aa0e23986e6979cd8'/>
<id>3b2c72bbb11acb94b661955aa0e23986e6979cd8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>SVN_SILENT made messages (.desktop file)</title>
<updated>2014-05-02T08:52:20+00:00</updated>
<author>
<name>l10n daemon script</name>
<email>scripty@kde.org</email>
</author>
<published>2014-05-02T08:52:20+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/commit/?id=2dacbc05898bb0f6ccdfab033d954017bd75b975'/>
<id>2dacbc05898bb0f6ccdfab033d954017bd75b975</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>SVN_SILENT made messages (.desktop file)</title>
<updated>2014-04-29T10:13:25+00:00</updated>
<author>
<name>l10n daemon script</name>
<email>scripty@kde.org</email>
</author>
<published>2014-04-29T10:13:25+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/commit/?id=2ae27a58ec03af8a83fb1e5c4e8364c3458ba248'/>
<id>2ae27a58ec03af8a83fb1e5c4e8364c3458ba248</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
