Alexandre Julliard : oledlg: Make a string static.
Module: wine Branch: refs/heads/master Commit: 7d5da234633031aa03f27d46f35e595bfcf6867c URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=7d5da234633031aa03f27d46... Author: Alexandre Julliard <julliard(a)winehq.org> Date: Wed Aug 2 13:32:34 2006 +0200 oledlg: Make a string static. --- dlls/oledlg/insobjdlg.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/oledlg/insobjdlg.c b/dlls/oledlg/insobjdlg.c index e13917c..8928b35 100644 --- a/dlls/oledlg/insobjdlg.c +++ b/dlls/oledlg/insobjdlg.c @@ -73,7 +73,7 @@ static void UIINSERTOBJECTDLG_AddControl typedef HRESULT (*DLLREGISTER) (void); extern HINSTANCE OLEDLG_hInstance; -const char *OleUIInsertObjectInfoStr = "OleUIInsertObjectInfoStr"; +static const char OleUIInsertObjectInfoStr[] = "OleUIInsertObjectInfoStr"; /*********************************************************************** * OleUIInsertObjectA (OLEDLG.3)
participants (1)
-
Alexandre Julliard