all repos — fluxbox @ 0f85ade9bee91701533137deaea291ad023fd824

custom fork of the fluxbox windowmanager

Mark FbTk::StringConvertor as NotCopyable
Pavel Labath pavelo@centrum.sk
commit

0f85ade9bee91701533137deaea291ad023fd824

parent

7bca844581a38fbf46f8a3761cbd5e31bd9005d6

1 files changed, 3 insertions(+), 1 deletions(-)

jump to
M src/FbTk/FbString.hhsrc/FbTk/FbString.hh

@@ -30,6 +30,8 @@ #ifdef HAVE_ICONV

#include <iconv.h> #endif // HAVE_ICONV +#include "NotCopyable.hh" + namespace FbTk { // Use this type for things converted to our internal encoding (UTF-8)

@@ -75,7 +77,7 @@ bool haveUTF8();

} // namespace FbStringUtil -class StringConvertor { +class StringConvertor: private NotCopyable { public: enum EncodingTarget { ToFbString, ToLocaleStr };