summaryrefslogtreecommitdiff
path: root/noncore
authorleseb <leseb>2002-07-13 13:33:37 (UTC)
committer leseb <leseb>2002-07-13 13:33:37 (UTC)
commit4b524c21f63087d44b0a908bd791ec6e470c7238 (patch) (unidiff)
treeb9b054ca600090f922d38b253e99e13890ef4672 /noncore
parent21e275324433ac4902c89997b53cbb042bdca9ab (diff)
downloadopie-4b524c21f63087d44b0a908bd791ec6e470c7238.zip
opie-4b524c21f63087d44b0a908bd791ec6e470c7238.tar.gz
opie-4b524c21f63087d44b0a908bd791ec6e470c7238.tar.bz2
Back to a smaller undo/redo number
Diffstat (limited to 'noncore') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/graphics/drawpad/page.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/noncore/graphics/drawpad/page.cpp b/noncore/graphics/drawpad/page.cpp
index fbf3d01..a081680 100644
--- a/noncore/graphics/drawpad/page.cpp
+++ b/noncore/graphics/drawpad/page.cpp
@@ -4,25 +4,25 @@
4 * * 4 * *
5 * (C) 2002 by S. Prud'homme <prudhomme@laposte.net> * 5 * (C) 2002 by S. Prud'homme <prudhomme@laposte.net> *
6 * * 6 * *
7 * This program is free software; you can redistribute it and/or modify * 7 * This program is free software; you can redistribute it and/or modify *
8 * it under the terms of the GNU General Public License as published by * 8 * it under the terms of the GNU General Public License as published by *
9 * the Free Software Foundation; either version 2 of the License, or * 9 * the Free Software Foundation; either version 2 of the License, or *
10 * (at your option) any later version. * 10 * (at your option) any later version. *
11 * * 11 * *
12 ***************************************************************************/ 12 ***************************************************************************/
13 13
14#include "page.h" 14#include "page.h"
15 15
16const int PAGE_BACKUPS = 99; 16const int PAGE_BACKUPS = 9;
17 17
18Page::Page() 18Page::Page()
19{ 19{
20 m_title = ""; 20 m_title = "";
21 m_lastModified = QDateTime::currentDateTime(); 21 m_lastModified = QDateTime::currentDateTime();
22 m_pPixmap = new QPixmap(); 22 m_pPixmap = new QPixmap();
23 23
24 m_backHistory.setAutoDelete(true); 24 m_backHistory.setAutoDelete(true);
25 m_forwardHistory.setAutoDelete(true); 25 m_forwardHistory.setAutoDelete(true);
26} 26}
27 27
28Page::Page(QString title, int w, int h) 28Page::Page(QString title, int w, int h)