Runtime fixes: - Compilation error with Qt4 as "QUrlQuery" class was introduced since Qt5. - Client side download code has been removed as now we support server side download. - We should not delete sender object inside slot. If we do so it may crash the application. To avoid this, we used Qt's "deleteLater" which will delete the objects once the processing of all the events have been done.
Branch ------ master Details ------- http://git.postgresql.org/gitweb?p=pgadmin4.git;a=commitdiff;h=dcf5bfc495bea1d5b28c389335cbd89e73468aaa Author: Neel Patel <[email protected]> Modified Files -------------- runtime/BrowserWindow.cpp | 139 ++++------------------------------------------ runtime/BrowserWindow.h | 1 - 2 files changed, 11 insertions(+), 129 deletions(-) -- Sent via pgadmin-hackers mailing list ([email protected]) To make changes to your subscription: http://www.postgresql.org/mailpref/pgadmin-hackers
