Changeset 348 for cpp/frams/canvas
- Timestamp:
- 04/09/15 23:51:28 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/frams/canvas/neurodiagram.cpp
r286 r348 271 271 if (size.y > 4 * textHeight()) 272 272 { 273 const char* t = label ;273 const char* t = label.c_str(); 274 274 setColor(ColorDefs::neurosymbol); 275 275 drawAlignedText(size.x / 2, size.y - textHeight(), 0, t); … … 445 445 NeuroProbe::NeuroProbe(NeuroSymbol* ns) 446 446 :DCanvasWindow(DCanvasWindow::Title + DCanvasWindow::Border + DCanvasWindow::Close + DCanvasWindow::Size, 447 (const char*)ns->getLabel(), &neurochart, &neurochart)447 ns->getLabel().c_str(), &neurochart, &neurochart) 448 448 { 449 449 holdismine = 0;
Note: See TracChangeset
for help on using the changeset viewer.