Kaydet (Commit) 344c2dca authored tarafından Stephan Bergmann's avatar Stephan Bergmann

SwSrcEditWindow::Read/Write return value is never used anyway

Change-Id: I9b4064c1e08db9ac0bf48e1aa19e03b8bb495060
üst b46f93a3
......@@ -121,10 +121,8 @@ public:
void SetScrollBarRanges();
void InitScrollBars();
sal_uLong Read( SvStream& rInput)
{return pTextEngine->Read(rInput) ? 1 : 0;}
sal_uLong Write( SvStream& rOutput)
{return pTextEngine->Write(rOutput) ? 1 : 0;}
void Read(SvStream& rInput) { pTextEngine->Read(rInput); }
void Write(SvStream& rOutput) { pTextEngine->Write(rOutput); }
ExtTextView* GetTextView()
{return pTextView;}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment