免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 4135 | 回复: 1
打印 上一主题 下一主题

[图形界面] Qtopia编译错误:error: ‘append’ was not declared in this scope [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2014-08-14 12:10 |只看该作者 |倒序浏览
今天编译Qtopia 2.2.0的时候,出现了这个错误:
/home/ftp-mxy/nfs/x86-qtopia/qtopia-2.2.0-FriendlyARM/qt2/include/qimage.h: In member function ‘int QImageTextKeyLang:perator<(const QImageTextKeyLang& const’:
/home/ftp-mxy/nfs/x86-qtopia/qtopia-2.2.0-FriendlyARM/qt2/include/qimage.h:58:45: warning: suggest parentheses around ‘&&’ within ‘||’ [-Wparentheses]
  { return key < other.key || key==other.key && lang < other.lang; }
                                             ^
In file included from widgets/qtextbrowser.cpp:46:0:
/home/ftp-mxy/nfs/x86-qtopia/qtopia-2.2.0-FriendlyARM/qt2/include/qvaluestack.h: In instantiation of ‘void QValueStack<T>::push(const T& [with T = QString]’:
widgets/qtextbrowser.cpp:238:21:   required from here
/home/ftp-mxy/nfs/x86-qtopia/qtopia-2.2.0-FriendlyARM/qt2/include/qvaluestack.h:52:40: error: ‘append’ was not declared in this scope, and no declarations were found by argument-dependent lookup at the point of instantiation [-fpermissive]
     void  push( const T& d ) { append(d); }
                                        ^
/home/ftp-mxy/nfs/x86-qtopia/qtopia-2.2.0-FriendlyARM/qt2/include/qvaluestack.h:52:40: note: declarations in dependent base ‘QValueList<QString>’ are not found by unqualified lookup
/home/ftp-mxy/nfs/x86-qtopia/qtopia-2.2.0-FriendlyARM/qt2/include/qvaluestack.h:52:40: note: use ‘this->append’ instead
make[1]: *** [tmp/release-shared-linux-g++/widgets/qtextbrowser.o] Error 1
make[1]: Leaving directory `/home/ftp-mxy/nfs/x86-qtopia/qtopia-2.2.0-FriendlyARM/qt2/src'
* ---------------------------------------------------------------------------
*
*               ERROR: Building Qtopia Tools has failed.
*
* Please investigate the problem by looking at the error messages in the
* make output.
* The Qtopia tools can be build using the separate buildQtopiaTools script
* which can be found in the qtopia/scripts directory of the package.
。。。。。。。。。。
。。。。。。。。。

----------------》后来我找到了其原文件:
32 **
     33 ** Contact info@trolltech.com if any conditions of this licensing are
     34 ** not clear to you.
     35 **
     36 **********************************************************************/
     37
     38 #ifndef QVALUESTACK_H
     39 #define QVALUESTACK_H
     40
     41 #ifndef QT_H
    42 #include "qvaluelist.h"
     43 #endif // QT_H
     44
     45
     46 template<class T>
     47 class Q_EXPORT QValueStack : public QValueList<T>
     48 {
     49 public:
     50     QValueStack() {}
     51    ~QValueStack() {}
     52     void  push( const T& d ) { append(d); }
     53     T pop()
     54     {
     55         T elem( this->last() );
     56         if ( !this->isEmpty() )
     57             this->remove( this->fromLast() );
     58         return elem;
     59     }
     60     T& top() { return this->last(); }
     61     const T& top() const { return this->last(); }
     62 };
     63
     64 #endif

以下是文件:/qtopia-2.2.0-FriendlyARM/qt2/include/qvaluelist.h


368     bool isEmpty() const { return ( sh->nodes == 0 ); }
    369
    370     Iterator insert( Iterator it, const T& x ) { detach(); return sh->insert( it, x ); }
    371
    372     Iterator append( const T& x ) { detach(); return sh->insert( end(), x ); }
    373     Iterator prepend( const T& x ) { detach(); return sh->insert( begin(), x ); }
    374
    375     Iterator remove( Iterator it ) { detach(); return sh->remove( it ); }
    376     void remove( const T& x ) { detach(); sh->remove( x ); }

论坛徽章:
1
2015元宵节徽章
日期:2015-03-06 15:53:22
2 [报告]
发表于 2015-05-02 14:56 |只看该作者
你想表达什么?找到这两个文件然后呢?找这两个文件谁不会找?怎么解决的问题怎么不说一下?
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP