##// END OF EJS Templates
review fixes. countCategories() -> categoryCount(). countSets -> barsetCount()
review fixes. countCategories() -> categoryCount(). countSets -> barsetCount()

File last commit:

r205:a2592bf5395a
r366:8a2edd028805
Show More
main.cpp
11 lines | 174 B | text/x-c | CppLexer
#include <QtGui/QApplication>
#include "widget.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
Widget w;
w.show();
return a.exec();
}