summaryrefslogtreecommitdiff
path: root/shell/inc/internal/types.hxx
diff options
context:
space:
mode:
authorFridrich Štrba <fridrich.strba@bluewin.ch>2013-07-16 17:13:14 +0200
committerFridrich Štrba <fridrich.strba@bluewin.ch>2013-07-16 17:14:23 +0200
commit2a4c55f6d46aec5164ec2ec189ee39cf71c9308c (patch)
tree56add29addedc860b94f5a7cb163fce3216d8a9c /shell/inc/internal/types.hxx
parent9a9bf62c4cb7e1238bd383e1e4dd0582b26846f1 (diff)
bnc#829017 fix issue with negative seeks in win32 shell extension
Change-Id: Ia8072f78ad43281e406377922f50f8de53194f1b
Diffstat (limited to 'shell/inc/internal/types.hxx')
-rw-r--r--shell/inc/internal/types.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/inc/internal/types.hxx b/shell/inc/internal/types.hxx
index 15a03ca2f9e7..8fc66d9e5d20 100644
--- a/shell/inc/internal/types.hxx
+++ b/shell/inc/internal/types.hxx
@@ -78,7 +78,7 @@ public:
virtual ~StreamInterface() {}
virtual unsigned long sread (unsigned char* vuf, unsigned long size) = 0;
virtual long stell () = 0;
- virtual long sseek (unsigned long offset, int origin) = 0;
+ virtual long sseek (long offset, int origin) = 0;
};
#endif