~ubuntu-branches/ubuntu/hardy/xbill/hardy

« back to all changes in this revision

Viewing changes to Library.cc

  • Committer: Bazaar Package Importer
  • Author(s): Adrian Bridgett
  • Date: 2004-09-07 09:52:14 UTC
  • mfrom: (2.1.1 warty)
  • Revision ID: james.westby@ubuntu.com-20040907095214-d0m46ojc8f7upuqm
Tags: 2.1-4
maintainer upload of NMU - many thanks Tollef (closes: #268885) 

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#include "objects.h"
2
 
 
3
 
void Library::load_pix() {
4
 
        int i;
5
 
        char *name[] = {"wingdows", "apple", "next", "sgi", "sun", "os2",
6
 
                "bsd", "linux", "redhat", "hurd"};
7
 
        for (i=0; i <= NUM_OS; i++) {
8
 
                os[i].load(name[i]);
9
 
                if (i) cursor[i].load(name[i], cursor[i].OWN_MASK);
10
 
        }
11
 
        width = os[0].width;
12
 
        height = os[0].height;
13
 
}