summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeLines
* replace more GUI accesses from non-GUI threadsMichal Kubecek2015-04-15-122/+126
| | | | | | Calls to mainWindow->display() and mainWindow->displayHeader() do not produce QPixmap warnings but can also result in a crash. Replace them with a (queued) signal/slot connection.
* do not call GUI slots directly from non-GUI threadsMichal Kubecek2015-04-15-19/+64
| | | | | | | | | | Direct calls to QObject slots (accessing GUI functions) from non-GUI threads cause QPixmap: It is not safe to use pixmaps outside the GUI thread warnings and (worse) random crashes. These must be rewritten to (queued) signal-slot connections.
* make passed argc reference persistentMichal Kubecek2015-04-15-1/+1
| | | | | | Qt documentation states that argc passed to QApplication constructor (by reference) must exist for the whole lifetime of the QApplication object. This was not the case in create_user_interface().
* Qt4 port step 11: fix diamondcardprofileform.uiMichal Kubecek2015-04-15-0/+6
| | | | Add missing includes and variable declarations.
* Qt4 port step 10: minor X11 related fixesMichal Kubecek2015-04-15-3/+4
|
* Qt4 port step 9: replace getWFlags() / setWFlags()Michal Kubecek2015-04-15-2/+2
| | | | Use windowFlags() and setWindowFlags() instead.
* Qt4 port step 8: disable buddy list tooltipMichal Kubecek2015-04-15-46/+1
| | | | This will need rewriting to event handler. Disable for now.
* Qt4 port step 7: drop unused methodMichal Kubecek2015-04-15-20/+0
| | | | | This method would require some work to port but it's not used anyway so just drop it instead.
* Qt4 port step 6: QPixmap::fromMimeSource cleanupMichal Kubecek2015-04-15-67/+68
| | | | | Convert remaining uses of QPixmap::fromMimeSource() to qPixmapFromMimeSource (will be rewritten to native Qt4 resources later).
* Qt4 port step 5: type safetyMichal Kubecek2015-04-15-9/+10
| | | | Fix various type check errors.
* Qt4 port step 4: add missing forward declarationsMichal Kubecek2015-04-15-0/+9
|
* Qt4 port step 3: hide cursor properties temporarilyMichal Kubecek2015-04-15-40/+40
| | | | | Qt4 doesn't seem to process them in 3.3. ui files correctly. Disable them until ui files are converted to native Qt4.
* Qt4 port step 2: apply qt3toqt4Michal Kubecek2015-04-15-238/+309
|
* Qt4 port step 1: configure.ac cleanupMichal Kubecek2015-04-15-11644/+10
|
* configure.ac: update to current syntaxMichal Kubecek2015-04-13-12/+15
| | | | Get rid of more automake warnings.
* rename configure.in to configure.acMichal Kubecek2015-04-13-0/+0
| | | | Get rid of automake warning.
* add -lkio to KDE librariesMichal Kubecek2015-04-13-1/+1
| | | | Required by newer versions of ld (when building with KDE support).
* replace common C++ by GNU uCommon/commoncppMichal Kubecek2015-04-13-77/+58
| | | | Also requires version 2 of libccrtp and libzrtpcpp.
* fix localtime_r() namespace issueMichal Kubecek2015-04-13-1/+1
| | | | Use explicit root namespace for ::localtime_r().
* add missing return statementsMichal Kubecek2015-04-13-0/+14
| | | | Fix occurences of "no return in non-void function".
* initial checkinMichal Kubecek2015-04-13-0/+187389
Check in contents of upstream 1.4.2 tarball, exclude generated files.