Hello community, here is the log from the commit of package kjsembed for openSUSE:Factory checked in at 2015-03-16 09:29:08 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kjsembed (Old) and /work/SRC/openSUSE:Factory/.kjsembed.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kjsembed" Changes: -------- --- /work/SRC/openSUSE:Factory/kjsembed/kjsembed.changes 2015-02-16 17:31:46.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.kjsembed.new/kjsembed.changes 2015-03-16 09:29:09.000000000 +0100 @@ -1,0 +2,7 @@ +Sat Mar 7 16:58:40 UTC 2015 - [email protected] + +- Update to 5.8.0 + * For more details please see: + https://www.kde.org/announcements/kde-frameworks-5.8.0.php + +------------------------------------------------------------------- Old: ---- kjsembed-5.7.0.tar.xz New: ---- kjsembed-5.8.0.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kjsembed.spec ++++++ --- /var/tmp/diff_new_pack.ILgwVN/_old 2015-03-16 09:29:10.000000000 +0100 +++ /var/tmp/diff_new_pack.ILgwVN/_new 2015-03-16 09:29:10.000000000 +0100 @@ -17,13 +17,13 @@ %define lname libKF5JsEmbed5 -%define _tar_path 5.7 +%define _tar_path 5.8 Name: kjsembed Version: %{_tar_path}.0 Release: 0 %define kf5_version %{version} BuildRequires: cmake >= 2.8.12 -BuildRequires: extra-cmake-modules >= 1.7.0 +BuildRequires: extra-cmake-modules >= 1.8.0 BuildRequires: fdupes BuildRequires: kdoctools-devel >= %{kf5_version} BuildRequires: kf5-filesystem ++++++ kjsembed-5.7.0.tar.xz -> kjsembed-5.8.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kjsembed-5.7.0/CMakeLists.txt new/kjsembed-5.8.0/CMakeLists.txt --- old/kjsembed-5.7.0/CMakeLists.txt 2015-02-08 16:21:14.000000000 +0100 +++ new/kjsembed-5.8.0/CMakeLists.txt 2015-03-07 15:46:43.000000000 +0100 @@ -2,7 +2,7 @@ project(KJsEmbed) -find_package(ECM 1.7.0 REQUIRED NO_MODULE) +find_package(ECM 1.8.0 REQUIRED NO_MODULE) set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR}) set(REQUIRED_QT_VERSION "5.2") @@ -17,8 +17,8 @@ include(ECMSetupVersion) include(ECMGenerateHeaders) -set(KF5_VERSION "5.7.0") # handled by release scripts -set(KF5_DEP_VERSION "5.7.0") # handled by release scripts +set(KF5_VERSION "5.8.0") # handled by release scripts +set(KF5_DEP_VERSION "5.8.0") # handled by release scripts ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KJSEMBED #VERSION_HEADER "${CMAKE_CURRENT_BINARY_DIR}/kjsembed_version.h" PACKAGE_VERSION_FILE "${CMAKE_CURRENT_BINARY_DIR}/KF5JsEmbedConfigVersion.cmake" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kjsembed-5.7.0/examples/kjsconsole/kjs_object_model.h new/kjsembed-5.8.0/examples/kjsconsole/kjs_object_model.h --- old/kjsembed-5.7.0/examples/kjsconsole/kjs_object_model.h 2015-02-08 16:21:14.000000000 +0100 +++ new/kjsembed-5.8.0/examples/kjsconsole/kjs_object_model.h 2015-03-07 15:46:43.000000000 +0100 @@ -39,13 +39,13 @@ explicit KJSObjectModel(KJS::Interpreter *js, QObject *parent = 0); ~KJSObjectModel(); - QVariant data(const QModelIndex &index, int role) const; - Qt::ItemFlags flags(const QModelIndex &index) const; - QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const; - QModelIndex index(int row, int column, const QModelIndex &parent = QModelIndex()) const; - QModelIndex parent(const QModelIndex &index) const; - int rowCount(const QModelIndex &parent = QModelIndex()) const; - int columnCount(const QModelIndex &parent = QModelIndex()) const; + QVariant data(const QModelIndex &index, int role) const Q_DECL_OVERRIDE; + Qt::ItemFlags flags(const QModelIndex &index) const Q_DECL_OVERRIDE; + QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const Q_DECL_OVERRIDE; + QModelIndex index(int row, int column, const QModelIndex &parent = QModelIndex()) const Q_DECL_OVERRIDE; + QModelIndex parent(const QModelIndex &index) const Q_DECL_OVERRIDE; + int rowCount(const QModelIndex &parent = QModelIndex()) const Q_DECL_OVERRIDE; + int columnCount(const QModelIndex &parent = QModelIndex()) const Q_DECL_OVERRIDE; void updateModel(KJS::JSObject *m_root); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kjsembed-5.7.0/examples/kjsconsole/numberedtextview.h new/kjsembed-5.8.0/examples/kjsconsole/numberedtextview.h --- old/kjsembed-5.7.0/examples/kjsconsole/numberedtextview.h 2015-02-08 16:21:14.000000000 +0100 +++ new/kjsembed-5.8.0/examples/kjsconsole/numberedtextview.h 2015-03-07 15:46:43.000000000 +0100 @@ -50,10 +50,10 @@ int bugLine() const; void setTextEdit(QTextEdit *edit); - void paintEvent(QPaintEvent *ev); + void paintEvent(QPaintEvent *ev) Q_DECL_OVERRIDE; protected: - bool event(QEvent *ev); + bool event(QEvent *ev) Q_DECL_OVERRIDE; private: QTextEdit *edit; @@ -111,7 +111,7 @@ int bugLine() const; /** @internal Used to get tooltip events from the view for the hover signal. */ - bool eventFilter(QObject *obj, QEvent *event); + bool eventFilter(QObject *obj, QEvent *event) Q_DECL_OVERRIDE; QString text() const; void setText(const QString &text); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kjsembed-5.7.0/src/kjsembed/QBrush_bind.h new/kjsembed-5.8.0/src/kjsembed/QBrush_bind.h --- old/kjsembed-5.7.0/src/kjsembed/QBrush_bind.h 2015-02-08 16:21:14.000000000 +0100 +++ new/kjsembed-5.8.0/src/kjsembed/QBrush_bind.h 2015-03-07 15:46:43.000000000 +0100 @@ -13,7 +13,7 @@ public: QBrushBinding(KJS::ExecState *exec, const QBrush &value); static const KJS::ClassInfo info; - virtual const KJS::ClassInfo *classInfo() const + const KJS::ClassInfo *classInfo() const Q_DECL_OVERRIDE { return &info; } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kjsembed-5.7.0/src/kjsembed/binding_support.h new/kjsembed-5.8.0/src/kjsembed/binding_support.h --- old/kjsembed-5.7.0/src/kjsembed/binding_support.h 2015-02-08 16:21:14.000000000 +0100 +++ new/kjsembed-5.8.0/src/kjsembed/binding_support.h 2015-03-07 15:46:43.000000000 +0100 @@ -248,11 +248,11 @@ ProxyBinding(KJS::ExecState *exec); virtual ~ProxyBinding() {} - bool implementsCall() const + bool implementsCall() const Q_DECL_OVERRIDE { return true; } - bool implementsConstruct() const + bool implementsConstruct() const Q_DECL_OVERRIDE { return true; } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kjsembed-5.7.0/src/kjsembed/brush.h new/kjsembed-5.8.0/src/kjsembed/brush.h --- old/kjsembed-5.7.0/src/kjsembed/brush.h 2015-02-08 16:21:14.000000000 +0100 +++ new/kjsembed-5.8.0/src/kjsembed/brush.h 2015-03-07 15:46:43.000000000 +0100 @@ -36,7 +36,7 @@ { public: BrushBinding(KJS::ExecState *exec, const QBrush &value); - virtual const KJS::ClassInfo *classInfo() const + const KJS::ClassInfo *classInfo() const Q_DECL_OVERRIDE { return &info; } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kjsembed-5.7.0/src/kjsembed/color.h new/kjsembed-5.8.0/src/kjsembed/color.h --- old/kjsembed-5.7.0/src/kjsembed/color.h 2015-02-08 16:21:14.000000000 +0100 +++ new/kjsembed-5.8.0/src/kjsembed/color.h 2015-03-07 15:46:43.000000000 +0100 @@ -35,7 +35,7 @@ { public: ColorBinding(KJS::ExecState *exec, const QColor &value); - virtual const KJS::ClassInfo *classInfo() const + const KJS::ClassInfo *classInfo() const Q_DECL_OVERRIDE { return &info; } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kjsembed-5.7.0/src/kjsembed/dom.h new/kjsembed-5.8.0/src/kjsembed/dom.h --- old/kjsembed-5.7.0/src/kjsembed/dom.h 2015-02-08 16:21:14.000000000 +0100 +++ new/kjsembed-5.8.0/src/kjsembed/dom.h 2015-03-07 15:46:43.000000000 +0100 @@ -42,7 +42,7 @@ public: DomNodeBinding(KJS::ExecState *exec, const QDomNode &value); private: - virtual const KJS::ClassInfo *classInfo() const + const KJS::ClassInfo *classInfo() const Q_DECL_OVERRIDE { return &info; } @@ -54,7 +54,7 @@ public: DomDocumentBinding(KJS::ExecState *exec, const QDomDocument &value); private: - virtual const KJS::ClassInfo *classInfo() const + const KJS::ClassInfo *classInfo() const Q_DECL_OVERRIDE { return &info; } @@ -66,7 +66,7 @@ public: DomElementBinding(KJS::ExecState *exec, const QDomElement &value); private: - virtual const KJS::ClassInfo *classInfo() const + const KJS::ClassInfo *classInfo() const Q_DECL_OVERRIDE { return &info; } @@ -78,7 +78,7 @@ public: DomAttrBinding(KJS::ExecState *exec, const QDomAttr &value); private: - virtual const KJS::ClassInfo *classInfo() const + const KJS::ClassInfo *classInfo() const Q_DECL_OVERRIDE { return &info; } @@ -90,7 +90,7 @@ public: DomDocumentTypeBinding(KJS::ExecState *exec, const QDomDocumentType &value); private: - virtual const KJS::ClassInfo *classInfo() const + const KJS::ClassInfo *classInfo() const Q_DECL_OVERRIDE { return &info; } @@ -102,7 +102,7 @@ public: DomNodeListBinding(KJS::ExecState *exec, const QDomNodeList &value); private: - virtual const KJS::ClassInfo *classInfo() const + const KJS::ClassInfo *classInfo() const Q_DECL_OVERRIDE { return &info; } @@ -114,7 +114,7 @@ public: DomNamedNodeMapBinding(KJS::ExecState *exec, const QDomNamedNodeMap &value); private: - virtual const KJS::ClassInfo *classInfo() const + const KJS::ClassInfo *classInfo() const Q_DECL_OVERRIDE { return &info; } @@ -126,7 +126,7 @@ public: DomTextBinding(KJS::ExecState *exec, const QDomText &value); private: - virtual const KJS::ClassInfo *classInfo() const + const KJS::ClassInfo *classInfo() const Q_DECL_OVERRIDE { return &info; } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kjsembed-5.7.0/src/kjsembed/eventproxy.h new/kjsembed-5.8.0/src/kjsembed/eventproxy.h --- old/kjsembed-5.7.0/src/kjsembed/eventproxy.h 2015-02-08 16:21:14.000000000 +0100 +++ new/kjsembed-5.8.0/src/kjsembed/eventproxy.h 2015-03-07 15:46:43.000000000 +0100 @@ -59,7 +59,7 @@ void removeFilter(QEvent::Type t); /** Reimplemented to forward events to JS. */ - bool eventFilter(QObject *watched, QEvent *e); + bool eventFilter(QObject *watched, QEvent *e) Q_DECL_OVERRIDE; protected: bool callHandler(QEvent *e); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kjsembed-5.7.0/src/kjsembed/font.h new/kjsembed-5.8.0/src/kjsembed/font.h --- old/kjsembed-5.7.0/src/kjsembed/font.h 2015-02-08 16:21:14.000000000 +0100 +++ new/kjsembed-5.8.0/src/kjsembed/font.h 2015-03-07 15:46:43.000000000 +0100 @@ -35,7 +35,7 @@ { public: FontBinding(KJS::ExecState *exec, const QFont &value); - virtual const KJS::ClassInfo *classInfo() const + const KJS::ClassInfo *classInfo() const Q_DECL_OVERRIDE { return &info; } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kjsembed-5.7.0/src/kjsembed/image.h new/kjsembed-5.8.0/src/kjsembed/image.h --- old/kjsembed-5.7.0/src/kjsembed/image.h 2015-02-08 16:21:14.000000000 +0100 +++ new/kjsembed-5.8.0/src/kjsembed/image.h 2015-03-07 15:46:43.000000000 +0100 @@ -35,7 +35,7 @@ { public: ImageBinding(KJS::ExecState *exec, const QImage &value); - virtual const KJS::ClassInfo *classInfo() const + const KJS::ClassInfo *classInfo() const Q_DECL_OVERRIDE { return &info; } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kjsembed-5.7.0/src/kjsembed/object_binding.h new/kjsembed-5.8.0/src/kjsembed/object_binding.h --- old/kjsembed-5.7.0/src/kjsembed/object_binding.h 2015-02-08 16:21:14.000000000 +0100 +++ new/kjsembed-5.8.0/src/kjsembed/object_binding.h 2015-03-07 15:46:43.000000000 +0100 @@ -141,9 +141,9 @@ m_value = new Pointer<T>(ptr); } - KJS::UString toString(KJS::ExecState *exec) const; - KJS::UString className() const; - KJS::JSType type() const; + KJS::UString toString(KJS::ExecState *exec) const Q_DECL_OVERRIDE; + KJS::UString className() const Q_DECL_OVERRIDE; + KJS::JSType type() const Q_DECL_OVERRIDE; Ownership ownership() const; void setOwnership(Ownership owner); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kjsembed-5.7.0/src/kjsembed/pen.h new/kjsembed-5.8.0/src/kjsembed/pen.h --- old/kjsembed-5.7.0/src/kjsembed/pen.h 2015-02-08 16:21:14.000000000 +0100 +++ new/kjsembed-5.8.0/src/kjsembed/pen.h 2015-03-07 15:46:43.000000000 +0100 @@ -37,7 +37,7 @@ PenBinding(KJS::ExecState *exec, const QPen &value); private: - virtual const KJS::ClassInfo *classInfo() const + const KJS::ClassInfo *classInfo() const Q_DECL_OVERRIDE { return &info; } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kjsembed-5.7.0/src/kjsembed/pixmap.h new/kjsembed-5.8.0/src/kjsembed/pixmap.h --- old/kjsembed-5.7.0/src/kjsembed/pixmap.h 2015-02-08 16:21:14.000000000 +0100 +++ new/kjsembed-5.8.0/src/kjsembed/pixmap.h 2015-03-07 15:46:43.000000000 +0100 @@ -35,7 +35,7 @@ { public: PixmapBinding(KJS::ExecState *exec, const QPixmap &value); - virtual const KJS::ClassInfo *classInfo() const + const KJS::ClassInfo *classInfo() const Q_DECL_OVERRIDE { return &info; } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kjsembed-5.7.0/src/kjsembed/point.h new/kjsembed-5.8.0/src/kjsembed/point.h --- old/kjsembed-5.7.0/src/kjsembed/point.h 2015-02-08 16:21:14.000000000 +0100 +++ new/kjsembed-5.8.0/src/kjsembed/point.h 2015-03-07 15:46:43.000000000 +0100 @@ -35,7 +35,7 @@ { public: PointBinding(KJS::ExecState *exec, const QPoint &value); - virtual const KJS::ClassInfo *classInfo() const + const KJS::ClassInfo *classInfo() const Q_DECL_OVERRIDE { return &info; } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kjsembed-5.7.0/src/kjsembed/pointer.h new/kjsembed-5.8.0/src/kjsembed/pointer.h --- old/kjsembed-5.7.0/src/kjsembed/pointer.h 2015-02-08 16:21:14.000000000 +0100 +++ new/kjsembed-5.8.0/src/kjsembed/pointer.h 2015-03-07 15:46:43.000000000 +0100 @@ -52,18 +52,18 @@ { } - void cleanup() + void cleanup() Q_DECL_OVERRIDE { // qDebug("delete pointer %s %0x", typeid(ValueType).name(), ptr ); delete ptr; ptr = 0L; } - const std::type_info &type() const + const std::type_info &type() const Q_DECL_OVERRIDE { return typeid(ValueType); } - void *voidStar() + void *voidStar() Q_DECL_OVERRIDE { return (void *)ptr; } @@ -83,17 +83,17 @@ //qDebug("delete value"); } - void cleanup() + void cleanup() Q_DECL_OVERRIDE { } - const std::type_info &type() const + const std::type_info &type() const Q_DECL_OVERRIDE { return typeid(ValueType); } - void *voidStar() + void *voidStar() Q_DECL_OVERRIDE { return (void *)&value; } @@ -110,17 +110,17 @@ { ; } - void cleanup() + void cleanup() Q_DECL_OVERRIDE { ; } - const std::type_info &type() const + const std::type_info &type() const Q_DECL_OVERRIDE { return typeid(NullPtr); } - void *voidStar() + void *voidStar() Q_DECL_OVERRIDE { return &ptr; } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kjsembed-5.7.0/src/kjsembed/qobject_binding.h new/kjsembed-5.8.0/src/kjsembed/qobject_binding.h --- old/kjsembed-5.7.0/src/kjsembed/qobject_binding.h 2015-02-08 16:21:14.000000000 +0100 +++ new/kjsembed-5.8.0/src/kjsembed/qobject_binding.h 2015-03-07 15:46:43.000000000 +0100 @@ -137,7 +137,7 @@ /** * \return true if the property \p propertyName can be changed else false is returned. */ - bool canPut(KJS::ExecState *exec, const KJS::Identifier &propertyName) const; + bool canPut(KJS::ExecState *exec, const KJS::Identifier &propertyName) const Q_DECL_OVERRIDE; /** * Called to ask if we have a callback for the named property. @@ -156,13 +156,13 @@ * \return a string-representation of the QObject. For example for a QWidget-instance that * has the QObject::objectName "mywidget" the string "mywidget (QWidget)" is returned. */ - KJS::UString toString(KJS::ExecState *exec) const; + KJS::UString toString(KJS::ExecState *exec) const Q_DECL_OVERRIDE; /** * \return the QObject's classname. For example for a QWidget-instance the string "QWidget" * is returned. */ - KJS::UString className() const; + KJS::UString className() const Q_DECL_OVERRIDE; /** * Add the QObject \p object to the internal QObjectCleanupHandler to watch the @@ -197,12 +197,12 @@ { public: SlotBinding(KJS::ExecState *exec, const QMetaMethod &memberName); - KJS::JSValue *callAsFunction(KJS::ExecState *exec, KJS::JSObject *self, const KJS::List &args); - bool implementsCall() const + KJS::JSValue *callAsFunction(KJS::ExecState *exec, KJS::JSObject *self, const KJS::List &args) Q_DECL_OVERRIDE; + bool implementsCall() const Q_DECL_OVERRIDE { return true; } - bool implementsConstruct() const + bool implementsConstruct() const Q_DECL_OVERRIDE { return false; } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kjsembed-5.7.0/src/kjsembed/size.h new/kjsembed-5.8.0/src/kjsembed/size.h --- old/kjsembed-5.7.0/src/kjsembed/size.h 2015-02-08 16:21:14.000000000 +0100 +++ new/kjsembed-5.8.0/src/kjsembed/size.h 2015-03-07 15:46:43.000000000 +0100 @@ -34,7 +34,7 @@ { public: SizeBinding(KJS::ExecState *exec, const QSize &value); - virtual const KJS::ClassInfo *classInfo() const + const KJS::ClassInfo *classInfo() const Q_DECL_OVERRIDE { return &info; } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kjsembed-5.7.0/src/kjsembed/slotproxy.h new/kjsembed-5.8.0/src/kjsembed/slotproxy.h --- old/kjsembed-5.7.0/src/kjsembed/slotproxy.h 2015-02-08 16:21:14.000000000 +0100 +++ new/kjsembed-5.8.0/src/kjsembed/slotproxy.h 2015-03-07 15:46:43.000000000 +0100 @@ -46,9 +46,9 @@ ~SlotProxy(); //Meta object stuff QMetaObject staticMetaObject; - const QMetaObject *metaObject() const; - void *qt_metacast(const char *_clname); - int qt_metacall(QMetaObject::Call _c, int _id, void **_a); + const QMetaObject *metaObject() const Q_DECL_OVERRIDE; + void *qt_metacast(const char *_clname) Q_DECL_OVERRIDE; + int qt_metacall(QMetaObject::Call _c, int _id, void **_a) Q_DECL_OVERRIDE; private: KJS::JSValue *callMethod(const QByteArray &methodName, void **_a); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kjsembed-5.7.0/src/kjsembed/static_binding.h new/kjsembed-5.8.0/src/kjsembed/static_binding.h --- old/kjsembed-5.7.0/src/kjsembed/static_binding.h 2015-02-08 16:21:14.000000000 +0100 +++ new/kjsembed-5.8.0/src/kjsembed/static_binding.h 2015-03-07 15:46:43.000000000 +0100 @@ -45,8 +45,8 @@ /** * Executes the callback for this method. */ - KJS::JSValue *callAsFunction(KJS::ExecState *exec, KJS::JSObject *self, const KJS::List &args); - bool implementsConstruct() const + KJS::JSValue *callAsFunction(KJS::ExecState *exec, KJS::JSObject *self, const KJS::List &args) Q_DECL_OVERRIDE; + bool implementsConstruct() const Q_DECL_OVERRIDE { return false; } @@ -84,7 +84,7 @@ */ void addStaticMethods(KJS::ExecState *exec, const Method *methods); - bool implementsConstruct() const + bool implementsConstruct() const Q_DECL_OVERRIDE { return true; } @@ -95,13 +95,13 @@ KJS::JSObject *construct(KJS::ExecState *exec, const KJS::List &args) Q_DECL_OVERRIDE; using KJS::JSObject::construct; - KJS::JSValue *callAsFunction(KJS::ExecState *exec, KJS::JSObject * /*self*/, const KJS::List &args) + KJS::JSValue *callAsFunction(KJS::ExecState *exec, KJS::JSObject * /*self*/, const KJS::List &args) Q_DECL_OVERRIDE { return construct(exec, args); } void setDefaultValue(KJS::JSValue *value); - KJS::JSValue *defaultValue(KJS::ExecState *exec, KJS::JSType hint) const; + KJS::JSValue *defaultValue(KJS::ExecState *exec, KJS::JSType hint) const Q_DECL_OVERRIDE; /** * Add the constructor to an object. This is usually the global scope. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kjsembed-5.7.0/src/kjsembed/url.h new/kjsembed-5.8.0/src/kjsembed/url.h --- old/kjsembed-5.7.0/src/kjsembed/url.h 2015-02-08 16:21:14.000000000 +0100 +++ new/kjsembed-5.8.0/src/kjsembed/url.h 2015-03-07 15:46:43.000000000 +0100 @@ -35,7 +35,7 @@ { public: UrlBinding(KJS::ExecState *exec, const QUrl &value); - virtual const KJS::ClassInfo *classInfo() const + const KJS::ClassInfo *classInfo() const Q_DECL_OVERRIDE { return &info; } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kjsembed-5.7.0/src/kjsembed/value_binding.h new/kjsembed-5.8.0/src/kjsembed/value_binding.h --- old/kjsembed-5.7.0/src/kjsembed/value_binding.h 2015-02-08 16:21:14.000000000 +0100 +++ new/kjsembed-5.8.0/src/kjsembed/value_binding.h 2015-03-07 15:46:43.000000000 +0100 @@ -112,8 +112,8 @@ ValueBinding(KJS::ExecState *exec, const char *typeName); virtual ~ValueBinding(); - KJS::UString toString(KJS::ExecState *exec) const; - KJS::UString className() const + KJS::UString toString(KJS::ExecState *exec) const Q_DECL_OVERRIDE; + KJS::UString className() const Q_DECL_OVERRIDE { return m_name; } @@ -155,7 +155,7 @@ static const KJS::ClassInfo info; private: - virtual const KJS::ClassInfo *classInfo() const + const KJS::ClassInfo *classInfo() const Q_DECL_OVERRIDE { return &info; } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kjsembed-5.7.0/src/kjsembed/variant_binding.h new/kjsembed-5.8.0/src/kjsembed/variant_binding.h --- old/kjsembed-5.7.0/src/kjsembed/variant_binding.h 2015-02-08 16:21:14.000000000 +0100 +++ new/kjsembed-5.8.0/src/kjsembed/variant_binding.h 2015-03-07 15:46:43.000000000 +0100 @@ -94,8 +94,8 @@ void *pointer(); - KJS::UString toString(KJS::ExecState *) const; - KJS::UString className() const; + KJS::UString toString(KJS::ExecState *) const Q_DECL_OVERRIDE; + KJS::UString className() const Q_DECL_OVERRIDE; /** * Return the wrapped QVariant @@ -124,7 +124,7 @@ static const KJS::ClassInfo info; private: - virtual const KJS::ClassInfo *classInfo() const + const KJS::ClassInfo *classInfo() const Q_DECL_OVERRIDE { return &info; } -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
