compile against API rename

SVN revision: 79659
This commit is contained in:
Andreas Volz 2012-11-25 21:35:00 +00:00
parent dccc702171
commit 617b0b391f
1 changed files with 3 additions and 3 deletions

View File

@ -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");