summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile2
-rw-r--r--txtrecv.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index d80c29a..0e1fc79 100644
--- a/Makefile
+++ b/Makefile
@@ -16,7 +16,7 @@ VERSION = $(shell grep 'static const char \*VERSION *=' $(PLUGIN).c | awk '{ pri
### The C++ compiler and options:
OPTLEVEL ?= 2
-CXXFLAGS = -O$(OPTLEVEL) -g -Wall -Woverloaded-virtual -fPIC -DPIC
+CXXFLAGS = -O$(OPTLEVEL) -g -Wall -Werror -Woverloaded-virtual -fPIC -DPIC
### The directory environment:
diff --git a/txtrecv.h b/txtrecv.h
index 78af3df..0d2614d 100644
--- a/txtrecv.h
+++ b/txtrecv.h
@@ -158,12 +158,12 @@ private:
cTelePage *TxtPage;
void SaveAndDeleteTxtPage();
bool storeTopText;
+ cRingTxtFrames buffer;
Storage *storage;
protected:
virtual void Activate(bool On);
virtual void Receive(uchar *Data, int Length);
virtual void Action();
- cRingTxtFrames buffer;
public:
cTxtReceiver(int TPid, tChannelID chan, bool storeTopText, Storage* storage);
virtual ~cTxtReceiver();