Gentoo Archives: gentoo-commits

From: "Alex Alexander (wired)" <wired@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/qdevelop/files: qdevelop-0.28-qt-4.7_fix.patch
Date: Mon, 01 Nov 2010 13:34:45
Message-Id: 20101101133441.0D69820054@flycatcher.gentoo.org
1 wired 10/11/01 13:34:41
2
3 Added: qdevelop-0.28-qt-4.7_fix.patch
4 Log:
5 bumped to version 0.28, switched to cmake, added Qt-4.7 build fix, added plugins USE flag, removed old versions. bug #338489
6
7 (Portage version: 2.2.0_alpha3/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 dev-util/qdevelop/files/qdevelop-0.28-qt-4.7_fix.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/qdevelop/files/qdevelop-0.28-qt-4.7_fix.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/qdevelop/files/qdevelop-0.28-qt-4.7_fix.patch?rev=1.1&content-type=text/plain
14
15 Index: qdevelop-0.28-qt-4.7_fix.patch
16 ===================================================================
17 Description: Fix FTBFS with Qt 4.7.
18
19 --- qdevelop-0.28.orig/src/build.h
20 +++ qdevelop-0.28/src/build.h
21 @@ -56,7 +56,7 @@ private:
22 int m_warnings;
23 QString m_forceMode;
24 signals:
25 - void message(QString, QString=0);
26 + void message(QString, QString=QString());
27 protected slots:
28 void slotBuildMessages();
29 void slotStopBuild();
30 --- qdevelop-0.28.orig/src/textEdit.h
31 +++ qdevelop-0.28/src/textEdit.h
32 @@ -142,7 +142,7 @@ public:
33 void setMouseHidden( bool hidden );
34 public slots:
35 void gotoLine( int line, bool moveTop );
36 - void slotFind(Ui::FindWidget uiFind, Ui::ReplaceWidget uiReplace, QString ttf=0, QTextDocument::FindFlags options=0, bool fromButton=false);
37 + void slotFind(Ui::FindWidget uiFind, Ui::ReplaceWidget uiReplace, QString ttf=QString(), QTextDocument::FindFlags options=0, bool fromButton=false);
38 void slotIndent(bool indent=true);
39 void slotUnindent();
40 void comment(ActionComment action);