summaryrefslogtreecommitdiff
authoribotty <ibotty>2002-10-06 12:40:48 (UTC)
committer ibotty <ibotty>2002-10-06 12:40:48 (UTC)
commitfb0027ea0649aa5bf4c3880dc84df459425c0642 (patch) (side-by-side diff)
treed8fd30a024db5788ab5618557cd141f529a28ad2
parent13ed195192154a82fd07dde602f27d478007a27f (diff)
downloadopie-fb0027ea0649aa5bf4c3880dc84df459425c0642.zip
opie-fb0027ea0649aa5bf4c3880dc84df459425c0642.tar.gz
opie-fb0027ea0649aa5bf4c3880dc84df459425c0642.tar.bz2
made setImage virual
// setImage should be the only virtual public method. // feel free to flame... ;) added first protected var, more will follow
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/opie-console/widget_layer.h21
1 files changed, 15 insertions, 6 deletions
diff --git a/noncore/apps/opie-console/widget_layer.h b/noncore/apps/opie-console/widget_layer.h
index 5474c64..cf2a1e5 100644
--- a/noncore/apps/opie-console/widget_layer.h
+++ b/noncore/apps/opie-console/widget_layer.h
@@ -1,2 +1,2 @@
-/* -------------------------------------------------------------------------- */
+
/* */
@@ -13,3 +13,2 @@
-
class WidgetLayer : public QObject
@@ -31,3 +30,3 @@ public:
*/
- void setImage( const Character* const newimg, int lines, int colums );
+ virtual void setImage( const Character* const newimg, int lines, int colums );
@@ -41,3 +40,3 @@ public:
*/
- int lines() { return _lines; }
+ int lines() { return m_lines; }
@@ -46,3 +45,3 @@ public:
*/
- int columns() { return _columns }
+ int columns() { return m_columns }
@@ -118,4 +117,14 @@ slots:
-};
+// protected vars
+protected:
+
+ /**
+ * current Session
+ */
+ Session m_session;
+ /**
+ * other misc vars
+ */
+};