CodeEditorBarZoomingPath.diff

Zbigniew Rebacz, 11/18/2014 11:40 PM

Download (1.12 KB)

View differences:

CodeEditor/CodeEditor.h (kopia robocza)
188 188
	virtual void  Serialize(Stream& s);
189 189
	virtual void  MouseLeave();
190 190

  
191
	void         CheckEdited(bool e = true) { check_edited = e; }
192
	bool         GetCheckEdited()           { return check_edited; }
193

  
191
	void          CheckEdited(bool e = true) { check_edited = e; }
192
	bool          GetCheckEdited()           { return check_edited; }
193
	
194
	void          RefreshEditorBar()         { bar.Refresh(); }
195
	
194 196
protected:
195 197
	virtual void HighlightLine(int line, Vector<LineEdit::Highlight>& h, int pos);
196 198
	virtual void PreInsert(int pos, const WString& s);
ide/Setup.cpp (kopia robocza)
173 173
	while(editorfont.GetCy() == h && (d < 0 ? editorfont.GetCy() > 5 : editorfont.GetCy() < 40))
174 174
		editorfont.Height(q += d);
175 175
	editor.SetFont(editorfont);
176
	editor.RefreshEditorBar();
176 177
}
177 178

  
178 179
struct FormatDlg : TabDlg {