Skip to content
Snippets Groups Projects
Commit 3818e4c3 authored by Lucio Zambon's avatar Lucio Zambon
Browse files

remove leds

parent e85459df
No related branches found
No related tags found
No related merge requests found
......@@ -256,7 +256,8 @@ hv::hv(QWidget *parent) : QDialog(parent)
vector<string> ramp;
ramps >> ramp;
for (unsigned i=0; i<ramp.size(); i++) {
ui.comboBox->insertItem(i, ramp[i].c_str(), QVariant(Qt::red));
// ui.comboBox->insertItem(i, ramp[i].c_str(), QVariant(Qt::red));
ui.comboBox->insertItem(i, ramp[i].c_str());
}
// ui.comboBox->setCurrentItem(i);
connect(ui.View_PushButton, SIGNAL(clicked()), this, SLOT(view_ramp()));
......
......@@ -75,6 +75,6 @@ int main( int argc, char ** argv ) {
/* register to window manager */
Display *disp = QX11Info::display();
Window root_win = (Window) mw.winId();
XSetCommand(disp, root_win, QApplication::argv(), QApplication::argc());
XSetCommand(disp, root_win, argv, argc);
return a.exec();
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment