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 1361
Collapse All | Expand All

(-)tdebase/kcontrol/konqhtml/htmlopts.cpp (-1 / +10 lines)
Lines 64-70 Link Here
64
     // Form completion
64
     // Form completion
65
65
66
    TQVGroupBox *bgForm = new TQVGroupBox( i18n("Form Com&pletion"), this );
66
    TQVGroupBox *bgForm = new TQVGroupBox( i18n("Form Com&pletion"), this );
67
    m_pFormCompletionCheckBox = new TQCheckBox(i18n( "Enable completion of &forms" ), bgForm);
67
    m_pFormCompletionCheckBox = new TQCheckBox(i18n( "Enable com&pletion of forms" ), bgForm);
68
    TQWhatsThis::add( m_pFormCompletionCheckBox, i18n( "If this box is checked, Konqueror will remember"
68
    TQWhatsThis::add( m_pFormCompletionCheckBox, i18n( "If this box is checked, Konqueror will remember"
69
                                                        " the data you enter in web forms and suggest it in similar fields for all forms." ) );
69
                                                        " the data you enter in web forms and suggest it in similar fields for all forms." ) );
70
    connect(m_pFormCompletionCheckBox, TQT_SIGNAL(clicked()), TQT_SLOT(slotChanged()));
70
    connect(m_pFormCompletionCheckBox, TQT_SIGNAL(clicked()), TQT_SLOT(slotChanged()));
Lines 136-141 Link Here
136
    lay->addMultiCellWidget( m_pAutoLoadImagesCheckBox, row, row, 0, 1 );
136
    lay->addMultiCellWidget( m_pAutoLoadImagesCheckBox, row, row, 0, 1 );
137
    row++;
137
    row++;
138
138
139
    m_pEnableFavIconCheckBox = new TQCheckBox( i18n( "Enable &favicons"), this );
140
    TQWhatsThis::add( m_pEnableFavIconCheckBox, i18n( "If this box is checked, Konqueror will automatically load and display favicon images that are associated with a web page. These images appear in the Location bar. Otherwise a generic image will appear." ) );
141
    connect(m_pEnableFavIconCheckBox, TQT_SIGNAL(clicked()), TQT_SLOT(slotChanged()));
142
    lay->addMultiCellWidget( m_pEnableFavIconCheckBox, row, row, 0, 1 );
143
    row++;
144
139
    m_pUnfinishedImageFrameCheckBox = new TQCheckBox( i18n( "Dra&w frame around not completely loaded images"), this );
145
    m_pUnfinishedImageFrameCheckBox = new TQCheckBox( i18n( "Dra&w frame around not completely loaded images"), this );
140
    TQWhatsThis::add( m_pUnfinishedImageFrameCheckBox, i18n( "If this box is checked, Konqueror will draw a frame as placeholder around not yet fully loaded images that are embedded in a web page.<br>Especially if you have a slow network connection, you will probably want to check this box to enhance your browsing experience." ) );
146
    TQWhatsThis::add( m_pUnfinishedImageFrameCheckBox, i18n( "If this box is checked, Konqueror will draw a frame as placeholder around not yet fully loaded images that are embedded in a web page.<br>Especially if you have a slow network connection, you will probably want to check this box to enhance your browsing experience." ) );
141
    connect(m_pUnfinishedImageFrameCheckBox, TQT_SIGNAL(clicked()), TQT_SLOT(slotChanged()));
147
    connect(m_pUnfinishedImageFrameCheckBox, TQT_SIGNAL(clicked()), TQT_SLOT(slotChanged()));
Lines 248-253 Link Here
248
    bool underlineLinks = READ_BOOL("UnderlineLinks", DEFAULT_UNDERLINELINKS);
254
    bool underlineLinks = READ_BOOL("UnderlineLinks", DEFAULT_UNDERLINELINKS);
249
    bool hoverLinks = READ_BOOL("HoverLinks", true);
255
    bool hoverLinks = READ_BOOL("HoverLinks", true);
250
    bool bAutoLoadImages = READ_BOOL( "AutoLoadImages", true );
