mirror of
https://github.com/debauchee/barrier.git
synced 2026-02-13 15:15:21 +08:00
all use format() the same way. also changed format() to actually do formatting. however, it doesn't try looking up formatting strings by id, it just uses the fallback format string.
12 lines
170 B
C++
12 lines
170 B
C++
#include "XScreen.h"
|
|
|
|
//
|
|
// XScreenOpenFailure
|
|
//
|
|
|
|
CString
|
|
XScreenOpenFailure::getWhat() const throw()
|
|
{
|
|
return format("XScreenOpenFailure", "unable to open screen");
|
|
}
|