Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit bc48ce68 authored by Andreas Huber's avatar Andreas Huber
Browse files

Instead of hardcoding OMX component names in our code, support

a config file instead.

Change-Id: I5835903ab9f1c4a22ccc605ca99ed966767adf57
parent 7be71a88
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -186,8 +186,8 @@ public:
     inline const_iterator end() const   { return array() + size(); }
     inline void reserve(size_t n) { setCapacity(n); }
     inline bool empty() const{ return isEmpty(); }
     inline void push_back(const TYPE& item)  { insertAt(item, size()); }
     inline void push_front(const TYPE& item) { insertAt(item, 0); }
     inline void push_back(const TYPE& item)  { insertAt(item, size(), 1); }
     inline void push_front(const TYPE& item) { insertAt(item, 0, 1); }
     inline iterator erase(iterator pos) {
         return begin() + removeItemsAt(pos-array());
     }