diff options
author | Noel Grandin <noel@peralex.com> | 2015-01-07 11:47:47 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-01-07 11:48:55 +0200 |
commit | 006e59a25e6396b05cf6da39c94a3a7a5c48eeb3 (patch) | |
tree | b62cfc8cefdee7912fa78062de612d92fdd6737f /sot/workben | |
parent | 01c7e2c246e231d70bb7c1c9b5ad7fd5e4614951 (diff) |
fix windows build
and a handful of other currently uncompiled spots,
after my commit 7f8f277b94704a289fbbd1b836e4e5d66311580d
"fdo#84938: convert STREAM_ #defines to 'enum class'"
Change-Id: I550f6fb850e1d71a6f08767eeb222a18071b89d5
Diffstat (limited to 'sot/workben')
-rw-r--r-- | sot/workben/testsot.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sot/workben/testsot.cxx b/sot/workben/testsot.cxx index a674b4ee2ef6..1d6185bbe867 100644 --- a/sot/workben/testsot.cxx +++ b/sot/workben/testsot.cxx @@ -31,7 +31,7 @@ int main (int argc, sal_Char **argv) SotStorageRef xStor = new SotStorage( "c:\\temp\\video.sdb" ); SotStorageRef x2Stor = xStor->OpenSotStorage( "1117" ); - SotStorageStreamRef xStm = x2Stor->OpenSotStream( "Genres", STREAM_STD_READWRITE | STREAM_TRUNC); + SotStorageStreamRef xStm = x2Stor->OpenSotStream( "Genres", STREAM_STD_READWRITE | StreamMode::TRUNC); //BYTE szData[100]; //xStm->Write( szData, 100 ); UINT32 nSize = xStm->GetSize(); |