Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.0.1, 1.0.2, and 1.0.3

stable thgconfig: refactoring rename

Changeset 66c16fa056e0

Parent 26adca060d07

by Yuki KODAMA

Changes to one file · Browse files at 66c16fa056e0 Showing diff from parent 26adca060d07 Diff from another changeset...

 
717
718
719
720
 
721
722
723
 
795
796
797
798
 
799
800
801
 
813
814
815
816
 
817
818
819
 
1299
1300
1301
1302
 
1303
1304
1305
 
717
718
719
 
720
721
722
723
 
795
796
797
 
798
799
800
801
 
813
814
815
 
816
817
818
819
 
1299
1300
1301
 
1302
1303
1304
1305
@@ -717,7 +717,7 @@
  combo.handler_unblock_by_func(self.fileselect)   return   elif ret == 0: - self._apply_clicked() + self.apply_changes()   self.refresh()     def refresh(self): @@ -795,7 +795,7 @@
    def should_live(self, dialog=None, resp=None):   if resp == gtk.RESPONSE_APPLY: - self._apply_clicked() + self.apply_changes()   self.emit_stop_by_name('response')   return True   elif resp == gtk.RESPONSE_CANCEL: @@ -813,7 +813,7 @@
  self.emit_stop_by_name('response')   return True   elif ret == 0: - self._apply_clicked() + self.apply_changes()   return False     def cursor_changed(self, treeview): @@ -1299,7 +1299,7 @@
  self.history.get_value(cpath).remove(newvalue)   self.history.mrul(cpath).add(newvalue)   - def _apply_clicked(self, *args): + def apply_changes(self):   if self.readonly:   #dialog? Read only access, please install ...   return