Subversion Repositories spk

Rev

Rev 2 | Rev 86 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2 Rev 50
Line 149... Line 149...
149
		{
149
		{
150
			 CBaseFile *pm = m_pPackages->FindScriptByAuthor("PluginManager");
150
			 CBaseFile *pm = m_pPackages->FindScriptByAuthor("PluginManager");
151
			 System::String ^scriptVer = "None";
151
			 System::String ^scriptVer = "None";
152
			 if ( pm )
152
			 if ( pm )
153
			 {
153
			 {
154
				 scriptVer = SystemStringFromCyString(pm->GetVersion());
154
				 scriptVer = _US(pm->version());
155
				 if ( !pm->GetCreationDate().Empty() )
155
				 if ( !pm->creationDate().empty() )
156
					scriptVer += " (" + SystemStringFromCyString(pm->GetCreationDate()) + ")";
156
					scriptVer += " (" + _US(pm->creationDate()) + ")";
157
			 }
157
			 }
158
			About ^about = gcnew About(GetVersionString(), PMLDATE, scriptVer, m_bAdvanced);
158
			About ^about = gcnew About(GetVersionString(), PMLDATE, scriptVer, m_bAdvanced);
159
			about->ShowDialog(this);
159
			about->ShowDialog(this);
160
		}
160
		}
161
 
161