URI: 
       tcleanup dead code - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 46e431cd6211ff25aa60ccde72bcc0049bf3907f
   DIR parent 2a07ed47f25c263d5fc2e055948495746cf6bbc6
  HTML Author: ThomasV <thomasv@gitorious>
       Date:   Thu, 19 Jun 2014 09:42:19 +0200
       
       cleanup dead code
       
       Diffstat:
         M gui/qt/transaction_dialog.py        |      11 +----------
       
       1 file changed, 1 insertion(+), 10 deletions(-)
       ---
   DIR diff --git a/gui/qt/transaction_dialog.py b/gui/qt/transaction_dialog.py
       t@@ -107,7 +107,7 @@ class TxDialog(QDialog):
                    json_text = json.dumps(self.tx.as_dict()).replace(' ', '')
                    self.parent.show_qrcode(json_text, 'Transaction')
                except Exception as e:
       -            self.parent.show_message(str(e))
       +            self.show_message(str(e))
        
        
            def sign(self):
       t@@ -167,7 +167,6 @@ class TxDialog(QDialog):
                else:
                    self.date_label.hide()
        
       -
                # if we are not synchronized, we cannot tell
                if self.parent.network is None or not self.parent.network.is_running() or not self.parent.network.is_connected():
                    return
       t@@ -188,14 +187,6 @@ class TxDialog(QDialog):
                    self.amount_label.setText(_("Transaction unrelated to your wallet"))
        
        
       -    def exec_menu(self, position,l):
       -        item = l.itemAt(position)
       -        if not item: return
       -        addr = unicode(item.text(0))
       -        menu = QMenu()
       -        menu.addAction(_("Copy to clipboard"), lambda: self.parent.app.clipboard().setText(addr))
       -        menu.exec_(l.viewport().mapToGlobal(position))
       -
        
            def add_io(self, vbox):