##// END OF EJS Templates
Fix BC: QChart::setMinimumMargins and QChart::minimumMargins are in v1.1.0 so they have to stay.
Fix BC: QChart::setMinimumMargins and QChart::minimumMargins are in v1.1.0 so they have to stay.

File last commit:

r2155:efb312b94196
r2272:b1616762bd1e old_master
Show More
main.cpp
11 lines | 168 B | text/x-c | CppLexer
Marek Rosa
Added audio input demo
r2155 #include <QApplication>
#include "widget.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
Widget w;
w.show();
return a.exec();
}