Author: jablko
Date: Thu Sep 17 19:55:19 2009
New Revision: 3402
Log:
Make some unused abstract methods concrete, to avoid having to define them
Modified:
trunk/lib/vendor/symfony/lib/addon/sfPager.class.php
Modified: trunk/lib/vendor/symfony/lib/addon/sfPager.class.php
==============================================================================
--- trunk/lib/vendor/symfony/lib/addon/sfPager.class.php Thu Sep 17
19:46:25 2009 (r3401)
+++ trunk/lib/vendor/symfony/lib/addon/sfPager.class.php Thu Sep 17
19:55:19 2009 (r3402)
@@ -48,13 +48,17 @@
}
// function to be called after parameters have been set
- abstract public function init();
+ public function init()
+ {
+ }
// main method: returns an array of result on the given page
abstract public function getResults();
// used internally by getCurrent()
- abstract protected function retrieveObject($offset);
+ protected function retrieveObject($offset)
+ {
+ }
public function getCurrentMaxLink()
{
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Qubit Toolkit Commits" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.ca/group/qubit-commits?hl=en
-~----------~----~----~----~------~----~------~--~---