]> git.sven.stormbind.net Git - sven/vym.git/blob - heading.cpp
Import Upstream version 2.6.11
[sven/vym.git] / heading.cpp
1 #include "heading.h"
2 #include "misc.h"
3
4 #include <QRegExp>
5 #include <QDebug>
6
7 /////////////////////////////////////////////////////////////////
8 // Heading
9 /////////////////////////////////////////////////////////////////
10
11 void Heading::operator =(const VymText &other)
12 {
13     copy (other);
14 }
15
16 QString Heading::saveToDir ()
17 {
18     return valueElement ("heading", VymText::saveToDir(), getAttributes() );
19 }
20