Advertisement
Guest User

Untitled

a guest
Jun 21st, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  switch(architect) {
  2.         case "i386":
  3.             ui->arch_i386->setChecked(true);
  4.             ui->arch_i386->setEnabled(false);
  5.         break;
  6.         case "amd64":
  7.             ui->arch_amd64->setChecked(true);
  8.             ui->arch_amd64->setEnabled(false);
  9.         break;
  10.         case "arm":
  11.             ui->arch_arm->setChecked(true);
  12.             ui->arch_arm->setEnabled(false);
  13.         break;
  14.         case "arm64":
  15.             ui->arch_arm64->setChecked(true);
  16.             ui->arch_arm64->setEnabled(false);
  17.         break;
  18.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement