MCPcopy Create free account
hub / github.com/AutoHotkey/AutoHotkey / DefaultDialogTitle

Method DefaultDialogTitle

source/script2.cpp:4757–4765  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4755
4756
4757LPTSTR Script::DefaultDialogTitle()
4758{
4759 // If the script has set A_ScriptName, use that:
4760 if (mScriptName)
4761 return mScriptName;
4762 // If available, the script's filename seems a much better title than the program name
4763 // in case the user has more than one script running:
4764 return (mFileName && *mFileName) ? mFileName : T_AHK_NAME_VERSION;
4765}
4766
4767UserFunc* Script::CreateHotFunc()
4768{

Callers 4

__NewMethod · 0.80
MsgBoxFunction · 0.80
BIF_DECLFunction · 0.80
BIF_DECLFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected