diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 17:04:35 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 17:04:35 +0000 |
commit | af6fa0b896ea3391cf8dd10b32cd49d0b5cb58b8 (patch) | |
tree | 7aba842bdb80d8662123db8b76a39d9789bac0a9 /ftparchive/writer.h | |
parent | 0dfd2728dea9b0a6a92f1272ecaa475adc2f9276 (diff) |
Return type of ClearPatterns and AddPattern should be void
Author: mdz
Date: 2003-12-26 22:55:13 GMT
Return type of ClearPatterns and AddPattern should be void
Diffstat (limited to 'ftparchive/writer.h')
-rw-r--r-- | ftparchive/writer.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ftparchive/writer.h b/ftparchive/writer.h index f347ca3b3..6c47fb933 100644 --- a/ftparchive/writer.h +++ b/ftparchive/writer.h @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: writer.h,v 1.6 2003/12/26 20:50:01 mdz Exp $ +// $Id: writer.h,v 1.7 2003/12/26 22:55:13 mdz Exp $ /* ###################################################################### Writer @@ -67,8 +67,8 @@ class FTWScanner virtual bool DoPackage(string FileName) = 0; bool RecursiveScan(string Dir); bool LoadFileList(string BaseDir,string File); - bool ClearPatterns() { Patterns.clear(); }; - bool AddPattern(string Pattern) { Patterns.push_back(Pattern); }; + void ClearPatterns() { Patterns.clear(); }; + void AddPattern(string Pattern) { Patterns.push_back(Pattern); }; bool SetExts(string Vals); FTWScanner(); |