summaryrefslogtreecommitdiff
path: root/math/digitizer/files/patch-src_helpwindow.cpp
diff options
context:
space:
mode:
authorRene Ladan <rene@FreeBSD.org>2013-07-26 19:19:20 +0000
committerRene Ladan <rene@FreeBSD.org>2013-07-26 19:19:20 +0000
commit66fee909266a1dedf3dfc1f03bb0841380d78805 (patch)
tree4c98d494bc4532b5dd5b19f4e47bcb3babf104c2 /math/digitizer/files/patch-src_helpwindow.cpp
parentRemove support for Qt3/kde in preparation for full Qt3/kde3 removal (diff)
KDE3 and QT3 expired on 2013-07-01, remove these ports.
Unfortunately, this also affects some ports using QT3 as a GUI toolkit. Changes to infrastructure files: - bsd.kde.mk : obsolete, remove - bsd.qt.mk : note that a CONFLICTS_BUILD line can probably go after a while - CHANGES : document the removals from bsd.port.mk - KNOBS : remove KDE and QT (KDE4 and QT4 should be used instead) - MOVED : add the removed ports PR: ports/180745 Submitted by: rene Approved by: portmgr (bapt) Exp-run by: bapt
Notes
Notes: svn path=/head/; revision=323748
Diffstat (limited to 'math/digitizer/files/patch-src_helpwindow.cpp')
-rw-r--r--math/digitizer/files/patch-src_helpwindow.cpp43
1 files changed, 0 insertions, 43 deletions
diff --git a/math/digitizer/files/patch-src_helpwindow.cpp b/math/digitizer/files/patch-src_helpwindow.cpp
deleted file mode 100644
index 0e28d2f41034..000000000000
--- a/math/digitizer/files/patch-src_helpwindow.cpp
+++ /dev/null
@@ -1,43 +0,0 @@
---- ./src/helpwindow.cpp.orig Sun Oct 8 08:41:49 2006
-+++ ./src/helpwindow.cpp Sun Jan 7 22:03:39 2007
-@@ -172,7 +172,8 @@
- for ( ; it != mHistory.end(); ++it )
- history.append( *it );
-
-- QFile f( QDir::currentDirPath() + "/.history" );
-+ // FreeBSD: avoid conflict with editline
-+ QFile f( QDir::homeDirPath () + "/.history-digitizer" );
- f.open( IO_WriteOnly );
- QDataStream s( &f );
- s << history;
-@@ -183,7 +184,7 @@
- for ( ; it2 != mBookmarks.end(); ++it2 )
- bookmarks.append( *it2 );
-
-- QFile f2( QDir::currentDirPath() + "/.bookmarks" );
-+ QFile f2( QDir::homeDirPath () + "/.bookmarks-digitizer" );
- f2.open( IO_WriteOnly );
- QDataStream s2( &f2 );
- s2 << bookmarks;
-@@ -295,8 +296,8 @@
-
- void HelpWindow::readHistory()
- {
-- if ( QFile::exists( QDir::currentDirPath() + "/.history" ) ) {
-- QFile f( QDir::currentDirPath() + "/.history" );
-+ if ( QFile::exists( QDir::homeDirPath () + "/.history-digitizer" ) ) {
-+ QFile f( QDir::homeDirPath () + "/.history-digitizer" );
- f.open( IO_ReadOnly );
- QDataStream s( &f );
- s >> history;
-@@ -308,8 +309,8 @@
-
- void HelpWindow::readBookmarks()
- {
-- if ( QFile::exists( QDir::currentDirPath() + "/.bookmarks" ) ) {
-- QFile f( QDir::currentDirPath() + "/.bookmarks" );
-+ if ( QFile::exists( QDir::homeDirPath () + "/.bookmarks-digitizer" ) ) {
-+ QFile f( QDir::homeDirPath () + "/.bookmarks-digitizer" );
- f.open( IO_ReadOnly );
- QDataStream s( &f );
- s >> bookmarks;