Changeset 119
- Timestamp:
- Mar 17, 2008, 3:08:53 AM (14 years ago)
- Location:
- abuse/trunk/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
abuse/trunk/src/imlib/jwindow.cpp
r117 r119 377 377 } 378 378 379 jwindow::jwindow( )379 jwindow::jwindow(char const *name) 380 380 { 381 381 _x1 = left_border(); … … 392 392 screen = NULL; 393 393 next = NULL; 394 394 395 _name = NULL; 396 if(name) 397 _name = strcpy((char *)jmalloc(strlen(name) + 1, 398 "jwindow::window name"), name); 395 399 wm->add_window(this); 396 400 } -
abuse/trunk/src/imlib/jwindow.hpp
r117 r119 105 105 void *local_info; // pointer to info block for local system (may support windows) 106 106 107 jwindow( );107 jwindow(char const *name = NULL); 108 108 jwindow(int X, int Y, int L, int H, ifield *f, char const *name = NULL); 109 109 ~jwindow(); -
abuse/trunk/src/ui/volumewindow.cpp
r118 r119 14 14 #include "gui.hpp" // ico_button 15 15 16 VolumeWindow::VolumeWindow() 16 VolumeWindow::VolumeWindow() : jwindow("Volume") 17 17 { 18 18 char const *ff = "art/frame.spe";
Note: See TracChangeset
for help on using the changeset viewer.