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

(-)kdeprint/management/kmjobviewer.cpp~ (-1 / +2 lines)
Lines 116-122 Link Here
116
		conf->writeEntry( "Size", size() );
116
		conf->writeEntry( "Size", size() );
117
		emit viewerDestroyed(this);
117
		emit viewerDestroyed(this);
118
	}
118
	}
119
	removeFromManager();
119
	//removeFromManager();
120
}
120
}
121
121
122
void KMJobViewer::setPrinter(KMPrinter *p)
122
void KMJobViewer::setPrinter(KMPrinter *p)
Lines 332-337 Link Here
332
		// create status bar
332
		// create status bar
333
		KStatusBar	*statusbar = statusBar();
333
		KStatusBar	*statusbar = statusBar();
334
		m_stickybox = new TQCheckBox( i18n( "Keep window permanent" ), statusbar );
334
		m_stickybox = new TQCheckBox( i18n( "Keep window permanent" ), statusbar );
335
		m_stickybox->setChecked(true);
335
		statusbar->addWidget( m_stickybox, 1, false );
336
		statusbar->addWidget( m_stickybox, 1, false );
336
		statusbar->insertItem(" " + i18n("Max.: %1").arg(i18n("Unlimited"))+ " ", 0, 0, true);
337
		statusbar->insertItem(" " + i18n("Max.: %1").arg(i18n("Unlimited"))+ " ", 0, 0, true);
337
		statusbar->setItemFixed(0);
338
		statusbar->setItemFixed(0);

Return to bug 1362