Changeset 76760 in vbox
- Timestamp:
- Jan 10, 2019 6:07:47 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 128078
- Location:
- trunk/src/VBox/Main
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/EBMLWriter.h
r76562 r76760 23 23 24 24 #include <iprt/file.h> 25 #include <VBox/com/string.h> /* For Utf8Str. */25 #include <VBox/com/string.h> 26 26 27 using namespace com;28 29 #include <list>30 #include <map>31 #include <queue>32 27 #include <stack> 33 28 34 #include <math.h> /* For lround.h. */35 36 #include <iprt/asm.h>37 #include <iprt/buildconfig.h>38 29 #include <iprt/cdefs.h> 39 #include <iprt/critsect.h>40 #include <iprt/err.h>41 30 #include <iprt/file.h> 42 #include <iprt/rand.h>43 #include <iprt/string.h>44 45 #include <VBox/log.h>46 #include <VBox/version.h>47 31 48 32 /** No flags set. */ … … 70 54 RTFILE m_hFile; 71 55 /** The file's name (path). */ 72 Utf8Strm_strFile;56 com::Utf8Str m_strFile; 73 57 /** Flags. */ 74 58 uint32_t m_fFlags; … … 91 75 92 76 /** Returns the file name. */ 93 const Utf8Str& getFileName(void) { return m_strFile; }77 const com::Utf8Str& getFileName(void) { return m_strFile; } 94 78 95 79 /** Returns file size. */ -
trunk/src/VBox/Main/include/Recording.h
r76562 r76760 25 25 #include <VBox/com/string.h> 26 26 #include <VBox/com/VirtualBox.h> 27 #include <VBox/err.h>28 27 #include <VBox/settings.h> 29 28 -
trunk/src/VBox/Main/include/RecordingStream.h
r76562 r76760 27 27 #include <iprt/critsect.h> 28 28 29 #include <VBox/com/array.h>30 #include <VBox/com/VirtualBox.h>31 #include <VBox/err.h>32 29 #include <VBox/settings.h> 33 30 -
trunk/src/VBox/Main/include/WebMWriter.h
r76562 r76760 23 23 24 24 #include "EBMLWriter.h" 25 26 #include <queue> 27 #include <map> 28 #include <list> 29 30 #include <iprt/rand.h> 25 31 26 32 #ifdef VBOX_WITH_LIBVPX … … 87 93 #endif /* VBOX_WITH_LIBOPUS */ 88 94 89 using namespace com;90 95 91 96 class WebMWriter : public EBMLWriter … … 540 545 int WriteBlock(uint8_t uTrack, const void *pvData, size_t cbData); 541 546 542 const Utf8Str& GetFileName(void);547 const com::Utf8Str& GetFileName(void); 543 548 544 549 uint64_t GetFileSize(void); -
trunk/src/VBox/Main/src-client/KeyboardImpl.cpp
r76553 r76760 26 26 #include <VBox/com/array.h> 27 27 #include <VBox/vmm/pdmdrv.h> 28 29 #include <iprt/asm.h> 28 #include <VBox/err.h> 29 30 30 #include <iprt/cpp/utils.h> 31 31 32 32 33 // defines -
trunk/src/VBox/Main/src-client/MouseImpl.cpp
r76553 r76760 26 26 #include "MousePointerShapeWrap.h" 27 27 28 #include "AutoCaller.h"29 30 28 #include <VBox/vmm/pdmdrv.h> 31 29 #include <VBox/VMMDev.h> 32 33 #include <iprt/asm.h> 30 #include <VBox/err.h> 31 34 32 35 33 class ATL_NO_VTABLE MousePointerShape: -
trunk/src/VBox/Main/src-client/PCIRawDevImpl.cpp
r76553 r76760 25 25 // generated header for events 26 26 #include "VBoxEvents.h" 27 28 #include <VBox/err.h> 29 27 30 28 31 /** -
trunk/src/VBox/Main/src-client/UsbCardReader.cpp
r76553 r76760 29 29 #include <VBox/vmm/pdmdrv.h> 30 30 #include <VBox/vmm/pdmcardreaderinfs.h> 31 #include <VBox/err.h> 31 32 32 33 #include <iprt/req.h> -
trunk/src/VBox/Main/src-client/UsbWebcamInterface.cpp
r76553 r76760 26 26 27 27 #include <VBox/vmm/pdmwebcaminfs.h> 28 #include <VBox/err.h> 28 29 29 30 -
trunk/src/VBox/Main/src-client/WebMWriter.cpp
r76553 r76760 25 25 #include "LoggingNew.h" 26 26 27 #include <list>28 #include <map>29 #include <queue>30 #include <stack>31 32 #include <math.h> /* For lround.h. */33 34 #include <iprt/asm.h>35 #include <iprt/buildconfig.h>36 27 #include <iprt/cdefs.h> 37 28 #include <iprt/critsect.h> 38 29 #include <iprt/errcore.h> 39 30 #include <iprt/file.h> 40 #include <iprt/rand.h> 41 #include <iprt/string.h> 31 #include <iprt/buildconfig.h> 42 32 43 33 #include <VBox/log.h> … … 162 152 Assert(CurSeg.mapTracks.size() == 0); 163 153 164 Utf8Str strFileName = getFileName().c_str();154 com::Utf8Str strFileName = getFileName().c_str(); 165 155 166 156 close(); … … 308 298 * @returns File name as UTF-8 string. 309 299 */ 310 const Utf8Str& WebMWriter::GetFileName(void)300 const com::Utf8Str& WebMWriter::GetFileName(void) 311 301 { 312 302 return getFileName();
Note:
See TracChangeset
for help on using the changeset viewer.