By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 1499
Collapse All | Expand All

(-)tdeio/tdefile/kpropertiesdialog.cpp.orig (+8 lines)
Lines 2081-2086 Link Here
2081
  }
2081
  }
2082
2082
2083
  // Draw Checkboxes
2083
  // Draw Checkboxes
2084
  bool allDisable = true;
2084
  TQCheckBox *cba[3][4];
2085
  TQCheckBox *cba[3][4];
2085
  for (int row = 0; row < 3 ; ++row) {
2086
  for (int row = 0; row < 3 ; ++row) {
2086
    for (int col = 0; col < 4; ++col) {
2087
    for (int col = 0; col < 4; ++col) {
Lines 2091-2096 Link Here
2091
      if ( aPartialPermissions & fperm[row][col] )
2092
      if ( aPartialPermissions & fperm[row][col] )
2092
      {
2093
      {
2093
        cb->setTristate();
2094
        cb->setTristate();
2095
        if( d->canChangePermissions ) {
2096
          allDisable = false;
2097
        }
2094
        cb->setNoChange();
2098
        cb->setNoChange();
2095
      }
2099
      }
2096
      else if (d->cbRecursive && d->cbRecursive->isChecked())
2100
      else if (d->cbRecursive && d->cbRecursive->isChecked())
Lines 2152-2157 Link Here
2152
2156
2153
  }
2157
  }
2154
#endif
2158
#endif
2159
  if ( allDisable ) {
2160
    dlg.enableButtonOK( false );
2161
  }
2162
2155
  if (dlg.exec() != KDialogBase::Accepted)
2163
  if (dlg.exec() != KDialogBase::Accepted)
2156
    return;
2164
    return;
2157
2165

Return to bug 1499