summaryrefslogtreecommitdiff
path: root/dev-python/bicyclerepair/files/bicyclerepair-fix-idle.patch
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--dev-python/bicyclerepair/files/bicyclerepair-fix-idle.patch41
1 files changed, 0 insertions, 41 deletions
diff --git a/dev-python/bicyclerepair/files/bicyclerepair-fix-idle.patch b/dev-python/bicyclerepair/files/bicyclerepair-fix-idle.patch
deleted file mode 100644
index ff7e6f8..0000000
--- a/dev-python/bicyclerepair/files/bicyclerepair-fix-idle.patch
+++ /dev/null
@@ -1,41 +0,0 @@
-=== modified file 'ide-integration/BicycleRepairMan_Idle.py'
---- ide-integration/BicycleRepairMan_Idle.py 2008-07-21 20:08:33 +0000
-+++ ide-integration/BicycleRepairMan_Idle.py 2008-07-21 20:15:02 +0000
-@@ -300,21 +300,21 @@
- return 1
-
-
--    def confirm_buffer_is_saved(self, editwin):
--        if not editwin.get_saved():
--            name = (editwin.short_title()or
--            editwin.long_title()or
--            "Untitled")
--            reply = tkMessageBox.askokcancel("Bicycle Repair Man",
--                "The buffer for %s is not saved.\n\n"%name+
--                "Save it and continue?",
--                master = self.editwin.text)
--          &nbs p; self.editwin.text.focus_set()
--            if reply:
--                editwin.io.save(None)
--            else:
--                return 0
--        return 1
-+ def confirm_buffer_is_saved(self, editwin):
-+ if not editwin.get_saved():
-+ name = (editwin.short_title()or
-+ editwin.long_title()or
-+ "Untitled")
-+ reply = tkMessageBox.askokcancel("Bicycle Repair Man",
-+ "The buffer for %s is not saved.\n\n"%name+
-+ "Save it and continue?",
-+ master = self.editwin.text)
-+ self.editwin.text.focus_set()
-+ if reply:
-+ editwin.io.save(None)
-+ else:
-+ return 0
-+ return 1
-
- def errorbox(self, title, message):
- tkMessageBox.showerror(title, message, master = self.editwin.text)
-
coro' Neumann2-77/+24 2013-10-15Margin for buttons in formsRené 'Necoro' Neumann1-0/+3 2013-10-15Support flashingRené 'Necoro' Neumann5-2/+34 2013-10-15Moved user implementation from model to loginRené 'Necoro' Neumann3-28/+13 2013-10-15Nicer organised importsRené 'Necoro' Neumann6-24/+40 2013-10-14Finish login stuffRené 'Necoro' Neumann11-29/+143 2013-10-14More model tuningRené 'Necoro' Neumann1-3/+3 2013-10-14Add User to modelRené 'Necoro' Neumann1-8/+25 2013-09-30Add first API stuff -- SingleExpense and CategoryRené 'Necoro' Neumann2-1/+13 2013-09-30Force python2René 'Necoro' Neumann1-1/+1 2013-09-24More margin at the bottom for expense listingRené 'Necoro' Neumann1-1/+1 2013-09-24Better pie formattingRené 'Necoro' Neumann3-6/+8 2013-09-24Increase width of page to 760pxRené 'Necoro' Neumann3-8/+9 2013-09-16typoRené 'Necoro' Neumann1-1/+1 2013-09-15Fix display of one monthRené 'Necoro' Neumann1-2/+2 2013-09-14Draw pies using highcharts JS-libRené 'Necoro' Neumann5-20/+99