Changeset 63327 in vbox
- Timestamp:
- Aug 11, 2016 11:32:10 AM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 109961
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/runtime
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIDnDHandler.cpp
r59853 r63327 31 31 #ifndef VBOX_WITH_XPCOM 32 32 # include "VirtualBox.h" 33 #else /* !VBOX_WITH_XPCOM */33 #else 34 34 # include "VirtualBox_XPCOM.h" 35 #endif /* VBOX_WITH_XPCOM */35 #endif 36 36 37 37 /* GUI includes: */ … … 349 349 Qt::DropAction defAction, Qt::DropActions actions) 350 350 { 351 RT_NOREF(defAction); 351 352 int rc = VINF_SUCCESS; 352 353 -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIDnDMIMEData.cpp
r62493 r63327 65 65 bool UIDnDMIMEData::hasFormat(const QString &strMIMEType) const 66 66 { 67 RT_NOREF(strMIMEType); 68 67 69 bool fRc; 68 70 #ifdef RT_OS_DARWIN … … 205 207 int UIDnDMIMEData::getDataAsVariant(const QVector<uint8_t> &vecData, 206 208 const QString &strMIMEType, 207 QVariant::Type vaType, 208 QVariant &vaData) 209 { 209 QVariant::Type vaType, 210 QVariant &vaData) 211 { 212 RT_NOREF(strMIMEType); 210 213 LogFlowFunc(("vecDataSize=%d, strMIMEType=%s vaType=%s\n", 211 214 vecData.size(), qPrintable(strMIMEType), QVariant::typeToName(vaType)));
Note:
See TracChangeset
for help on using the changeset viewer.