~ubuntu-branches/ubuntu/saucy/kig/saucy

« back to all changes in this revision

Viewing changes to filters/kseg-filter.cc

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell, Jonathan Riddell, Harald Sitter
  • Date: 2012-11-19 15:58:49 UTC
  • mfrom: (1.1.16)
  • Revision ID: package-import@ubuntu.com-20121119155849-l709sjsbjijx422a
Tags: 4:4.9.80-0ubuntu1
[ Jonathan Riddell ]
* New upstream beta release

[ Harald Sitter ]
* Add libboost-python-dev as build dep to enable python script support.

Show diffs side-by-side

added added

removed removed

Lines of Context:
204
204
  if ( ! ffile.open( QIODevice::ReadOnly ) )
205
205
  {
206
206
    fileNotFound( file );
207
 
    return false;
 
207
    return 0;
208
208
  };
209
209
 
210
210
  KigDocument* retdoc = new KigDocument();
560
560
      {
561
561
        notSupported( file, i18n( "This KSeg file contains a filled circle, "
562
562
                                  "which Kig does not currently support." ) );
563
 
        return false;
 
563
        return 0;
564
564
      };
565
565
      case G_ARCSECTOR:
566
566
      {
567
567
        notSupported( file, i18n( "This KSeg file contains an arc sector, "
568
568
                                  "which Kig does not currently support." ) );
569
 
        return false;
 
569
        return 0;
570
570
      };
571
571
      case G_ARCSEGMENT:
572
572
      {
573
573
        notSupported( file, i18n( "This KSeg file contains an arc segment, "
574
574
                                  "which Kig does not currently support." ) );
575
 
        return false;
 
575
        return 0;
576
576
      };
577
577
      case G_LOCUS:
578
578
      {