~ubuntu-branches/ubuntu/karmic/kst/karmic

« back to all changes in this revision

Viewing changes to kst/kst/plugin.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Daniel T Chen
  • Date: 2006-06-30 19:11:30 UTC
  • mfrom: (1.2.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20060630191130-acumuar75bz4puty
Tags: 1.2.1-1ubuntu1
Merge from debian unstable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
 
21
21
#include <klibloader.h>
22
22
#include <klocale.h>
23
 
#include <kdebug.h>
24
23
 
25
24
 
26
25
const int Plugin::CallError = -424242;
31
30
  _freeSymbol = 0L;
32
31
  _errorSymbol = 0L;
33
32
  _parameterName = 0L;
34
 
  //kdDebug() << "Creating Plugin: " << long(this) << endl;
 
33
  //kstdDebug() << "Creating Plugin: " << long(this) << endl;
35
34
}
36
35
 
37
36
 
46
45
    _lib = 0L;
47
46
  }
48
47
 
49
 
  //kdDebug() << "Destroying Plugin: " << long(this) << endl;
 
48
  //kstdDebug() << "Destroying Plugin: " << long(this) << endl;
50
49
}
51
50
 
52
51
 
132
131
  if (parameter.isEmpty()) {
133
132
    parameter = i18n("Param%1").arg(idx);
134
133
  }
135
 
 
 
134
  
136
135
  return parameter;
137
136
}
138
137