~ubuntu-branches/ubuntu/lucid/libwpd/lucid

« back to all changes in this revision

Viewing changes to src/lib/WP5SingleByteFunction.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Rene Engelhard
  • Date: 2007-01-11 15:15:57 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20070111151557-rn1kysabqbccx3as
Tags: 0.8.8-2
run make check for stream check; build-depend on libcppunit-dev 

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
 */
26
26
 
27
27
#include "WP5SingleByteFunction.h"
 
28
#include "WP5Listener.h"
28
29
#include "libwpd_internal.h"
29
30
 
30
 
WP5SingleByteFunction * WP5SingleByteFunction::constructSingleByteFunction(WPXInputStream *input, uint8_t groupID)
 
31
WP5SingleByteFunction * WP5SingleByteFunction::constructSingleByteFunction(WPXInputStream * /* input */, uint8_t groupID)
31
32
{
32
33
 
33
34
        switch (groupID) 
57
58
        
58
59
        default:
59
60
                // should not happen
60
 
                return NULL;
 
61
                return 0;
61
62
                }
62
63
}
63
64