Changeset 1002
- Timestamp:
- Jun 10, 2006, 1:35:18 PM (17 years ago)
- Location:
- libcaca/trunk/cxx
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
libcaca/trunk/cxx/caca++.cpp
r917 r1002 46 46 } 47 47 48 void Caca::setD elay(unsigned int d)48 void Caca::setDisplayTime(unsigned int d) 49 49 { 50 caca_set_d elay(dp, d);50 caca_set_display_time(dp, d); 51 51 } 52 52 … … 56 56 } 57 57 58 unsigned int Caca::get Rendertime()58 unsigned int Caca::getDisplayTime() 59 59 { 60 return caca_get_ rendertime(dp);60 return caca_get_display_time(dp); 61 61 } 62 62 -
libcaca/trunk/cxx/caca++.h
r917 r1002 59 59 void Attach(Cucul *cv); 60 60 void Detach(); 61 void setDelay(unsigned int); 61 void setDisplayTime(unsigned int); 62 62 63 void Display(); 63 unsigned int get Rendertime();64 unsigned int getDisplayTime(); 64 65 unsigned int getWidth(); 65 66 unsigned int getHeight(); -
libcaca/trunk/cxx/cpptest.cpp
r899 r1002 68 68 } 69 69 70 kk->setD elay(20000);70 kk->setDisplayTime(20000); 71 71 72 72 while(!kk->getEvent(ev.CACA_EVENT_KEY_PRESS, &ev, 0)) {
Note: See TracChangeset
for help on using the changeset viewer.