summaryrefslogtreecommitdiff
path: root/writerperfect
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-02-14 09:27:42 +0000
committerCaolán McNamara <caolanm@redhat.com>2011-02-14 13:24:08 +0000
commit6f2edc72a15f70b925dbb890daf16a24d53f0727 (patch)
tree6b8a79df0f436aa391af1272e7064303fc97769a /writerperfect
parentaef4b3b9fbf94acddbc473a407c63deb29b97bfc (diff)
add mode lines to new files
Diffstat (limited to 'writerperfect')
-rw-r--r--writerperfect/source/filter/DocumentHandlerInterface.hxx3
-rw-r--r--writerperfect/source/filter/GraphicsStyle.cxx3
-rw-r--r--writerperfect/source/filter/GraphicsStyle.hxx3
-rw-r--r--writerperfect/source/filter/InternalHandler.cxx3
-rw-r--r--writerperfect/source/filter/InternalHandler.hxx3
-rw-r--r--writerperfect/source/filter/OdgExporter.cxx3
-rw-r--r--writerperfect/source/filter/OdgExporter.hxx3
7 files changed, 21 insertions, 0 deletions
diff --git a/writerperfect/source/filter/DocumentHandlerInterface.hxx b/writerperfect/source/filter/DocumentHandlerInterface.hxx
index 73ced7d39650..0e9ee56349e6 100644
--- a/writerperfect/source/filter/DocumentHandlerInterface.hxx
+++ b/writerperfect/source/filter/DocumentHandlerInterface.hxx
@@ -1,3 +1,4 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* Copyright (C) 2004 William Lachance (wlach@interlog.com)
* Copyright (C) 2004 Net Integration Technologies (http://www.net-itech.com)
@@ -43,3 +44,5 @@ public:
virtual void characters(const WPXString &sCharacters) = 0;
};
#endif
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/writerperfect/source/filter/GraphicsStyle.cxx b/writerperfect/source/filter/GraphicsStyle.cxx
index 4067f55baf46..abca6a851136 100644
--- a/writerperfect/source/filter/GraphicsStyle.cxx
+++ b/writerperfect/source/filter/GraphicsStyle.cxx
@@ -1,3 +1,4 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/* GraphicsStyle:
*
* Copyright (C) 2007 Fridrich Strba .strba@bluewin.ch)
@@ -38,3 +39,5 @@ GraphicsStyle::~GraphicsStyle()
void GraphicsStyle::write(DocumentHandlerInterface * /* pHandler */) const
{
}
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/writerperfect/source/filter/GraphicsStyle.hxx b/writerperfect/source/filter/GraphicsStyle.hxx
index b6ee0c66da88..bef9b5423151 100644
--- a/writerperfect/source/filter/GraphicsStyle.hxx
+++ b/writerperfect/source/filter/GraphicsStyle.hxx
@@ -1,3 +1,4 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/* GraphicsStyle:
*
* Copyright (C) 2007 Fridrich Strba .strba@bluewin.ch)
@@ -38,3 +39,5 @@ public:
virtual void write(DocumentHandlerInterface *pHandler) const;
};
#endif
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/writerperfect/source/filter/InternalHandler.cxx b/writerperfect/source/filter/InternalHandler.cxx
index 82479bd2221a..a0208277f5c6 100644
--- a/writerperfect/source/filter/InternalHandler.cxx
+++ b/writerperfect/source/filter/InternalHandler.cxx
@@ -1,3 +1,4 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* Copyright (C) 2007 Fridrich Strba .strba@bluewin.ch)
*
@@ -52,3 +53,5 @@ void InternalHandler::characters(const WPXString &sCharacters)
{
mpElements->push_back(new CharDataElement(sCharacters.cstr()));
}
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/writerperfect/source/filter/InternalHandler.hxx b/writerperfect/source/filter/InternalHandler.hxx
index 9913ac803652..0869ad107e21 100644
--- a/writerperfect/source/filter/InternalHandler.hxx
+++ b/writerperfect/source/filter/InternalHandler.hxx
@@ -1,3 +1,4 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* Copyright (C) 2007 Fridrich Strba .strba@bluewin.ch)
*
@@ -44,3 +45,5 @@ private:
std::vector<DocumentElement *> *mpElements;
};
#endif
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/writerperfect/source/filter/OdgExporter.cxx b/writerperfect/source/filter/OdgExporter.cxx
index 6baa2d697376..03f75bb690ba 100644
--- a/writerperfect/source/filter/OdgExporter.cxx
+++ b/writerperfect/source/filter/OdgExporter.cxx
@@ -1,3 +1,4 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/* libwpg
* Copyright (C) 2006 Ariya Hidayat (ariya@kde.org)
* Copyright (C) 2006 Fridrich Strba (fridrich.strba@bluewin.ch)
@@ -646,3 +647,5 @@ WPXString OdgExporter::doubleToString(const double value)
}
return WPXString(stringValue.c_str());
}
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/writerperfect/source/filter/OdgExporter.hxx b/writerperfect/source/filter/OdgExporter.hxx
index 948d3b87374c..f3ff92b80a28 100644
--- a/writerperfect/source/filter/OdgExporter.hxx
+++ b/writerperfect/source/filter/OdgExporter.hxx
@@ -1,3 +1,4 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/* libwpg
* Copyright (C) 2006 Ariya Hidayat (ariya@kde.org)
*
@@ -88,3 +89,5 @@ private:
};
#endif // __ODGEXPORTER_HXX__
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */