diff options
Diffstat (limited to 'konqueror/konq_mainwindow.cpp')
-rw-r--r-- | konqueror/konq_mainwindow.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/konqueror/konq_mainwindow.cpp b/konqueror/konq_mainwindow.cpp index f81eaadb2..3454f0bf1 100644 --- a/konqueror/konq_mainwindow.cpp +++ b/konqueror/konq_mainwindow.cpp @@ -3682,9 +3682,9 @@ void KonqMainWindow::slotUpdateFullScreen( bool set ) // happens only with the hackish non-_NET_WM_STATE_FULLSCREEN way setWFlags( WDestructiveClose ); // Qt bug (see below) - setAcceptDrops( FALSE ); + setAcceptDrops( false ); topData()->dnd = 0; - setAcceptDrops( TRUE ); + setAcceptDrops( true ); } else { @@ -3710,9 +3710,9 @@ void KonqMainWindow::slotUpdateFullScreen( bool set ) // Qt bug, the flags aren't restored. They know about it. setWFlags( WType_TopLevel | WDestructiveClose ); // Other Qt bug - setAcceptDrops( FALSE ); + setAcceptDrops( false ); topData()->dnd = 0; - setAcceptDrops( TRUE ); + setAcceptDrops( true ); } } |