Tscope5
tscope5-0.6/00features.md
1 # Tscope5 list of bugs that are actually features
2 
3 [TOC]
4 
5 # Executing C++ programs {#cpp}
6 
7 
8 When executing a .cpp program you may get the following error:
9 
10  Symbol not found: __al_mangled_main
11 
12 In C++ the default arguments to your main function can't be left out.
13 
14  int main(int argc, char **argv)
15 
16 instead of
17 
18  int main()
19 
20 
21 # Setting the display position {#disppos}
22 
23 
24 The display is not opened at the position that I specified.
25 
26 The display position is dependent on the display size.
27 Set the display size first, then set the display position:
28 
29  ts5_set_display_size(200.0, 200.0);
30  ts5_set_display_position(100.0, 100.0);
31 
32