Clone
ixen
committed
on 13 Nov 20
Changed modification tracker behavior to avoid lost modifications.
src/ictranslate/ICTranslateDlg.cpp (+18 -0)
  1 /***************************************************************************
  2 *   Copyright (C) 2001-2008 by J�zef Starosczyk                           *
  3 *   ixen@copyhandler.com                                                  *
  4 *                                                                         *
  5 *   This program is free software; you can redistribute it and/or modify  *
  6 *   it under the terms of the GNU Library General Public License          *
  7 *   (version 2) as published by the Free Software Foundation;             *
  8 *                                                                         *
  9 *   This program is distributed in the hope that it will be useful,       *
  10 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
  11 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
  12 *   GNU General Public License for more details.                          *
  13 *                                                                         *
  14 *   You should have received a copy of the GNU Library General Public     *
  15 *   License along with this program; if not, write to the                 *
  16 *   Free Software Foundation, Inc.,                                       *
  17 *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
  18 ***************************************************************************/
1 19 // ICTranslateDlg.cpp : implementation file
2 20 //
3 21
4 22 #include "stdafx.h"
5 23 #include "ictranslate.h"
6 24 #include "ICTranslateDlg.h"
7 25 #include <assert.h>
8 26 #include <set>
9 27 #include "../libicpf/exception.h"
10 28
11 29 #ifdef _DEBUG
12 30 #define new DEBUG_NEW
13 31 #endif
14 32
15 33 #define IMAGE_INVALID 0
16 34 #define IMAGE_NONEXISTENT 1
17 35 #define IMAGE_OVERFLUOUS 2
18 36 #define IMAGE_VALID 3
19 37 #define IMAGE_WARNING 4
20 38