--warnings

svn path=/trunk/KDE/kdebase/libkonq/; revision=610980
This commit is contained in:
David Faure 2006-12-06 10:25:59 +00:00
parent 979bcc5cc4
commit f399158b65
2 changed files with 2 additions and 2 deletions

View file

@ -1720,7 +1720,7 @@ void KonqIconViewWidget::lineupIcons()
else {
// Repaint only repaintRegion...
QVector<QRect> rects = repaintRegion.rects();
for ( uint l = 0; l < rects.count(); l++ ) {
for ( int l = 0; l < rects.count(); l++ ) {
kDebug( 1203 ) << "Repainting (" << rects[l].x() << ","
<< rects[l].y() << ")\n";
repaintContents( rects[l], false );

View file

@ -60,7 +60,7 @@ public:
KonqUndoJob() : KIO::Job( true ) { KonqUndoManager::incRef(); };
virtual ~KonqUndoJob() { KonqUndoManager::decRef(); }
virtual void kill( bool q) { KonqUndoManager::self()->stopUndo( true ); KIO::Job::doKill(); }
virtual void kill( bool ) { KonqUndoManager::self()->stopUndo( true ); KIO::Job::doKill(); }
};
class KonqCommandRecorder::KonqCommandRecorderPrivate