ui: Fixed file out-of-date star disappearing when showing snippets after minimized state, AKA star bug
This commit is contained in:
@@ -24,6 +24,11 @@ TimePoint::TimePoint(std::string s)
|
||||
}
|
||||
}
|
||||
|
||||
bool TimePoint::isValid() const
|
||||
{
|
||||
return m_time != boost::posix_time::not_a_date_time;
|
||||
}
|
||||
|
||||
std::string TimePoint::toString() const
|
||||
{
|
||||
std::stringstream stream;
|
||||
|
||||
@@ -11,6 +11,8 @@ public:
|
||||
//TimePoint(time_t t);
|
||||
TimePoint(std::string s);
|
||||
|
||||
bool isValid() const;
|
||||
|
||||
std::string toString() const;
|
||||
|
||||
inline bool operator==(const TimePoint& rhs){ return m_time == rhs.m_time; }
|
||||
|
||||
Reference in New Issue
Block a user