diff -ruN clock-1.0.0/clock.c clock-1.0.0-mod//clock.c --- clock-1.0.0/clock.c 2012-04-02 20:26:32.000000000 +0200 +++ clock-1.0.0-mod//clock.c 2012-04-02 20:26:01.000000000 +0200 @@ -26,7 +26,6 @@ #include #include #include "enhancedbitmap.h" -#include "i18n.h" #include "images/clock.xpm" #include "images/tux.xpm" @@ -635,7 +634,6 @@ bool cPluginClock::Start(void) { // Start any background activities the plugin shall perform. - RegisterI18n(Phrases); return true; } diff -ruN clock-1.0.0/Makefile clock-1.0.0-mod//Makefile --- clock-1.0.0/Makefile 2012-04-02 20:26:32.000000000 +0200 +++ clock-1.0.0-mod//Makefile 2012-04-02 20:25:33.000000000 +0200 @@ -16,7 +16,7 @@ ### The C++ compiler and options: CXX ?= g++ -CXXFLAGS ?= -fPIC -g -O2 -Wall -Woverloaded-virtual +CXXFLAGS ?= -fPIC -g -O2 -Wall -Werror=overloaded-virtual ### The directory environment: @@ -48,7 +48,7 @@ ### The object files (add further files here): -OBJS = $(PLUGIN).o i18n.o enhancedbitmap.o +OBJS = $(PLUGIN).o enhancedbitmap.o ### Implicit rules: