tasn pushed a commit to branch master.

http://git.enlightenment.org/bindings/cxx/eflxx.git/commit/?id=617b0b391fcfbb681ca3959a7522903221296246

commit 617b0b391fcfbb681ca3959a7522903221296246
Author: Andreas Volz <li...@brachttal.net>
Date:   Sun Nov 25 21:35:00 2012 +0000

    compile against API rename
    
    
    SVN revision: 79659
---
 eflxx_examples/src/elementaryxx/external/main.cpp | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/eflxx_examples/src/elementaryxx/external/main.cpp 
b/eflxx_examples/src/elementaryxx/external/main.cpp
index ee70654..f7c268d 100644
--- a/eflxx_examples/src/elementaryxx/external/main.cpp
+++ b/eflxx_examples/src/elementaryxx/external/main.cpp
@@ -127,17 +127,17 @@ int main (int argc, char **argv)
     cerr << pne.what () << endl;
   }
 
-  bg->setWeightHintSize (1.0, 1.0);
+  bg->setSizeHintWeight (1.0, 1.0);
   elmWin->addResizeObject (*bg);
 
   /* set size hints. a minimum size for the bg. this should propagate back
    * to the window thus limiting its size based off the bg as the bg is one
    * of the window's resize objects. */
-  bg->setMinHintSize (Size (160, 160));
+  bg->setSizeHintMin (Size (160, 160));
   /* and set a maximum size. not needed very often. normally used together
    * with evas_object_size_hint_min_set() at the same size to make a
    * window not resizable */
-  bg->setMaxHintSize (Size (640, 640));
+  bg->setSizeHintMax (Size (640, 640));
 
   elmWin->setTitle ("Elementaryxx Simple Example");
 

-- 


Reply via email to