256
    bool bAutoLoadImages = READ_BOOL( "AutoLoadImages", true );
257
    bool bEnableFavIcon = READ_BOOL( "EnableFavicon", true );
251
    bool bUnfinishedImageFrame = READ_BOOL( "UnfinishedImageFrame", true );
258
    bool bUnfinishedImageFrame = READ_BOOL( "UnfinishedImageFrame", true );
252
    TQString strAnimations = READ_ENTRY( "ShowAnimations" ).lower();
259
    TQString strAnimations = READ_ENTRY( "ShowAnimations" ).lower();
253
260
Lines 256-261 Link Here
256
    // *** apply to GUI ***
263
    // *** apply to GUI ***
257
    m_cbCursor->setChecked( changeCursor );
264
    m_cbCursor->setChecked( changeCursor );
258
    m_pAutoLoadImagesCheckBox->setChecked( bAutoLoadImages );
265
    m_pAutoLoadImagesCheckBox->setChecked( bAutoLoadImages );
266
    m_pEnableFavIconCheckBox->setChecked( bEnableFavIcon );
259
    m_pUnfinishedImageFrameCheckBox->setChecked( bUnfinishedImageFrame );
267
    m_pUnfinishedImageFrameCheckBox->setChecked( bUnfinishedImageFrame );
260
    m_pAutoRedirectCheckBox->setChecked( bAutoRedirect );
268
    m_pAutoRedirectCheckBox->setChecked( bAutoRedirect );
261
    m_pOpenMiddleClick->setChecked( bOpenMiddleClick );
269
    m_pOpenMiddleClick->setChecked( bOpenMiddleClick );
Lines 325-330 Link Here
325
    m_pConfig->setGroup( "HTML Settings" );
333
    m_pConfig->setGroup( "HTML Settings" );
326
    m_pConfig->writeEntry( "ChangeCursor", m_cbCursor->isChecked() );
334
    m_pConfig->writeEntry( "ChangeCursor", m_cbCursor->isChecked() );
327
    m_pConfig->writeEntry( "AutoLoadImages", m_pAutoLoadImagesCheckBox->isChecked() );
335
    m_pConfig->writeEntry( "AutoLoadImages", m_pAutoLoadImagesCheckBox->isChecked() );
336
    m_pConfig->writeEntry( "EnableFavicon", m_pEnableFavIconCheckBox->isChecked() );
328
    m_pConfig->writeEntry( "UnfinishedImageFrame", m_pUnfinishedImageFrameCheckBox->isChecked() );
337
    m_pConfig->writeEntry( "UnfinishedImageFrame", m_pUnfinishedImageFrameCheckBox->isChecked() );
329
    m_pConfig->writeEntry( "AutoDelayedActions", m_pAutoRedirectCheckBox->isChecked() );
338
    m_pConfig->writeEntry( "AutoDelayedActions", m_pAutoRedirectCheckBox->isChecked() );
330
    switch(m_pUnderlineCombo->currentItem())
339
    switch(m_pUnderlineCombo->currentItem())
(-)tdebase/kcontrol/konqhtml/htmlopts.h (+1 lines)
Lines 55-60 Link Here
55
    TQComboBox* m_pSmoothScrollingCombo;
55
    TQComboBox* m_pSmoothScrollingCombo;
56
    TQCheckBox* m_cbCursor;
56
    TQCheckBox* m_cbCursor;
57
    TQCheckBox* m_pAutoLoadImagesCheckBox;
57
    TQCheckBox* m_pAutoLoadImagesCheckBox;
58
    TQCheckBox* m_pEnableFavIconCheckBox;
58
    TQCheckBox* m_pUnfinishedImageFrameCheckBox;
59
    TQCheckBox* m_pUnfinishedImageFrameCheckBox;
59
    TQCheckBox* m_pAutoRedirectCheckBox;
60
    TQCheckBox* m_pAutoRedirectCheckBox;
60
    TQCheckBox* m_pOpenMiddleClick;
61
    TQCheckBox* m_pOpenMiddleClick;

Return to bug 1361