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/tdeio/tcpslavebase.cpp.orig (-1 / +11 lines)
Lines 1095-1101 Link Here
1095
      TDEConfig *config = new TDEConfig("tdeioslaverc");
1095
      TDEConfig *config = new TDEConfig("tdeioslaverc");
1096
      config->setGroup("Notification Messages");
1096
      config->setGroup("Notification Messages");
1097
1097
1098
      if (!config->readBoolEntry("WarnOnEnterSSLMode", true)) {
1098
      bool dialogBoxStatus = false;
1099
      if( config->hasKey("WarnOnEnterSSLMode") ) {
1100
          dialogBoxStatus = true;
1101
      }
1102
      bool keyStatus = config->readBoolEntry("WarnOnEnterSSLMode", true);
1103
      dialogBoxStatus = dialogBoxStatus && keyStatus;
1104
      if (!keyStatus) {
1099
          config->deleteEntry("WarnOnEnterSSLMode");
1105
          config->deleteEntry("WarnOnEnterSSLMode");
1100
          config->sync();
1106
          config->sync();
1101
          d->kssl->settings()->setWarnOnEnter(false);
1107
          d->kssl->settings()->setWarnOnEnter(false);
Lines 1122-1127 Link Here
1122
                       "showSSLInfoDialog(TQString,TDEIO::MetaData,int)",
1128
                       "showSSLInfoDialog(TQString,TDEIO::MetaData,int)",
1123
                       data, ignoretype, ignore);
1129
                       data, ignoretype, ignore);
1124
      }
1130
      }
1131
      //Laurent: If we disable message box we can't click on KMessageBox::No
1132
      if(dialogBoxStatus) {
1133
          break;
1134
      }
1125
      } while (result != KMessageBox::No);
1135
      } while (result != KMessageBox::No);
1126
   }
1136
   }
1127
1137

Return to bug 1499