Removing unneeded todos
authorepage <eopage@byu.net>
Thu, 28 May 2009 00:39:57 +0000 (00:39 +0000)
committerepage <eopage@byu.net>
Thu, 28 May 2009 00:39:57 +0000 (00:39 +0000)
git-svn-id: file:///svnroot/gc-dialer/trunk@334 c39d3808-3fe2-4d86-a59f-b7f623ee9f21

src/dc_glade.py
src/gc_views.py
src/gv_backend.py

index a833de5..3f0c260 100755 (executable)
@@ -629,9 +629,6 @@ class Dialcentral(object):
                        self._window.set_title("%s - %s" % (constants.__pretty_app_name__, tabTitle))
 
        def _on_sms_clicked(self, number, message):
-               """
-               @todo Potential blocking on web access, maybe we should defer parts of this or put up a dialog?
-               """
                assert number
                assert message
                try:
@@ -657,9 +654,6 @@ class Dialcentral(object):
                        self._errorDisplay.push_exception(e)
 
        def _on_dial_clicked(self, number):
-               """
-               @todo Potential blocking on web access, maybe we should defer parts of this or put up a dialog?
-               """
                assert number
                try:
                        loggedIn = self._phoneBackends[self._selectedBackendId].is_authed()
index 630e213..6c2411e 100644 (file)
@@ -604,9 +604,6 @@ class AccountInfo(object):
                self._callbackCombo.get_child().set_text(make_pretty(callbackNumber))
 
        def _set_callback_number(self, number):
-               """
-               @todo Potential blocking on web access, maybe we should defer this or put up a dialog?
-               """
                try:
                        if not self._backend.is_valid_syntax(number):
                                self._errorDisplay.push_message("%s is not a valid callback number" % number)
@@ -619,9 +616,6 @@ class AccountInfo(object):
                        self._errorDisplay.push_exception(e)
 
        def _on_callbackentry_changed(self, *args):
-               """
-               @todo Potential blocking on web access, maybe we should defer this or put up a dialog?
-               """
                text = self.get_selected_callback_number()
                self._set_callback_number(text)
 
index 2ae5230..533c824 100644 (file)
@@ -298,8 +298,6 @@ class GVDialer(object):
                        warnings.warn(traceback.format_exc())
                        raise RuntimeError("%s is not accesible" % self._setforwardURL)
 
-               # @bug This does not seem to be keeping on my tablet (but works on the
-               # desktop), or the reading isn't working too well
                self._browser.cookies.save()
                return True