summaryrefslogtreecommitdiff
path: root/sdext/source/pdfimport/xpdfwrapper/pnghelper.hxx
diff options
context:
space:
mode:
authorBjoern Michaelsen <bjoern.michaelsen@canonical.com>2011-08-23 15:08:13 +0200
committerBjoern Michaelsen <bjoern.michaelsen@canonical.com>2011-08-23 15:08:13 +0200
commit3bb01d6eda13bf1b4a538a24707605153fe4e37e (patch)
tree65089ad2a2c6268e4c4ffc753ae2374bd2169089 /sdext/source/pdfimport/xpdfwrapper/pnghelper.hxx
parent1dd3ecc26716372f4e0aeb7578acfd997f125a61 (diff)
recreated tag libreoffice-3.3.3.1 which had these commits:
commit 8ad61991552caa3f97cc10dc468ce722f2a7217a (tag: refs/tags/libreoffice-3.3.3.1) Author: Petr Mladek <pmladek@suse.cz> Date: Tue May 31 17:39:04 2011 +0200 Version 3.3.3.1, tag libreoffice-3.3.3.1 (3.3.3-rc1) commit 4e3b67b32df4df0f1afe0abe0c0dc9a56829986c Author: Andras Timar <atimar@suse.com> Date: Sun May 29 21:38:41 2011 +0200 l10n: add br, et, and tr to NLPSolver + fixes to fr and nb nlpsolver/locale/NLPSolverCommon_bg.properties | 22 +++++++++++++++ nlpsolver/locale/NLPSolverCommon_et.properties | 22 +++++++++++++++ nlpsolver/locale/NLPSolverCommon_nb.properties | 2 +- nlpsolver/locale/NLPSolverCommon_tr.properties | 22 +++++++++++++++ .../locale/NLPSolverStatusDialog_bg.properties | 28 ++++++++++++++++++++ .../locale/NLPSolverStatusDialog_et.properties | 28 ++++++++++++++++++++ .../locale/NLPSolverStatusDialog_fr.properties | 4 +- .../locale/NLPSolverStatusDialog_tr.properties | 28 ++++++++++++++++++++ 8 files changed, 153 insertions(+), 3 deletions(-)
Notes
Notes: split repo tag: extensions_libreoffice-3.3.3.1 split repo tag: extensions_libreoffice-3.3.4.1
Diffstat (limited to 'sdext/source/pdfimport/xpdfwrapper/pnghelper.hxx')
-rw-r--r--sdext/source/pdfimport/xpdfwrapper/pnghelper.hxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/sdext/source/pdfimport/xpdfwrapper/pnghelper.hxx b/sdext/source/pdfimport/xpdfwrapper/pnghelper.hxx
index c7b050869554..07b70ede7c4a 100644
--- a/sdext/source/pdfimport/xpdfwrapper/pnghelper.hxx
+++ b/sdext/source/pdfimport/xpdfwrapper/pnghelper.hxx
@@ -16,12 +16,12 @@
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of
* the License, or (at your option) any later version.
- *
+ *
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
- *
+ *
* You should have received a copy of the GNU General Public
* License along with this program; if not, write to the Free
* Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
@@ -41,12 +41,12 @@ namespace pdfi
{
static sal_uInt32 crc_table[ 256 ];
static bool bCRCTableInit;
-
+
static void initCRCTable();
static void appendFileHeader( OutputBuffer& o_rOutputBuf );
static size_t startChunk( const char* pChunkName, OutputBuffer& o_rOut );
static void endChunk( size_t nStart, OutputBuffer& o_rOut );
-
+
static void set( sal_uInt32 i_nValue, OutputBuffer& o_rOutputBuf, size_t i_nIndex );
static void append( sal_uInt32 i_nValue, OutputBuffer& o_rOutputBuf )
{
@@ -54,18 +54,18 @@ namespace pdfi
o_rOutputBuf.insert( o_rOutputBuf.end(), 4, (Output_t)0 );
set( i_nValue, o_rOutputBuf, nCur );
}
-
+
static void appendIHDR( OutputBuffer& o_rOutputBuf, int width, int height, int depth, int colortype );
static void appendIEND( OutputBuffer& o_rOutputBuf );
-
+
public:
static void updateCRC( sal_uInt32& io_rCRC, const sal_uInt8* i_pBuf, size_t i_nLen );
static sal_uInt32 getCRC( const sal_uInt8* i_pBuf, size_t i_nLen );
-
+
// deflates the passed buff i_pBuf and appends it to the output vector
// returns the number of bytes added to the output
static sal_uInt32 deflateBuffer( const Output_t* i_pBuf, size_t i_nLen, OutputBuffer& o_rOut );
-
+
static void createPng( OutputBuffer& o_rOutputBuf,
Stream* str,
int width,