Changeset 1264
- Timestamp:
- 1/23/2010 5:47:52 AM (8 weeks ago)
- Location:
- trunk/EveHQ.PosManager
- Files:
-
- 3 modified
-
Data Classes/POS.cs (modified) (1 diff)
-
EveHQ.PosManager.csproj (modified) (1 diff)
-
Forms/PoSManMainForm.cs (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/EveHQ.PosManager/Data Classes/POS.cs
r958 r1264 240 240 241 241 m = (Module)Modules[rowIndex]; 242 foreach (ReactionLink rl in ReactionLinks) 243 { 244 if (rl.InpID == m.ModuleID) 245 { 246 ReactionLinks.Remove(rl); 247 break; 248 } 249 } 242 243 if (m.MSRList.Count > 0) 244 ReactionLinks.Clear(); 245 250 246 Modules.RemoveAt(rowIndex); 251 247 } -
trunk/EveHQ.PosManager/EveHQ.PosManager.csproj
r855 r1264 19 19 <DebugType>full</DebugType> 20 20 <Optimize>false</Optimize> 21 <OutputPath>..\EveH q\bin\Debug\</OutputPath>21 <OutputPath>..\EveHQ\bin\Debug\</OutputPath> 22 22 <DefineConstants>DEBUG;TRACE</DefineConstants> 23 23 <ErrorReport>prompt</ErrorReport> -
trunk/EveHQ.PosManager/Forms/PoSManMainForm.cs
r1171 r1264 1625 1625 else 1626 1626 { 1627 if (ML.Modules.Count < 1) 1628 { 1629 // No modules found, attempt to retrieve them 1630 MessageBox.Show("Did not find any modules, Attempting to find them - this will take a bit, please wait.", "Modules Error", MessageBoxButtons.OK); 1631 ML.PopulateModuleListing(1); 1632 } 1633 1627 1634 foreach (Module m in ML.Modules) 1628 1635 {
