removed debuging code
This commit is contained in:
parent
0e6600ac68
commit
da2d8cfcd5
2 changed files with 1 additions and 2 deletions
|
@ -174,7 +174,7 @@ class Controller(QtCore.QObject):
|
|||
pass
|
||||
|
||||
@QtCore.pyqtSlot()
|
||||
def openNewMessageWidow(self, text=""):
|
||||
def openNewMessageWidow(self):
|
||||
self.openNewMessageWindowInReplyToStatus("") # FIXME: create a status_string with this content
|
||||
|
||||
@QtCore.pyqtSlot(str)
|
||||
|
|
|
@ -414,7 +414,6 @@ class NewPost(Helper.RestorableWindow):
|
|||
def load_finished(self, widget):
|
||||
callback = "function() { bungloo.newpost.setStatus(\"%s\"); }" % (self.status_string)
|
||||
script = "function HostAppGo() { start('newpost', " + callback + "); }"
|
||||
script = "function HostAppGo() { start('newpost'); }"
|
||||
self.webView.page().mainFrame().evaluateJavaScript(script)
|
||||
self.webView.setFocus()
|
||||
|
||||
|
|
Reference in a new issue