<div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">On 8 December 2014 at 14:22, Tuomas Suutari <span dir="ltr"><<a href="mailto:tuomas.suutari@gmail.com" target="_blank">tuomas.suutari@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi,<br>
<span class=""><br>
On Sat, Nov 29, 2014 at 1:23 PM, Tobias Leupold <<a href="mailto:tobias.leupold@web.de">tobias.leupold@web.de</a>> wrote:<br>
> I just had a look at it (not that I ever touched the respective code ...).<br>
> std::tuple is actually used in<br>
> AnnotationDialog::Dialog::selectionForMultiSelect, as well as std::tie. Both<br>
> seem to be part of the Boost package (at least here on current stable Gentoo).<br>
> std::tuple looks like a QPair counterpart (not sure about the std::tie thing,<br>
> as I'm not really a C++ guru ;-)<br>
<br>
</span>Actually std::tuple and std::tie are part of the C++11 standard, so if<br>
you have new enough compiler, Boost isn't needed. (Though C++11<br>
support may have to be activated with a compiler flag.)<br></blockquote><div><br></div><div>Still, the standard includes are needed - which was my original patch for.</div><div><br></div><div>(and yeah, I personally greatly prefer C++ standard stuff to annoying Q-classes whenever possible.)</div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<span class=""><br>
> Why don't we use Qt here (instead of using "external" libraries)? I didn't see<br>
> some std::* stuff elsewhere, I'm just wondering if we could e. g. use<br>
><br>
>         QPair<QStringList, QStringList>(itemsOnAllImages, itemsPartiallyOn);<br>
><br>
> instead of<br>
><br>
>         std::make_tuple( itemsOnAllImages,  itemsPartiallyOn );<br>
<br>
</span>In this kind of stuff blame is good way to research why. (You may use<br>
"git blame" on command line or web interface like [1].) By blaming the<br>
file, I found out commit c786b3b [2], so the reason is "improved<br>
readability and type safetity" as stated in the commit message.<br>
<br>
[1] <a href="http://quickgit.kde.org/?p=kphotoalbum.git&a=blame&f=AnnotationDialog%2FDialog.cpp" target="_blank">http://quickgit.kde.org/?p=kphotoalbum.git&a=blame&f=AnnotationDialog%2FDialog.cpp</a><br>
[2] <a href="http://quickgit.kde.org/?p=kphotoalbum.git&a=commitdiff&h=c786b3b29828767586d1eb00909792d621b393d5" target="_blank">http://quickgit.kde.org/?p=kphotoalbum.git&a=commitdiff&h=c786b3b29828767586d1eb00909792d621b393d5</a><br>
<span class="HOEnZb"><font color="#888888"><br>
--<br>
Tuomas<br>
</font></span><div class="HOEnZb"><div class="h5">_______________________________________________<br>
KPhotoAlbum mailing list<br>
<a href="mailto:KPhotoAlbum@mail.kdab.com">KPhotoAlbum@mail.kdab.com</a><br>
<a href="https://mail.kdab.com/mailman/listinfo/kphotoalbum" target="_blank">https://mail.kdab.com/mailman/listinfo/kphotoalbum</a><br>
</div></div></blockquote></div><br></div></div>