Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Added selector 88 to GetInfo - returns window title from SetTitle
  • Loading branch information
nickgammon committed Feb 5, 2013
1 parent 5f3b03b commit 444d87f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripting/methods/methods_info.cpp
Expand Up @@ -184,7 +184,7 @@ tInfoTypeMapping InfoTypes [] =
{ 85, "State files path (directory)" },
{ 86, "Word under mouse on mouse menu click" },
{ 87, "Last command sent" },

{ 88, "Window title last set by SetTitle" },



Expand Down Expand Up @@ -535,6 +535,7 @@ VARIANT CMUSHclientDoc::GetInfo(long InfoType)
case 85: SetUpVariantString (vaResult, App.m_strDefaultStateFilesDirectory); break;
case 86: SetUpVariantString (vaResult, m_strWordUnderMenu); break;
case 87: SetUpVariantString (vaResult, m_strLastCommandSent); break;
case 88: SetUpVariantString (vaResult, m_strWindowTitle); break;

case 101: SetUpVariantBool (vaResult, m_bNoEcho); break;
case 102: SetUpVariantBool (vaResult, m_bDebugIncomingPackets); break;
Expand Down

0 comments on commit 444d87f

Please sign in to comment.