diff options
author | Cătălin Badea <catalin.badea392@gmail.com> | 2012-08-16 21:10:45 (GMT) |
---|---|---|
committer | Cătălin Badea <catalin.badea392@gmail.com> | 2012-08-16 21:10:45 (GMT) |
commit | 5aadc44a6f11c277a26865c7c908e3f356158fa0 (patch) | |
tree | 38966fb5ec688da87019ecf453740688ad4d7eb8 /Swift/Controllers | |
parent | 4222febfac52106ae4a208228fbe269c0c28679c (diff) | |
download | swift-contrib-5aadc44a6f11c277a26865c7c908e3f356158fa0.zip swift-contrib-5aadc44a6f11c277a26865c7c908e3f356158fa0.tar.bz2 |
Reverse next/previous buttons and fix adding to the top bug.
Diffstat (limited to 'Swift/Controllers')
-rw-r--r-- | Swift/Controllers/HistoryViewController.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Swift/Controllers/HistoryViewController.cpp b/Swift/Controllers/HistoryViewController.cpp index f32447d..d94b8d6 100644 --- a/Swift/Controllers/HistoryViewController.cpp +++ b/Swift/Controllers/HistoryViewController.cpp @@ -213,7 +213,7 @@ void HistoryViewController::handleScrollReachedBottom(const boost::gregorian::da } } -void HistoryViewController::handlePreviousButtonClicked() { +void HistoryViewController::handleNextButtonClicked() { if (!selectedItem_) { return; } @@ -234,7 +234,7 @@ void HistoryViewController::handlePreviousButtonClicked() { } } -void HistoryViewController::handleNextButtonClicked() { +void HistoryViewController::handlePreviousButtonClicked() { if (!selectedItem_) { return; } |