summaryrefslogtreecommitdiffstats
path: root/flow/gsl/gsldatahandle-mad.c
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-09 02:23:29 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-09 02:23:29 +0000
commitd82df56df57fe699f486bbabed0a06864bfc11d7 (patch)
treef5481e4ccbe08ec908cc36b9d7695f799cc9ac5c /flow/gsl/gsldatahandle-mad.c
parentc50ee33c7420ad87a6ef496d7170a701c2601558 (diff)
downloadarts-d82df56df57fe699f486bbabed0a06864bfc11d7.tar.gz
arts-d82df56df57fe699f486bbabed0a06864bfc11d7.zip
Remove the tq in front of these incorrectly TQt4-converted methods/data members:
tqrepaint[...] tqinvalidate[...] tqparent[...] tqmask[...] tqlayout[...] tqalignment[...] git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/dependencies/arts@1240522 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'flow/gsl/gsldatahandle-mad.c')
-rw-r--r--flow/gsl/gsldatahandle-mad.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/flow/gsl/gsldatahandle-mad.c b/flow/gsl/gsldatahandle-mad.c
index 522efa5..201d352 100644
--- a/flow/gsl/gsldatahandle-mad.c
+++ b/flow/gsl/gsldatahandle-mad.c
@@ -318,14 +318,14 @@ dh_mad_open (GslDataHandle *dhandle,
MadHandle *handle = (MadHandle*) dhandle;
GslHFile *hfile;
GslLong n;
- gboolean seek_tqinvalidated = FALSE;
+ gboolean seek_invalidated = FALSE;
hfile = gsl_hfile_open (handle->dhandle.name);
if (!hfile)
return gsl_error_from_errno (errno, GSL_ERROR_OPEN_FAILED);
handle->hfile = hfile;
- seek_tqinvalidated |= handle->seek_mtime != hfile->mtime;
+ seek_invalidated |= handle->seek_mtime != hfile->mtime;
handle->bfill = 0;
handle->eof = FALSE;
handle->pcm_pos = 0;
@@ -345,7 +345,7 @@ dh_mad_open (GslDataHandle *dhandle,
setup->bit_depth = 24;
setup->n_channels = MAD_NCHANNELS (&handle->frame.header);
n = MAD_NSBSAMPLES (&handle->frame.header) * 32;
- seek_tqinvalidated |= n != handle->frame_size;
+ seek_invalidated |= n != handle->frame_size;
handle->frame_size = n;
handle->sample_rate = handle->frame.header.samplerate;
if (setup->n_channels < 1 ||
@@ -355,7 +355,7 @@ dh_mad_open (GslDataHandle *dhandle,
goto OPEN_FAILED;
/* seek through the stream to collect frame positions */
- if (seek_tqinvalidated || !handle->n_seeks)
+ if (seek_invalidated || !handle->n_seeks)
{
handle->seek_mtime = hfile->mtime;
handle->n_seeks = 0;