Changeset 59779 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Feb 22, 2016 4:45:57 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIDnDHandler.cpp
r59334 r59779 5 5 6 6 /* 7 * Copyright (C) 2011-201 5Oracle Corporation7 * Copyright (C) 2011-2016 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 63 63 #include <VBox/log.h> 64 64 65 #if 065 #if 1 66 66 # ifdef DEBUG 67 67 # include <QTextStream> 68 68 /** Enable this to log debug output of a Qt debug build to a file defined by DEBUG_DND_QT_LOGFILE. */ 69 69 # define DEBUG_DND_QT 70 /** File to log Qt debug output to. */ 71 # define DEBUG_DND_QT_LOGFILE "/var/tmp/qt.log" 70 # ifdef RT_OS_WINDOWS 71 # define DEBUG_DND_QT_LOGFILE "c:\\temp\\VBoxQt.log" 72 # else 73 # define DEBUG_DND_QT_LOGFILE "/var/tmp/vboxqt.log" 74 # endif 72 75 # endif /* DEBUG */ 73 76 #endif … … 121 124 } 122 125 123 msgCenter().cannotDropDataToGuest(m_dndTarget, m_pParent);124 126 return Qt::IgnoreAction; 125 127 } … … 146 148 return toQtDnDAction(result); 147 149 148 msgCenter().cannotDropDataToGuest(m_dndTarget, m_pParent);149 150 return Qt::IgnoreAction; 150 151 }
Note:
See TracChangeset
for help on using the changeset viewer.