comparison dwtx/jface/text/contentassist/AdditionalInfoController.d @ 139:93a6ec48fd28

Regexp throws removal in interfaces
author Frank Benoit <benoit@tionex.de>
date Sun, 24 Aug 2008 02:31:41 +0200
parents b6bad70d540a
children 26688fec6d23
comparison
equal deleted inserted replaced
138:b6bad70d540a 139:93a6ec48fd28
346 else 346 else
347 fNextWakeup= nextWakeup; 347 fNextWakeup= nextWakeup;
348 } 348 }
349 349
350 private bool isExt5(ICompletionProposal p) { 350 private bool isExt5(ICompletionProposal p) {
351 return p instanceof ICompletionProposalExtension5; 351 return cast(ICompletionProposalExtension5)p;
352 } 352 }
353 353
354 ICompletionProposal getCurrentProposal() { 354 ICompletionProposal getCurrentProposal() {
355 return fCurrentProposal; 355 return fCurrentProposal;
356 } 356 }