diff options
author | George Hazan <george.hazan@gmail.com> | 2014-08-11 15:17:20 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-08-11 15:17:20 +0000 |
commit | f1e6c9b63fc90e6fbbcfcef52912ad0fda768302 (patch) | |
tree | 0760375443d3e186253ed2367d54817fc6d91ea4 /plugins/Import/src/progress.cpp | |
parent | e54f5144d2be315ee14ea7ae42a2a38f53e1162a (diff) |
import: clearance
git-svn-id: http://svn.miranda-ng.org/main/trunk@10156 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Import/src/progress.cpp')
-rw-r--r-- | plugins/Import/src/progress.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/Import/src/progress.cpp b/plugins/Import/src/progress.cpp index 168cb0a14c..a6f8360636 100644 --- a/plugins/Import/src/progress.cpp +++ b/plugins/Import/src/progress.cpp @@ -24,9 +24,9 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #define PROGM_START (WM_USER+100)
-INT_PTR CALLBACK FinishedPageProc(HWND hdlg,UINT message,WPARAM wParam,LPARAM lParam);
+void MirandaImport(HWND);
-void (*DoImport)(HWND);
+INT_PTR CALLBACK FinishedPageProc(HWND hdlg,UINT message,WPARAM wParam,LPARAM lParam);
INT_PTR CALLBACK ProgressPageProc(HWND hdlg, UINT message, WPARAM wParam, LPARAM lParam)
{
@@ -52,7 +52,7 @@ INT_PTR CALLBACK ProgressPageProc(HWND hdlg, UINT message, WPARAM wParam, LPARAM break;
case PROGM_START:
- DoImport(hdlg);
+ MirandaImport(hdlg);
SendMessage(GetParent(hdlg), WIZM_ENABLEBUTTON, 1, 0);
SendMessage(GetParent(hdlg), WIZM_ENABLEBUTTON, 2, 0);
break;
|