<feed xmlns='http://www.w3.org/2005/Atom'>
<title>kconfig.git/src, branch v5.81.0-rc2</title>
<subtitle>hurd kconfig.git</subtitle>
<link rel='alternate' type='text/html' href='https://dynamicmalloc.com/cgit/kconfig.git/'/>
<entry>
<title>[kconfig_compiler] Explicitly open input file for reading</title>
<updated>2021-03-22T12:38:46+00:00</updated>
<author>
<name>Nicolas Fella</name>
<email>nicolas.fella@gmx.de</email>
</author>
<published>2021-03-17T00:09:33+00:00</published>
<link rel='alternate' type='text/html' href='https://dynamicmalloc.com/cgit/kconfig.git/commit/?id=ce350dfdd9d32849346c5b89fffa4f553b94188b'/>
<id>ce350dfdd9d32849346c5b89fffa4f553b94188b</id>
<content type='text'>
In Qt6 QDomDocument does not open the file itself any more
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In Qt6 QDomDocument does not open the file itself any more
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove old contact data from src/kconfig_compiler_README.dox</title>
<updated>2021-03-16T17:38:31+00:00</updated>
<author>
<name>David Hurka</name>
<email>david.hurka@mailbox.org</email>
</author>
<published>2021-03-16T17:37:50+00:00</published>
<link rel='alternate' type='text/html' href='https://dynamicmalloc.com/cgit/kconfig.git/commit/?id=fee82b7f093cfdcfd217582df18ff41721e6e120'/>
<id>fee82b7f093cfdcfd217582df18ff41721e6e120</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Improve code readability by using QLatin1String::arg()</title>
<updated>2021-03-05T23:35:09+00:00</updated>
<author>
<name>Ahmad Samir</name>
<email>a.samirh78@gmail.com</email>
</author>
<published>2021-02-23T15:09:33+00:00</published>
<link rel='alternate' type='text/html' href='https://dynamicmalloc.com/cgit/kconfig.git/commit/?id=d5ca63b954407b36c18c70e2ecace7b30694558d'/>
<id>d5ca63b954407b36c18c70e2ecace7b30694558d</id>
<content type='text'>
NO_CHANGELOG
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
NO_CHANGELOG
</pre>
</div>
</content>
</entry>
<entry>
<title>kconfig_compiler: change how paramString() creates strings</title>
<updated>2021-03-05T23:35:09+00:00</updated>
<author>
<name>Ahmad Samir</name>
<email>a.samirh78@gmail.com</email>
</author>
<published>2021-02-23T14:23:22+00:00</published>
<link rel='alternate' type='text/html' href='https://dynamicmalloc.com/cgit/kconfig.git/commit/?id=23f55a865bdc1b5f7f462b35e8788ea3e2cbc121'/>
<id>23f55a865bdc1b5f7f462b35e8788ea3e2cbc121</id>
<content type='text'>
Now it creates C++ code that uses QString::arg(Args...) instead of
arg().arg().

AFAICS, the type of the "Args" is QString, so this should work.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Now it creates C++ code that uses QString::arg(Args...) instead of
arg().arg().

AFAICS, the type of the "Args" is QString, so this should work.
</pre>
</div>
</content>
</entry>
<entry>
<title>Minor code optimisation</title>
<updated>2021-03-05T23:35:08+00:00</updated>
<author>
<name>Ahmad Samir</name>
<email>a.samirh78@gmail.com</email>
</author>
<published>2021-02-22T22:37:11+00:00</published>
<link rel='alternate' type='text/html' href='https://dynamicmalloc.com/cgit/kconfig.git/commit/?id=9d87348260316af729892c58bc29f159a173abf1'/>
<id>9d87348260316af729892c58bc29f159a173abf1</id>
<content type='text'>
- Use more range-for loops where appropriate
- Use auto instead of the usually-long iterator type names
- Use cbegin/cend(), to match the std:: containers, less confusion
- Use qDeleteAll instead of a for loop
- Make a QRE with a long-ish pattern static

NO_CHANGELOG
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Use more range-for loops where appropriate
- Use auto instead of the usually-long iterator type names
- Use cbegin/cend(), to match the std:: containers, less confusion
- Use qDeleteAll instead of a for loop
- Make a QRE with a long-ish pattern static

