LINUX.ORG.RU

История изменений

Исправление rumgot, (текущая версия) :


QString new_Label = "(((555";
for (int d = 0; d < new_Label.length(); ++d) {
        if ( new_Label[d] == '(' ) {
            new_Label[d] = ')';
        }
}
textEdit->setText(new_Label); // "")))555""

Исправление rumgot, :


QString new_Label = "(((555";
for (int d = 0; d < new_Label.length(); ++d) {

         if ( new_Label[d] == '(' ) {
             new_Label[d] = ')';
         }
}
textEdit->setText(new_Label); // "")))555""

Исправление rumgot, :


QString new_Label;
for (int d = 0; d < new_Label.length(); ++d) {

         if ( new_Label[d] == '(' ) {
             new_Label[d] = ')';
         }
}
textEdit->setText(new_Label);

Исправление rumgot, :


QString new_Label;
for (int d = 0; d < new_Label.length(); ++d) {

         if ( new_Label[d] == '(' ) {
             new_Label[d] = ')';
             textEdit->setText(new_Label);
         }
}

Исходная версия rumgot, :


QString new_Label;
int b = 20;
int d = 0;

for (int d = 0; d < new_Label.length(); ++d) {

         if ( new_Label[d] == '(' ) {
             new_Label[d] = ')';
             textEdit->setText(new_Label);
         }
}