Skip to content

Commit c2dc341

Browse files
committed
unused functions
1 parent 9886820 commit c2dc341

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/Configuration.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020

2121
namespace {
2222

23+
#if 0
2324
QDataStream &operator<<(QDataStream &s, const IBreakpoint::TypeId &id) {
2425
return s << static_cast<int>(id);
2526
}
@@ -30,6 +31,7 @@ QDataStream &operator>>(QDataStream &s, IBreakpoint::TypeId &id) {
3031
id = static_cast<IBreakpoint::TypeId>(value);
3132
return s;
3233
}
34+
#endif
3335

3436
//------------------------------------------------------------------------------
3537
// Name: getDefaultPluginPath
@@ -86,7 +88,7 @@ void Configuration::readSettings() {
8688
#ifdef Q_OS_WIN32
8789
const QString default_font = QFont("Courier New", 8).toString();
8890
#elif defined(Q_OS_MACX)
89-
const QString default_font = QFont("Courier New", 10).toString();
91+
const QString default_font = QFont("Courier New", 10).toString();
9092
#else
9193
const QString default_font = QFont("Monospace", 8).toString();
9294
#endif

0 commit comments

Comments
 (0)