diff options
author | Katarina Machalkova <kmachalkova@suse.cz> | 2011-03-23 16:30:49 +0100 |
---|---|---|
committer | Katarina Machalkova <kmachalkova@suse.cz> | 2011-03-23 16:30:49 +0100 |
commit | 8df89e17db6ddb7899e3e3293ec6e35b2ee382a6 (patch) | |
tree | 0959652b039e2511827bf3e600cf0f3eeb07c6fd /fpicker | |
parent | f5de249e2236e9963ccacec431a6904887060a36 (diff) |
Fixed build with --enable-kde4
(ULONG no longer exists)
Diffstat (limited to 'fpicker')
-rwxr-xr-x | fpicker/source/unx/kde4/KDE4FilePicker.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fpicker/source/unx/kde4/KDE4FilePicker.cxx b/fpicker/source/unx/kde4/KDE4FilePicker.cxx index 7e0cef885bd9..562a2d254f3d 100755 --- a/fpicker/source/unx/kde4/KDE4FilePicker.cxx +++ b/fpicker/source/unx/kde4/KDE4FilePicker.cxx @@ -199,7 +199,7 @@ sal_Int16 SAL_CALL KDE4FilePicker::execute() // simply release the SolarMutex here. The KDE file dialog does not // call back to the core, so this should be safe (and if it does, // SolarMutex will need to be re-acquired). - ULONG mutexrelease = 0; + long mutexrelease = 0; if( !qApp->clipboard()->property( "useEventLoopWhenWaiting" ).toBool()) mutexrelease = Application::ReleaseSolarMutex(); //block and wait for user input |