| 1996 | } |
| 1997 | |
| 1998 | void MainWindow::focusIn() |
| 1999 | { |
| 2000 | qInfo(Q_FUNC_INFO); |
| 2001 | |
| 2002 | ScintillaNext *editor = currentEditor(); |
| 2003 | |
| 2004 | if (editor) { |
| 2005 | if (checkFileForModification(currentEditor())) { |
| 2006 | updateGui(currentEditor()); |
| 2007 | } |
| 2008 | } |
| 2009 | } |
| 2010 | |
| 2011 | void MainWindow::addEditor(ScintillaNext *editor) |
| 2012 | { |