Commit 932cc267 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

ieframe: Moved dialog resources to ieframe.

parent a2653310
......@@ -9,6 +9,24 @@ C_SRCS = \
urlhist.c
RC_SRCS = \
De.rc \
En.rc \
Es.rc \
Fr.rc \
He.rc \
It.rc \
Ja.rc \
Ko.rc \
Lt.rc \
Nl.rc \
Pl.rc \
Pt.rc \
Ro.rc \
Ru.rc \
Si.rc \
Sr.rc \
Sv.rc \
Uk.rc \
ieframe.rc
@MAKE_DLL_RULES@
/*
* Resource identifiers for ieframe.dll
*
* Copyright 2010 Alexander N. Sørnes <alex@thehandofagony.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include <windef.h>
#include <winuser.h>
#define IDD_BROWSE_OPEN 1001
#define IDC_BROWSE_OPEN_URL 1002
......@@ -23,24 +23,6 @@ C_SRCS = \
webbrowser.c
RC_SRCS = \
De.rc \
En.rc \
Es.rc \
Fr.rc \
He.rc \
It.rc \
Ja.rc \
Ko.rc \
Lt.rc \
Nl.rc \
Pl.rc \
Pt.rc \
Ro.rc \
Ru.rc \
Si.rc \
Sr.rc \
Sv.rc \
Uk.rc \
shdocvw.rc
PO_SRCS = shdocvw.rc
......
......@@ -566,7 +566,7 @@ static LRESULT iewnd_OnCommand(InternetExplorer *This, HWND hwnd, UINT msg, WPAR
switch(LOWORD(wparam))
{
case ID_BROWSE_OPEN:
DialogBoxParamW(shdocvw_hinstance, MAKEINTRESOURCEW(IDD_BROWSE_OPEN), hwnd, ie_dialog_open_proc, (LPARAM)This);
DialogBoxParamW(get_ieframe_instance(), MAKEINTRESOURCEW(IDD_BROWSE_OPEN), hwnd, ie_dialog_open_proc, (LPARAM)This);
break;
case ID_BROWSE_PRINT:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment