diff options
author | Noel Grandin <noel@peralex.com> | 2015-01-07 09:28:42 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-01-07 11:20:44 +0200 |
commit | 7f8f277b94704a289fbbd1b836e4e5d66311580d (patch) | |
tree | 2400b7306a0a2a3ea63aee2e5bfc336b52102635 /dbaccess/qa | |
parent | 8db77209e0755d21d9efc34f70a2978d1df5d2c6 (diff) |
fdo#84938: convert STREAM_ #defines to 'enum class'
Change-Id: Ibbf14c7e9a5c1883c1311d4c86f948f74f8e473e
Diffstat (limited to 'dbaccess/qa')
-rw-r--r-- | dbaccess/qa/unit/embeddeddb_performancetest.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dbaccess/qa/unit/embeddeddb_performancetest.cxx b/dbaccess/qa/unit/embeddeddb_performancetest.cxx index 5c0a6b6a7bc1..1eebc2206f22 100644 --- a/dbaccess/qa/unit/embeddeddb_performancetest.cxx +++ b/dbaccess/qa/unit/embeddeddb_performancetest.cxx @@ -130,7 +130,7 @@ SvFileStream* EmbeddedDBPerformanceTest::getWordListStream() OUString wlPath; createFileURL("wordlist", wlPath); - SvFileStream *pFile(new SvFileStream(wlPath, STREAM_READ)); + SvFileStream *pFile(new SvFileStream(wlPath, StreamMode::READ)); if (!pFile) { |