repository_infos: Enable automatic updates on the main Haiku repostiory.
[haiku.git] / src / apps / pairs / PairsButton.cpp
blobf202bc1e99feba19f5792e8aaa346275acf0ddf6
1 /*
2 * Copyright 2008 Ralf Schülke, ralf.schuelke@googlemail.com.
3 * Copyright 2014 Haiku, Inc. All rights reserved.
5 * Distributed under the terms of the MIT License.
7 * Authors:
8 * Ralf Schülke, ralf.schuelke@googlemail.com
9 * John Scipione, jscipione@gmail.com
13 #include "PairsButton.h"
16 // #pragma mark - PairsButton
19 PairsButton::PairsButton(int32 x, int32 y, int32 size, BMessage* message)
21 BButton(BRect(x, y, x + size, y + size), "pairs button", "?", message)
23 SetFontSize(size - 15);
27 PairsButton::~PairsButton()