~ubuntu-branches/ubuntu/natty/geany/natty

« back to all changes in this revision

Viewing changes to scintilla/include/Platform.h

  • Committer: Bazaar Package Importer
  • Author(s): Chow Loong Jin
  • Date: 2010-08-07 03:23:12 UTC
  • mfrom: (1.4.3 upstream)
  • mto: This revision was merged to the branch mainline in revision 22.
  • Revision ID: james.westby@ubuntu.com-20100807032312-ot70ac9d50cn79we
Tags: upstream-0.19
ImportĀ upstreamĀ versionĀ 0.19

Show diffs side-by-side

added added

removed removed

Lines of Context:
295
295
        virtual ~Font();
296
296
 
297
297
        virtual void Create(const char *faceName, int characterSet, int size,
298
 
                bool bold, bool italic, bool extraFontFlag=false);
 
298
                bool bold, bool italic, int extraFontFlag=0);
299
299
        virtual void Release();
300
300
 
301
301
        FontID GetID() { return fid; }
314
314
        Surface(const Surface &) {}
315
315
        Surface &operator=(const Surface &) { return *this; }
316
316
public:
317
 
        Surface() {};
318
 
        virtual ~Surface() {};
 
317
        Surface() {}
 
318
        virtual ~Surface() {}
319
319
        static Surface *Allocate();
320
320
 
321
321
        virtual void Init(WindowID wid)=0;
474
474
 */
475
475
class DynamicLibrary {
476
476
public:
477
 
        virtual ~DynamicLibrary() {};
 
477
        virtual ~DynamicLibrary() {}
478
478
 
479
479
        /// @return Pointer to function "name", or NULL on failure.
480
480
        virtual Function FindFunction(const char *name) = 0;