diff options
author | Timothy Pearson <[email protected]> | 2013-02-01 23:20:21 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-02-01 23:20:21 -0600 |
commit | fccf6d244a4d60c3138afa81266e22ac65adddbc (patch) | |
tree | ce62ccdaca3fffebeb33ad213dc5cea82ceff580 /kig/scripting/python_scripter.cc | |
parent | 273ccce287bccee117bbfff8ca3386d613aec467 (diff) | |
download | tdeedu-fccf6d244a4d60c3138afa81266e22ac65adddbc.tar.gz tdeedu-fccf6d244a4d60c3138afa81266e22ac65adddbc.zip |
Rename many classes and header files to avoid conflicts with KDE4
Diffstat (limited to 'kig/scripting/python_scripter.cc')
-rw-r--r-- | kig/scripting/python_scripter.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kig/scripting/python_scripter.cc b/kig/scripting/python_scripter.cc index 7e833d5c..81f377ac 100644 --- a/kig/scripting/python_scripter.cc +++ b/kig/scripting/python_scripter.cc @@ -539,12 +539,12 @@ void PythonScripter::saveErrors() object printexcfunc = d->mainnamespace[ "traceback" ].attr( "format_exception" ); - list tracebacklist = extract<list>( printexcfunc( exctype, excvalue, exctraceback ) )(); + list tracebactdelist = extract<list>( printexcfunc( exctype, excvalue, exctraceback ) )(); str tracebackstr( "" ); while ( true ) { try { - str s = extract<str>( tracebacklist.pop() ); + str s = extract<str>( tracebactdelist.pop() ); tracebackstr += s; } catch( ... ) |