----------------------------------------------------------- This is an automatically generated e-mail. To reply, visit: http://git.reviewboard.kde.org/r/104817/#review13526 -----------------------------------------------------------
Smart pointers without a purpose, just make reading the code harder. Two more to fix, and then ship it ;) kpasswdserver/kpasswdserver.cpp <http://git.reviewboard.kde.org/r/104817/#comment10694> This QPointer<> is useless too, given that you don't use exec(), but open(), which returns immediately -> no nested event loop, no risk of deletion. kpasswdserver/kpasswdserver.cpp <http://git.reviewboard.kde.org/r/104817/#comment10695> Same here. - David Faure On May 4, 2012, 11:01 p.m., Dawit Alemayehu wrote: > > ----------------------------------------------------------- > This is an automatically generated e-mail. To reply, visit: > http://git.reviewboard.kde.org/r/104817/ > ----------------------------------------------------------- > > (Updated May 4, 2012, 11:01 p.m.) > > > Review request for KDE Runtime and David Faure. > > > Description > ------- > > The attached patch does the following: > > - Use QDialog::open instead of QDialog::exec to prevent one password dialog > from blocking other password dialogs. This fixes the changes committed with > https://git.reviewboard.kde.org/r/103245/ which allowed dialog boxes from > different applications to be shown so long as they are not for the same site. > > - Update the key under which the password is cached if the request url > contains a username, but the user change it in the password dialog. IOW, do > now allow a password to be stored under different username than the one used > to access the site. > > - Added the unit test listed in the TODOs along with several more that > exercise all of the above changes. > > > Diffs > ----- > > kpasswdserver/DESIGN 6a128f9 > kpasswdserver/kpasswdserver.h 66f1f57 > kpasswdserver/kpasswdserver.cpp b2abbd4 > kpasswdserver/tests/kpasswdservertest.cpp 38a579b > > Diff: http://git.reviewboard.kde.org/r/104817/diff/ > > > Testing > ------- > > Added several additional unit tests to exercise all the changes. See patch. > > > Thanks, > > Dawit Alemayehu > >
