Reviewers: jlabanca,


Please review this at http://gwt-code-reviews.appspot.com/1617804/

Affected files:
  M user/src/com/google/gwt/user/cellview/client/SimplePager.java


Index: user/src/com/google/gwt/user/cellview/client/SimplePager.java
diff --git a/user/src/com/google/gwt/user/cellview/client/SimplePager.java b/user/src/com/google/gwt/user/cellview/client/SimplePager.java index 7c1f5b51997b098cc7bd56e9821b855331deeb81..67470f62cbce9fdb739a44ade9929e79018c9d4a 100644
--- a/user/src/com/google/gwt/user/cellview/client/SimplePager.java
+++ b/user/src/com/google/gwt/user/cellview/client/SimplePager.java
@@ -312,7 +312,7 @@ public class SimplePager extends AbstractPager {
     HorizontalPanel layout = new HorizontalPanel();
     layout.setVerticalAlignment(HasVerticalAlignment.ALIGN_MIDDLE);
     initWidget(layout);
-    if (location == TextLocation.RIGHT) {
+    if (location == TextLocation.LEFT) {
       layout.add(label);
     }
     layout.add(firstPage);
@@ -327,7 +327,7 @@ public class SimplePager extends AbstractPager {
     if (showLastPageButton) {
       layout.add(lastPage);
     }
-    if (location == TextLocation.LEFT) {
+    if (location == TextLocation.RIGHT) {
       layout.add(label);
     }



--
http://groups.google.com/group/Google-Web-Toolkit-Contributors

Reply via email to