Rename some methods and variables in DiffEditor

Change-Id: Ic6db2882c9468b9451a785e4657e4255b40fca4c
Reviewed-by: Orgad Shaneh <orgads@gmail.com>
This commit is contained in:
jkobus
2014-07-07 10:23:11 +02:00
committed by Jarek Kobus
parent 91e4271069
commit 5ebd59d12b
8 changed files with 44 additions and 44 deletions

View File

@@ -137,12 +137,12 @@ void DiffEditorController::setReloader(DiffEditorReloader *reloader)
return; // nothing changes
if (m_reloader)
m_reloader->setDiffEditorController(0);
m_reloader->setController(0);
m_reloader = reloader;
if (m_reloader)
m_reloader->setDiffEditorController(this);
m_reloader->setController(this);
reloaderChanged(m_reloader);
}