##// END OF EJS Templates
Added createLegendMarkers to private series. This will replace old createLegendMarker method. Notice the s in new method name. PIMPL for QLegendMarker. Newlegend example updated a bit
Added createLegendMarkers to private series. This will replace old createLegendMarker method. Notice the s in new method name. PIMPL for QLegendMarker. Newlegend example updated a bit

File last commit:

r2132:45eed4d8b56a
r2163:5397c9eef2aa
Show More
main.cpp
11 lines | 174 B | text/x-c | CppLexer
ferdek
Simple UI testing added using mago(LDTP):...
r2132 #include <QtGui/QApplication>
#include "widget.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
Widget w;
w.show();
return a.exec();
}