~ubuntu-branches/ubuntu/trusty/qtscript-opensource-src/trusty-proposed

« back to all changes in this revision

Viewing changes to src/script/api/qscriptcontextinfo.h

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2014-02-10 13:21:09 UTC
  • mfrom: (1.1.3) (0.1.6 saucy-proposed)
  • Revision ID: package-import@ubuntu.com-20140210132109-d9pc9a4hupbvs61u
Tags: 5.1.1+dfsg-2ubuntu1~really5.0.2+dfsg-3ubuntu1
* Revert to 5.0.2 as Qt 5.1 is not in Ubuntu yet
* Add aarch64.patch Add support for AArch64 to JavaScriptCore

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
#include <QtCore/qsharedpointer.h>
32
32
#include <QtScript/qtscriptglobal.h>
33
33
 
 
34
QT_BEGIN_HEADER
 
35
 
34
36
QT_BEGIN_NAMESPACE
35
37
 
36
38
 
67
69
    qint64 scriptId() const;
68
70
    QString fileName() const;
69
71
    int lineNumber() const;
70
 
    int columnNumber() const;
 
72
#ifdef QT_DEPRECATED
 
73
    QT_DEPRECATED int columnNumber() const;
 
74
#endif
71
75
 
72
76
    QString functionName() const;
73
77
    FunctionType functionType() const;
97
101
 
98
102
QT_END_NAMESPACE
99
103
 
 
104
QT_END_HEADER
 
105
 
100
106
#endif