Results of testing on Maemo 5
authorEd Page <eopage@byu.net>
Sat, 23 Oct 2010 03:15:35 +0000 (22:15 -0500)
committerEd Page <eopage@byu.net>
Sat, 23 Oct 2010 03:15:35 +0000 (22:15 -0500)
src/dialcentral_qt.py
src/dialogs.py
src/gv_views.py
src/session.py
src/util/qui_utils.py

index fe3242e..045f1e8 100755 (executable)
@@ -315,6 +315,7 @@ class MainWindow(object):
                for tab in self._tabsContents:
                        tab.disable()
 
+               # @bug Tab names too long, switch to icons
                self._tabWidget = QtGui.QTabWidget()
                if qui_utils.screen_orientation() == QtCore.Qt.Vertical:
                        self._tabWidget.setTabPosition(QtGui.QTabWidget.South)
@@ -510,7 +511,7 @@ class MainWindow(object):
                self._accountDialog.accountNumber = self._session.get_account_number()
                response = self._accountDialog.run()
                if response == QtGui.QDialog.Accepted:
-                       if self._accountDialog.doClear():
+                       if self._accountDialog.doClear:
                                self._session.logout_and_clear()
                elif response == QtGui.QDialog.Rejected:
                        _moduleLogger.info("Cancelled")
index 7b8ae52..e9bbf5f 100644 (file)
@@ -80,6 +80,8 @@ class CredentialsDialog(object):
 
 class AccountDialog(object):
 
+       # @bug Can't configure callback number
+
        def __init__(self, app):
                self._doClear = False
 
index 5a7b7dc..8982530 100644 (file)
@@ -542,6 +542,8 @@ class Messages(object):
 
 class Contacts(object):
 
+       # @todo Provide some sort of letter jump
+
        def __init__(self, app, session, errorLog):
                self._app = app
                self._session = session
index 1cfd38b..edd92e6 100644 (file)
@@ -1,3 +1,5 @@
+from __future__ import with_statement
+
 import os
 import time
 import logging
index dfbdcde..db36359 100644 (file)
@@ -98,6 +98,8 @@ class ErrorDisplay(object):
 
 class QHtmlDelegate(QtGui.QStyledItemDelegate):
 
+       # @bug Doesn't show properly with dark themes (Maemo)
+
        def paint(self, painter, option, index):
                newOption = QtGui.QStyleOptionViewItemV4(option)
                self.initStyleOption(newOption, index)