mirror of
https://invent.kde.org/system/dolphin
synced 2024-11-05 18:47:12 +00:00
--warnings
svn path=/trunk/KDE/kdebase/libkonq/; revision=610980
This commit is contained in:
parent
979bcc5cc4
commit
f399158b65
2 changed files with 2 additions and 2 deletions
|
@ -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 );
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue