summaryrefslogtreecommitdiff
path: root/noncore/tools/calculator/calculatorimpl.h
Side-by-side diff
Diffstat (limited to 'noncore/tools/calculator/calculatorimpl.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/tools/calculator/calculatorimpl.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/noncore/tools/calculator/calculatorimpl.h b/noncore/tools/calculator/calculatorimpl.h
index bfb726f..f0180c9 100644
--- a/noncore/tools/calculator/calculatorimpl.h
+++ b/noncore/tools/calculator/calculatorimpl.h
@@ -103,33 +103,35 @@ private:
void execOp( Operation i );
double evalExpr( int op );
QLabel * memMark;
QString fake;
// useful values for conversion stuff
int current_mode, max_mode, conversion_mode_count, last_conversion;
// make adding new modes easier for ourselves
static const int pre_conv_modes_count = 1;
static const int post_conv_modes_count = 0;
// an array of pointers to the func buttons
static const int func_button_count = 12;
// this is an abomination
static const int changeable_func_button_count = 10;
QPushButton* func_buttons[func_button_count];
QButtonGroup bgr_function, bgr_digits, bgr_std, bgr_command;
QStringList faces, captions;
// an array of doubles holding the conversion ratios
double* entry_list;
+ double* preoffset_list;
+ double* postoffset_list;
QPixmap xtopowerofy;
QPixmap ythrootofx;
QPixmap oneoverx;
void display_pixmap_faces(void);
};
#endif