openlp-core team mailing list archive
-
openlp-core team
-
Mailing list archive
-
Message #02417
[Merge] lp:~meths/openlp/trivialfixes into lp:openlp
Jon Tibble has proposed merging lp:~meths/openlp/trivialfixes into lp:openlp.
Requested reviews:
OpenLP Core (openlp-core)
PEBKAC
--
https://code.launchpad.net/~meths/openlp/trivialfixes/+merge/29628
Your team OpenLP Core is requested to review the proposed merge of lp:~meths/openlp/trivialfixes into lp:openlp.
=== modified file 'openlp/core/ui/mainwindow.py'
--- openlp/core/ui/mainwindow.py 2010-07-10 10:31:36 +0000
+++ openlp/core/ui/mainwindow.py 2010-07-10 10:46:41 +0000
@@ -974,6 +974,6 @@
if position != -1:
self.recentFiles.removeAt(position)
self.recentFiles.insert(0, QtCore.QString(filename))
- while self.recentFiles.count() > recentFileCount:
+ while self.recentFiles.count() > maxRecentFiles:
# Don't care what API says takeLast works, removeLast doesn't!
self.recentFiles.takeLast()
Follow ups