Code

rename present()->presdentPage(), removes compiler warnings
authorrwst <rwst@users.sourceforge.net>
Tue, 21 Feb 2006 10:45:55 +0000 (10:45 +0000)
committerrwst <rwst@users.sourceforge.net>
Tue, 21 Feb 2006 10:45:55 +0000 (10:45 +0000)
src/ui/dialog/transformation.cpp
src/ui/dialog/transformation.h

index 9182209f516658a062589c24102e0773fec644d5..6056e4a2e3043853692d50402f0513d3726ec4dc 100644 (file)
@@ -168,7 +168,7 @@ Transformation::~Transformation()
 ########################################################################*/
 
 void
-Transformation::present(Transformation::PageType page)
+Transformation::presentPage(Transformation::PageType page)
 {
     _notebook.set_current_page(page);
     Gtk::Dialog::show();
index 68faeb45ac8c55e0ad59ebf45ebbec73714fbb4f..0c7833c9e72703f4a7d75a0e9aba381989dd5a87 100644 (file)
@@ -65,33 +65,33 @@ public:
      * Show the Move panel
      */
     void setPageMove()
-        { present(PAGE_MOVE);      }
+        { presentPage(PAGE_MOVE);      }
 
 
     /**
      * Show the Scale panel
      */
     void setPageScale()
-        { present(PAGE_SCALE);     }
+        { presentPage(PAGE_SCALE);     }
 
 
     /**
      * Show the Rotate panel
      */
     void setPageRotate()
-        { present(PAGE_ROTATE);    }
+        { presentPage(PAGE_ROTATE);    }
 
     /**
      * Show the Skew panel
      */
     void setPageSkew()
-        { present(PAGE_SKEW);      }
+        { presentPage(PAGE_SKEW);      }
 
     /**
      * Show the Transform panel
      */
     void setPageTransform()
-        { present(PAGE_TRANSFORM); }
+        { presentPage(PAGE_TRANSFORM); }
 
 
     int getCurrentPage()
@@ -148,7 +148,7 @@ protected:
     void layoutPageTransform();
 
     virtual void _apply();
-    void present(PageType page);
+    void presentPage(PageType page);
 
     void onSelectionChanged(Inkscape::NSApplication::Application *inkscape,
                             Inkscape::Selection *selection);