diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-11-06 02:31:13 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-11-06 02:31:13 -0600 |
commit | 0ae5679aa160245af248836e1d7743aeff63f2e1 (patch) | |
tree | 64608dccc9bfd57800995a414f6287b7605ca637 /kdeprint/fooscanner.l | |
parent | d3b5575f31f14629dbd3fd900665e1a69aa7bcd5 (diff) | |
download | tdelibs-0ae5679aa160245af248836e1d7743aeff63f2e1.tar.gz tdelibs-0ae5679aa160245af248836e1d7743aeff63f2e1.zip |
Additional kde to tde renaming
Diffstat (limited to 'kdeprint/fooscanner.l')
-rw-r--r-- | kdeprint/fooscanner.l | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/kdeprint/fooscanner.l b/kdeprint/fooscanner.l index b93ab3bb0..ddd5bb974 100644 --- a/kdeprint/fooscanner.l +++ b/kdeprint/fooscanner.l @@ -1,7 +1,7 @@ %{ /* * This file is part of the KDE libraries - * Copyright (c) 2001-2003 Michael Goffioul <kdeprint@swing.be> + * Copyright (c) 2001-2003 Michael Goffioul <tdeprint@swing.be> * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public @@ -23,13 +23,13 @@ #define YYSTYPE QVariant #include "fooparser.cpp.h" -#define yylval kdeprint_foomatic2lval +#define yylval tdeprint_foomatic2lval #define YY_INPUT( buf, result, max_size ) \ { \ - if ( kdeprint_foomatic2scanner_device ) \ + if ( tdeprint_foomatic2scanner_device ) \ { \ - result = kdeprint_foomatic2scanner_device->readBlock( buf, max_size ); \ + result = tdeprint_foomatic2scanner_device->readBlock( buf, max_size ); \ if ( result < 0 ) \ result = 0; \ } \ @@ -37,7 +37,7 @@ result = 0; \ } -QIODevice* kdeprint_foomatic2scanner_device = NULL; +QIODevice* tdeprint_foomatic2scanner_device = NULL; %} %option noyywrap @@ -72,12 +72,12 @@ D [[:digit:]] %% -void kdeprint_foomatic2scanner_init( QIODevice *d ) +void tdeprint_foomatic2scanner_init( QIODevice *d ) { - kdeprint_foomatic2scanner_device = d; + tdeprint_foomatic2scanner_device = d; } -void kdeprint_foomatic2scanner_terminate() +void tdeprint_foomatic2scanner_terminate() { - kdeprint_foomatic2scanner_device = NULL; + tdeprint_foomatic2scanner_device = NULL; } |