diff options
author | corvid <corvid@lavabit.com> | 2012-10-29 17:49:31 +0000 |
---|---|---|
committer | corvid <corvid@lavabit.com> | 2012-10-29 17:49:31 +0000 |
commit | 28d6a94cd196b1603c5dac35aef57c06a68a816d (patch) | |
tree | 24f03e1356ee991c6b9c37805a6fc62645650857 | |
parent | 28a186ec337eee442d7ccc6af0335ee7c1813ad1 (diff) |
rm semicolons
-rw-r--r-- | dw/hyphenator.cc | 4 | ||||
-rw-r--r-- | src/css.cc | 8 | ||||
-rw-r--r-- | src/findbar.cc | 2 |
3 files changed, 7 insertions, 7 deletions
diff --git a/dw/hyphenator.cc b/dw/hyphenator.cc index 62a47a73..61cbef0d 100644 --- a/dw/hyphenator.cc +++ b/dw/hyphenator.cc @@ -490,14 +490,14 @@ Trie::Trie (TrieNode *array, int size, bool freeArray, ZoneAllocator *dataZone) this->size = size; this->freeArray = freeArray; this->dataZone = dataZone; -}; +} Trie::~Trie () { delete dataZone; if (freeArray) free(array); -}; +} void Trie::save (FILE *file) { @@ -44,7 +44,7 @@ CssPropertyList::CssPropertyList (const CssPropertyList &p, bool deep) : } else { ownerOfStrings = false; } -}; +} CssPropertyList::~CssPropertyList () { if (ownerOfStrings) @@ -108,7 +108,7 @@ CssSelector::CssSelector () { cs->notMatchingBefore = -1; cs->combinator = COMB_NONE; cs->selector = new CssSimpleSelector (); -}; +} CssSelector::~CssSelector () { for (int i = selectorList->size () - 1; i >= 0; i--) @@ -329,12 +329,12 @@ CssRule::CssRule (CssSelector *selector, CssPropertyList *props, int pos) { this->props->ref (); this->pos = pos; spec = selector->specificity (); -}; +} CssRule::~CssRule () { selector->unref (); props->unref (); -}; +} void CssRule::apply (CssPropertyList *props, Doctree *docTree, const DoctreeNode *node) { diff --git a/src/findbar.cc b/src/findbar.cc index 47363db0..28790563 100644 --- a/src/findbar.cc +++ b/src/findbar.cc @@ -61,7 +61,7 @@ int MyInput::handle(int e) if (ret) ret = Fl_Input::handle(e); return ret; -}; +} /* * Find next occurrence of input key |