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

(-)kdelibs-3.5.13.2/tdeprint/management/kmjobviewer.cpp (+1 lines)
Lines 193-198 Link Here
193
{
193
{
194
	if (m_prname == i18n("All Printers"))
194
	if (m_prname == i18n("All Printers"))
195
	{
195
	{
196
		loadPrinters();
196
		TQPtrListIterator<KMPrinter>	it(m_printers);
197
		TQPtrListIterator<KMPrinter>	it(m_printers);
197
		for (; it.current(); ++it)
198
		for (; it.current(); ++it)
198
			m_manager->removePrinter(it.current()->printerName(), (KMJobManager::JobType)m_type);
199
			m_manager->removePrinter(it.current()->printerName(), (KMJobManager::JobType)m_type);
(-)kdelibs-3.5.13.2/tdeprint/management/kmjobviewer.cpp~ (+14 lines)
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
336
		TDEConfig *conf = KMFactory::self()->printConfig();
337
		conf->setGroup("Jobs");
338
		m_stickybox->setChecked(conf->readBoolEntry("KeepWindow",true));
339
		connect(m_stickybox, TQT_SIGNAL(toggled(bool)), TQT_SLOT(slotKeepWindowChange(bool)));
340
341
		//m_stickybox->setChecked();
335
		statusbar->addWidget( m_stickybox, 1, false );
342
		statusbar->addWidget( m_stickybox, 1, false );
336
		statusbar->insertItem(" " + i18n("Max.: %1").arg(i18n("Unlimited"))+ " ", 0, 0, true);
343
		statusbar->insertItem(" " + i18n("Max.: %1").arg(i18n("Unlimited"))+ " ", 0, 0, true);
337
		statusbar->setItemFixed(0);
344
		statusbar->setItemFixed(0);
Lines 365-370 Link Here
365
	}
372
	}
366
}
373
}
367
374
375
void KMJobViewer::slotKeepWindowChange( bool val )
376
{
377
    TDEConfig *conf = KMFactory::self()->printConfig();
378
    conf->setGroup("Jobs");
379
    conf->writeEntry("KeepWindow",val);
380
}
381
368
void KMJobViewer::slotShowMoveMenu()
382
void KMJobViewer::slotShowMoveMenu()
369
{
383
{
370
	TQPopupMenu	*menu = static_cast<TDEActionMenu*>(actionCollection()->action("job_move"))->popupMenu();
384
	TQPopupMenu	*menu = static_cast<TDEActionMenu*>(actionCollection()->action("job_move"))->popupMenu();
(-)kdelibs-3.5.13.2/tdeprint/management/kmjobviewer.h~ (+1 lines)
Lines 86-91 Link Here
86
	void slotUserChanged();
86
	void slotUserChanged();
87
	void slotConfigure();
87
	void slotConfigure();
88
	void slotDropped( TQDropEvent*, TQListViewItem* );
88
	void slotDropped( TQDropEvent*, TQListViewItem* );
89
	void slotKeepWindowChange(bool);
89
90
90
protected:
91
protected:
91
	void init();
92
	void init();

Return to bug 1362