Don't use a local copy of an (older) private qt3 include file, ok theo@

This commit is contained in:
wilfried 2002-04-11 08:15:39 +00:00
parent 1f4d7677ef
commit 790d214f3b
8 changed files with 88 additions and 1 deletions

View File

@ -1,4 +1,4 @@
# $OpenBSD: Makefile,v 1.1.1.1 2002/03/19 13:58:12 wilfried Exp $ # $OpenBSD: Makefile,v 1.2 2002/04/11 08:15:39 wilfried Exp $
COMMENT= "GUI client for MySQL" COMMENT= "GUI client for MySQL"
@ -38,6 +38,9 @@ CONFIGURE_ENV= QTDIR=${LOCALBASE} \
NO_REGRESS= Yes NO_REGRESS= Yes
post-patch:
@rm ${WRKSRC}/include/CSqlEditor/qrichtext_p.h
do-install: do-install:
${INSTALL_PROGRAM} ${WRKBUILD}/MyCC ${PREFIX}/bin ${INSTALL_PROGRAM} ${WRKBUILD}/MyCC ${PREFIX}/bin
${INSTALL_DATA_DIR} ${PREFIX}/share/MyCC/translations ${INSTALL_DATA_DIR} ${PREFIX}/share/MyCC/translations

View File

@ -0,0 +1,12 @@
$OpenBSD: patch-include_CSqlEditor_completion_h,v 1.1 2002/04/11 08:15:39 wilfried Exp $
--- include/CSqlEditor/completion.h.orig Fri Feb 22 00:28:42 2002
+++ include/CSqlEditor/completion.h Wed Apr 10 14:54:15 2002
@@ -24,7 +24,7 @@
#define COMPLETION_H
#include <qstring.h>
-#include "qrichtext_p.h"
+#include <private/qrichtext_p.h>
#include <qstringlist.h>
#include <qobject.h>
#include <qdict.h>

View File

@ -0,0 +1,12 @@
$OpenBSD: patch-include_CSqlEditor_editor_h,v 1.1 2002/04/11 08:15:39 wilfried Exp $
--- include/CSqlEditor/editor.h.orig Fri Feb 22 00:31:20 2002
+++ include/CSqlEditor/editor.h Wed Apr 10 14:54:12 2002
@@ -25,7 +25,7 @@
#include <qtextedit.h>
#include <qprinter.h>
-#include "qrichtext_p.h"
+#include <private/qrichtext_p.h>
#include <qpaintdevicemetrics.h>
#include <qprinter.h>
#include <qpaintdevice.h>

View File

@ -0,0 +1,12 @@
$OpenBSD: patch-include_CSqlEditor_paragdata_h,v 1.1 2002/04/11 08:15:39 wilfried Exp $
--- include/CSqlEditor/paragdata.h.orig Thu Feb 21 19:10:05 2002
+++ include/CSqlEditor/paragdata.h Wed Apr 10 14:54:22 2002
@@ -22,7 +22,7 @@
#define PARAGDATA_H
#include "parenmatcher.h"
-#include "qrichtext_p.h"
+#include <private/qrichtext_p.h>
struct ParagData : public QTextParagData
{

View File

@ -0,0 +1,12 @@
$OpenBSD: patch-include_CSqlEditor_syntaxhighliter_sql_h,v 1.1 2002/04/11 08:15:39 wilfried Exp $
--- include/CSqlEditor/syntaxhighliter_sql.h.orig Thu Feb 21 19:10:05 2002
+++ include/CSqlEditor/syntaxhighliter_sql.h Wed Apr 10 14:54:19 2002
@@ -21,7 +21,7 @@
#include <qdict.h>
#include <qstringlist.h>
-#include "qrichtext_p.h"
+#include <private/qrichtext_p.h>
#include "CConfig.h"
class CConfig;

View File

@ -0,0 +1,12 @@
$OpenBSD: patch-src_CSqlEditor_completion_cpp,v 1.1 2002/04/11 08:15:39 wilfried Exp $
--- src/CSqlEditor/completion.cpp.orig Thu Feb 21 23:41:51 2002
+++ src/CSqlEditor/completion.cpp Wed Apr 10 14:55:17 2002
@@ -25,7 +25,7 @@
#include "paragdata.h"
#include <qlistbox.h>
#include <qvbox.h>
-#include <qrichtext_p.h>
+#include <private/qrichtext_p.h>
#include <qapplication.h>
#include <qregexp.h>
#include <qsizegrip.h>

View File

@ -0,0 +1,12 @@
$OpenBSD: patch-src_CSqlEditor_editor_cpp,v 1.1 2002/04/11 08:15:39 wilfried Exp $
--- src/CSqlEditor/editor.cpp.orig Fri Feb 22 07:57:51 2002
+++ src/CSqlEditor/editor.cpp Wed Apr 10 14:55:12 2002
@@ -26,7 +26,7 @@
#include "Config.h"
#include <qfile.h>
#include <qprinter.h>
-#include "qrichtext_p.h"
+#include <private/qrichtext_p.h>
#include <qapplication.h>
#include <qpopupmenu.h>
#include <qaccel.h>

View File

@ -0,0 +1,12 @@
$OpenBSD: patch-src_CSqlEditor_parenmatcher_cpp,v 1.1 2002/04/11 08:15:39 wilfried Exp $
--- src/CSqlEditor/parenmatcher.cpp.orig Fri Feb 22 00:30:27 2002
+++ src/CSqlEditor/parenmatcher.cpp Wed Apr 10 14:55:03 2002
@@ -22,7 +22,7 @@
#include "paragdata.h"
#include "qtextedit.h"
-#include "qrichtext_p.h"
+#include <private/qrichtext_p.h>
#include <qapplication.h>
ParenMatcher::ParenMatcher()