Changeset 1503:97836166605d in lemon-0.x
- Timestamp:
- 06/17/05 16:53:28 (19 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1984
- Location:
- gui
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
gui/all_include.h
r1501 r1503 25 25 26 26 #ifndef MAIN_PART 27 extern std:: string *property_strings;28 extern double *property_defaults;27 extern std::vector <std::string> property_strings; 28 extern std::vector <double> property_defaults; 29 29 #endif //MAIN_PART 30 30 -
gui/graph-displayer.cc
r1440 r1503 7 7 #define MAIN_PART 8 8 9 std:: string *property_strings;10 double *property_defaults;9 std::vector <std::string> property_strings; 10 std::vector <double> property_defaults; 11 11 12 12 … … 16 16 //initializing 17 17 18 property_strings=new std::string[PROPERTY_NUM];18 // property_strings=new std::string[PROPERTY_NUM]; 19 19 property_strings[WIDTH]="Width"; 20 20 property_strings[COLOR]="Color"; 21 21 property_strings[TEXT]="Text"; 22 22 23 property_defaults=new double[PROPERTY_NUM];23 //property_defaults=new double[PROPERTY_NUM]; 24 24 property_defaults[WIDTH]=10.0; 25 25 property_defaults[COLOR]=100;
Note: See TracChangeset
for help on using the changeset viewer.