diff options
Diffstat (limited to 'src/VBox/Main/src-client/GuestDnDImpl.cpp')
-rw-r--r-- | src/VBox/Main/src-client/GuestDnDImpl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/VBox/Main/src-client/GuestDnDImpl.cpp b/src/VBox/Main/src-client/GuestDnDImpl.cpp index 2e07a950..6732e163 100644 --- a/src/VBox/Main/src-client/GuestDnDImpl.cpp +++ b/src/VBox/Main/src-client/GuestDnDImpl.cpp @@ -440,7 +440,7 @@ void GuestDnDPrivate::toFormatSafeArray(const RTCString &strFormats, ComSafeArra { RTCList<RTCString> list = strFormats.split("\r\n"); size_t i = 0; - while(i < list.size()) + while (i < list.size()) { /* Only keep allowed format types. */ if (!m_sstrAllowedMimeTypes.contains(list.at(i))) |