<feed xmlns='http://www.w3.org/2005/Atom'>
<title>kconfig.git/src/kconfig_compiler, branch v5.81.0-rc1</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>Fix formatting in a couple of places after running clang-format</title>
<updated>2021-02-22T19:28:00+00:00</updated>
<author>
<name>Ahmad Samir</name>
<email>a.samirh78@gmail.com</email>
</author>
<published>2021-02-22T17:25:40+00:00</published>
<link rel='alternate' type='text/html' href='https://dynamicmalloc.com/cgit/kconfig.git/commit/?id=48c132be8aa983165126b0641a083848dd5c6620'/>
<id>48c132be8aa983165126b0641a083848dd5c6620</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>Run clang-format on all cpp/h files</title>
<updated>2021-02-22T15:38:09+00:00</updated>
<author>
<name>Ahmad Samir</name>
<email>a.samirh78@gmail.com</email>
</author>
<published>2021-02-22T15:38:09+00:00</published>
<link rel='alternate' type='text/html' href='https://dynamicmalloc.com/cgit/kconfig.git/commit/?id=8bed00ab34e31f2b9c70026d418d923913325798'/>
<id>8bed00ab34e31f2b9c70026d418d923913325798</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 a trailing comma to last member in enum</title>
<updated>2021-02-22T15:34:03+00:00</updated>
<author>
<name>Ahmad Samir</name>
<email>a.samirh78@gmail.com</email>
</author>
<published>2021-02-22T15:34:03+00:00</published>
<link rel='alternate' type='text/html' href='https://dynamicmalloc.com/cgit/kconfig.git/commit/?id=186755fd56b58dc97250846c5305ef89f9487f86'/>
<id>186755fd56b58dc97250846c5305ef89f9487f86</id>
<content type='text'>
GIT_SILENT
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
GIT_SILENT
</pre>
</div>
</content>
</entry>
</feed>
