mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-07-11 22:03:01 -06:00
theide: fixed Bug #31: TheIDE menu losing focus when building
git-svn-id: svn://ultimatepp.org/upp/trunk@3440 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
parent
0aa2ca90c7
commit
d4e43f93ca
3 changed files with 6 additions and 6 deletions
|
|
@ -70,11 +70,11 @@ const ConvertInt& StdConvertInt();
|
|||
const ConvertInt& StdConvertIntNotNull();
|
||||
|
||||
struct ConvertInt64 : public ConvertInt {
|
||||
ConvertInt& MinMax(int64 _min, int64 _max) { minval = _min; maxval = _max; return *this; }
|
||||
ConvertInt& Min(int64 _min) { minval = _min; return *this; }
|
||||
ConvertInt& Max(int64 _max) { maxval = _max; return *this; }
|
||||
int64 GetMin() const { return minval; }
|
||||
int64 GetMax() const { return maxval; }
|
||||
ConvertInt64& MinMax(int64 _min, int64 _max) { minval = _min; maxval = _max; return *this; }
|
||||
ConvertInt64& Min(int64 _min) { minval = _min; return *this; }
|
||||
ConvertInt64& Max(int64 _max) { maxval = _max; return *this; }
|
||||
int64 GetMin() const { return minval; }
|
||||
int64 GetMax() const { return maxval; }
|
||||
|
||||
#ifdef flagSO
|
||||
ConvertInt64(int64 minval = -INT64_MAX, int64 maxval = INT64_MAX, bool notnull = false);
|
||||
|
|
|
|||
|
|
@ -66,6 +66,7 @@ void Ide::EndBuilding(bool ok)
|
|||
BeepMuteInformation();
|
||||
else
|
||||
BeepMuteExclamation();
|
||||
ShowConsole();
|
||||
}
|
||||
|
||||
void Ide::DoBuild()
|
||||
|
|
|
|||
|
|
@ -221,7 +221,6 @@ void Ide::Serialize(Stream& s) {
|
|||
|
||||
void Ide::PutConsole(const char *s)
|
||||
{
|
||||
ShowConsole();
|
||||
console << s << "\n";
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue