all repos — fluxbox @ 127ef423a00a5f83c0fc3f4c6943962a3a51a543

custom fork of the fluxbox windowmanager

removed unused variable
fluxgen fluxgen
commit

127ef423a00a5f83c0fc3f4c6943962a3a51a543

parent

a47b6927bb6161fd358c7f0c92e90f8350afc711

2 files changed, 3 insertions(+), 5 deletions(-)

jump to
M util/fbrun/FbRun.ccutil/fbrun/FbRun.cc

@@ -19,7 +19,7 @@ // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING

// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // DEALINGS IN THE SOFTWARE. -// $Id: FbRun.cc,v 1.5 2002/11/13 16:43:52 fluxgen Exp $ +// $Id: FbRun.cc,v 1.6 2002/11/13 16:44:42 fluxgen Exp $ #include "FbRun.hh"

@@ -42,8 +42,7 @@ m_display(BaseDisplay::getXDisplay()),

m_bevel(4), m_gc(DefaultGC(m_display, DefaultScreen(m_display))), m_end(false), -m_current_history_item(0), -m_drawstart_x(0) { +m_current_history_item(0) { createWindow(x, y, width + m_bevel, m_font.height()); }
M util/fbrun/FbRun.hhutil/fbrun/FbRun.hh

@@ -19,7 +19,7 @@ // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING

// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // DEALINGS IN THE SOFTWARE. -// $Id: FbRun.hh,v 1.4 2002/11/13 16:43:52 fluxgen Exp $ +// $Id: FbRun.hh,v 1.5 2002/11/13 16:44:42 fluxgen Exp $ #ifndef FBRUN_HH #define FBRUN_HH

@@ -82,7 +82,6 @@ bool m_end; ///< marks when this object is done

std::vector<std::string> m_history; ///< history list of commands size_t m_current_history_item; ///< holds current position in command history std::string m_history_file; ///< holds filename for command history file - int m_drawstart_x; ///< for scrolling if cursor is to far to the right }; #endif // FBRUN_HH