NO_CHANGELOG
</pre>
</div>
</content>
</entry>
<entry>
<title>Optimise string operations a bit</title>
<updated>2021-03-05T23:33:45+00:00</updated>
<author>
<name>Ahmad Samir</name>
<email>a.samirh78@gmail.com</email>
</author>
<published>2021-02-22T20:38:43+00:00</published>
<link rel='alternate' type='text/html' href='https://dynamicmalloc.com/cgit/kconfig.git/commit/?id=ee35bdce8f6b08922b4c9e0c0c838e5f2c4a79ad'/>
<id>ee35bdce8f6b08922b4c9e0c0c838e5f2c4a79ad</id>
<content type='text'>
- Use QString::arg(Args...) instead of .arg().arg()
- Use QLatin1String for string comparisons, should be faster
- Use QLatin1String::arg() for better readability

- Add the comment dfaure suggested in the MR, to explain why it's '2%'
  then '%1' in a QString().arg().arg()

NO_CHANGELOG
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Use QString::arg(Args...) instead of .arg().arg()
- Use QLatin1String for string comparisons, should be faster
- Use QLatin1String::arg() for better readability

- Add the comment dfaure suggested in the MR, to explain why it's '2%'
  then '%1' in a QString().arg().arg()

NO_CHANGELOG
</pre>
</div>
</content>
</entry>
<entry>
<title>Add missing QTextStream::setCodec ifdef</title>
<updated>2021-03-01T10:13:04+00:00</updated>
<author>
<name>Nicolas Fella</name>
<email>nicolas.fella@gmx.de</email>
</author>
<published>2021-03-01T10:13:04+00:00</published>
<link rel='alternate' type='text/html' href='https://dynamicmalloc.com/cgit/kconfig.git/commit/?id=24dab65f44b0352cfa410162c1099c3f22f7e873'/>
<id>24dab65f44b0352cfa410162c1099c3f22f7e873</id>
<content type='text'>
This was missed in https://invent.kde.org/frameworks/kconfig/-/merge_requests/41
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This was missed in https://invent.kde.org/frameworks/kconfig/-/merge_requests/41
</pre>
</div>
</content>
</entry>
<entry>
<title>Make QByteArray -&gt; char* conversion explicit</title>
<updated>2021-02-28T20:44:33+00:00</updated>
<author>
<name>Nicolas Fella</name>
<email>nicolas.fella@gmx.de</email>
</author>
<published>2021-01-31T17:11:46+00:00</published>
<link rel='alternate' type='text/html' href='https://dynamicmalloc.com/cgit/kconfig.git/commit/?id=63c26290d25bc8ace158de94bcb764c764c476a9'/>
<id>63c26290d25bc8ace158de94bcb764c764c476a9</id>
<content type='text'>
The implicit conversion fails in Qt6
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The implicit conversion fails in Qt6
</pre>
</div>
</content>
</entry>
<entry>
<title>Use KEntryMapIterator/KEntryMapConstIterator typedef's everywhere</title>
<updated>2021-02-24T05:38:32+00:00</updated>
<author>
<name>Ahmad Samir</name>
<email>a.samirh78@gmail.com</email>
</author>
<published>2021-02-23T11:25:26+00:00</published>
<link rel='alternate' type='text/html' href='https://dynamicmalloc.com/cgit/kconfig.git/commit/?id=505909e5d6c5a5b44a4972f1aee8156da6d61c79'/>
<id>505909e5d6c5a5b44a4972f1aee8156da6d61c79</id>
<content type='text'>
NO_CHANGELOG
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
NO_CHANGELOG
</pre>
</div>
</content>
</entry>
<entry>
<title>Add KEntryMap::constFindEntry() method</title>
<updated>2021-02-24T05:38:32+00:00</updated>
<author>
<name>Ahmad Samir</name>
<email>a.samirh78@gmail.com</email>
</author>
<published>2021-02-23T11:08:15+00:00</published>
<link rel='alternate' type='text/html' href='https://dynamicmalloc.com/cgit/kconfig.git/commit/?id=cae1e9b6d2ec957f8bc4643b898308a404d00a5f'/>
<id>cae1e9b6d2ec957f8bc4643b898308a404d00a5f</id>
<content type='text'>
- This has the same logic as QMap::constFind(); less detaching and now we
can use auto keyword when creating iterators and always get a const_iterator
even when calling constFindEntry() on a non-const map.

- Use QCOMPARE() where appropriate in the unit tests.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- This has the same logic as QMap::constFind(); less detaching and now we
can use auto keyword when creating iterators and always get a const_iterator
even when calling constFindEntry() on a non-const map.

- Use QCOMPARE() where appropriate in the unit tests.
</pre>
</div>
</content>
</entry>
</feed>
