AUTHORS | 2 +- src/lib/MSPUBParser.cpp | 4 ++-- src/lib/MSPUBParser.h | 4 ++-- src/lib/MSPUBParser97.cpp | 2 +- src/lib/MSPUBTypes.h | 4 ++-- src/lib/libmspub_utils.cpp | 2 +- src/lib/libmspub_utils.h | 2 +- 7 files changed, 10 insertions(+), 10 deletions(-)
New commits: commit 27334faa41525b7f85fd193817956d4e34390fde Author: Brennan T. Vincent <[email protected]> Date: Fri Jan 18 01:15:02 2013 -0700 styling diff --git a/src/lib/MSPUBParser.cpp b/src/lib/MSPUBParser.cpp index 9e96c0c..490c6f2 100644 --- a/src/lib/MSPUBParser.cpp +++ b/src/lib/MSPUBParser.cpp @@ -339,7 +339,7 @@ bool libmspub::MSPUBParser::parseContents(WPXInputStream *input) if (m_contentChunks.size() > 1) { m_contentChunks[m_contentChunks.size() - 2].end - = m_contentChunks.back().offset; + = m_contentChunks.back().offset; } } } diff --git a/src/lib/MSPUBParser.h b/src/lib/MSPUBParser.h index 3d2b989..1cc8215 100644 --- a/src/lib/MSPUBParser.h +++ b/src/lib/MSPUBParser.h @@ -93,7 +93,7 @@ protected: struct TextSpanReference { - TextSpanReference(unsigned short f, unsigned short l, const CharacterStyle& cs) : first(f), last(l), charStyle(cs) { } + TextSpanReference(unsigned short f, unsigned short l, const CharacterStyle &cs) : first(f), last(l), charStyle(cs) { } unsigned short first; unsigned short last; CharacterStyle charStyle; @@ -101,7 +101,7 @@ protected: struct TextParagraphReference { - TextParagraphReference(unsigned short f, unsigned short l, const ParagraphStyle& ps) : first(f), last(l), paraStyle(ps) { } + TextParagraphReference(unsigned short f, unsigned short l, const ParagraphStyle &ps) : first(f), last(l), paraStyle(ps) { } unsigned short first; unsigned short last; ParagraphStyle paraStyle; diff --git a/src/lib/MSPUBTypes.h b/src/lib/MSPUBTypes.h index 9e08207..2950ad5 100644 --- a/src/lib/MSPUBTypes.h +++ b/src/lib/MSPUBTypes.h @@ -168,14 +168,14 @@ struct ParagraphStyle struct TextSpan { - TextSpan(const std::vector<unsigned char>& c, const CharacterStyle& s) : chars(c), style(s) { } + TextSpan(const std::vector<unsigned char> &c, const CharacterStyle &s) : chars(c), style(s) { } std::vector<unsigned char> chars; CharacterStyle style; }; struct TextParagraph { - TextParagraph(const std::vector<TextSpan>& sp, const ParagraphStyle& st) : spans(sp), style(st) { } + TextParagraph(const std::vector<TextSpan> &sp, const ParagraphStyle &st) : spans(sp), style(st) { } std::vector<TextSpan> spans; ParagraphStyle style; }; commit 7635d9ef0eaf07f3f60d0ee3f550c2c62685fedd Author: Brennan T. Vincent <[email protected]> Date: Fri Jan 18 01:14:13 2013 -0700 Update copyright dates and author email diff --git a/AUTHORS b/AUTHORS index 155e8df..f8d0aa5 100644 --- a/AUTHORS +++ b/AUTHORS @@ -2,7 +2,7 @@ CREDITS Current maintainers and authors of libmspub --------------------------------------------- -Brennan Vincent ([email protected]) +Brennan Vincent ([email protected]) Fridrich Strba ([email protected]) Special thanks diff --git a/src/lib/MSPUBParser.cpp b/src/lib/MSPUBParser.cpp index 548dd48..9e96c0c 100644 --- a/src/lib/MSPUBParser.cpp +++ b/src/lib/MSPUBParser.cpp @@ -13,7 +13,7 @@ * License. * * Major Contributor(s): - * Copyright (C) 2012 Brennan Vincent <[email protected]> + * Copyright (C) 2012-2013 Brennan Vincent <[email protected]> * Copyright (C) 2012 Fridrich Strba <[email protected]> * * All Rights Reserved. diff --git a/src/lib/MSPUBParser97.cpp b/src/lib/MSPUBParser97.cpp index 8b8efd9..b2bd872 100644 --- a/src/lib/MSPUBParser97.cpp +++ b/src/lib/MSPUBParser97.cpp @@ -13,7 +13,7 @@ * License. * * Major Contributor(s): - * Copyright (C) 2012 Brennan Vincent <[email protected]> + * Copyright (C) 2012-2013 Brennan Vincent <[email protected]> * * All Rights Reserved. * diff --git a/src/lib/libmspub_utils.cpp b/src/lib/libmspub_utils.cpp index 17c3d5c..d61db1d 100644 --- a/src/lib/libmspub_utils.cpp +++ b/src/lib/libmspub_utils.cpp @@ -13,7 +13,7 @@ * License. * * Major Contributor(s): - * Copyright (C) 2012 Brennan Vincent <[email protected]> + * Copyright (C) 2012-2013 Brennan Vincent <[email protected]> * Copyright (C) 2011 Fridrich Strba <[email protected]> * Copyright (C) 2011 Eilidh McAdam <[email protected]> * diff --git a/src/lib/libmspub_utils.h b/src/lib/libmspub_utils.h index c2bfb0d..c1ff6f8 100644 --- a/src/lib/libmspub_utils.h +++ b/src/lib/libmspub_utils.h @@ -13,7 +13,7 @@ * License. * * Major Contributor(s): - * Copyright (C) 2012 Brennan Vincent <[email protected]> + * Copyright (C) 2012-2013 Brennan Vincent <[email protected]> * Copyright (C) 2012 Fridrich Strba <[email protected]> * * All Rights Reserved. _______________________________________________ Libreoffice-commits mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
